override fun equals()

in exposed-core/src/main/kotlin/org/jetbrains/exposed/v1/core/ColumnType.kt [834:845]


    override fun equals(other: Any?): Boolean {
        if (this === other) return true
        if (javaClass != other?.javaClass) return false
        if (!super.equals(other)) return false

        other as CharColumnType

        if (colLength != other.colLength) return false

        if (collate != other.collate) return false
        return true
    }