diff --git a/CHANGELOG.md b/CHANGELOG.md index 5403ff48..8e9e85b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Unreleased -- Nothing yet! +- Change visibility on CreateTableElementType https://github.com/sqldelight/sql-psi/pull/691 ## [0.6.0] - 2025-08-08 diff --git a/core/src/main/kotlin/com/alecstrong/sql/psi/core/psi/mixins/CreateTableMixin.kt b/core/src/main/kotlin/com/alecstrong/sql/psi/core/psi/mixins/CreateTableMixin.kt index 4d4c8cc2..221f2576 100644 --- a/core/src/main/kotlin/com/alecstrong/sql/psi/core/psi/mixins/CreateTableMixin.kt +++ b/core/src/main/kotlin/com/alecstrong/sql/psi/core/psi/mixins/CreateTableMixin.kt @@ -264,7 +264,7 @@ internal abstract class CreateTableMixin private constructor( } } -internal class CreateTableElementType( +open class CreateTableElementType( name: String, ) : SqlSchemaContributorElementType(name, TableElement::class.java) { override fun nameType() = SqlTypes.TABLE_NAME