app.cash.sqldelight.dialects.hsql.grammar.mixins.ColumnDefMixin.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hsql-dialect Show documentation
Show all versions of hsql-dialect Show documentation
The HSQL Dialect for SQLDelight
package app.cash.sqldelight.dialects.hsql.grammar.mixins
import com.alecstrong.sql.psi.core.psi.impl.SqlColumnDefImpl
import com.intellij.lang.ASTNode
internal class ColumnDefMixin(node: ASTNode) : SqlColumnDefImpl(node) {
override fun hasDefaultValue(): Boolean {
return columnConstraintList.any { it.node.text == "AUTO_INCREMENT" } || super.hasDefaultValue()
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy