Open vgapeyev opened 1 year ago
From a perspective of SQL conformance:
Currently, in the kotlin-implementation. DDL does not support namespace in table name, meaning we can do only CREATE TABLE myTable ....
but not CREATE TABLE myCatalog.mySchema.myTable
.
We should support variable length namespace when defining DDL, but the definition of what SQL called catalog
, schema
, should be its own project.
Currently, the kotlin implementation support parsing of column constraint (with constraint name):
Potentially, we need to explore the possibility of adding:
A few of the aspects to consider, specific to PartiQL (compared to SQL):
[This list is expected to grow as we understand the matter.]