Add support for INHERITS option in CREATE TABLE statement (#1806)

This commit is contained in:
Luca Cappelletti 2025-04-12 18:03:43 +02:00 committed by GitHub
parent bbc80d7537
commit 896c088153
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 71 additions and 2 deletions

View file

@ -1594,6 +1594,7 @@ fn parse_create_table_with_valid_options() {
cluster_by: None,
clustered_by: None,
options: None,
inherits: None,
strict: false,
iceberg: false,
copy_grants: false,
@ -1764,6 +1765,7 @@ fn parse_create_table_with_identity_column() {
cluster_by: None,
clustered_by: None,
options: None,
inherits: None,
strict: false,
copy_grants: false,
enable_schema_evolution: None,