mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-24 16:04:04 +00:00
Add support for INHERITS
option in CREATE TABLE
statement (#1806)
This commit is contained in:
parent
bbc80d7537
commit
896c088153
8 changed files with 71 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue