override fun equals()

in exposed-core/src/main/kotlin/org/jetbrains/exposed/v1/core/Column.kt [210:218]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (other !is Column<*>) return false

        if (table != other.table) return false
        if (name != other.name) return false

        return true
    }