mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-31 03:07:20 +00:00
Snowflake: Add support for CREATE DYNAMIC TABLE
(#1960)
This commit is contained in:
parent
3b5242821e
commit
4b8797e8f3
11 changed files with 342 additions and 96 deletions
|
@ -1848,6 +1848,7 @@ fn parse_create_table_with_valid_options() {
|
|||
temporary: false,
|
||||
external: false,
|
||||
global: None,
|
||||
dynamic: false,
|
||||
if_not_exists: false,
|
||||
transient: false,
|
||||
volatile: false,
|
||||
|
@ -1924,7 +1925,13 @@ fn parse_create_table_with_valid_options() {
|
|||
catalog: None,
|
||||
catalog_sync: None,
|
||||
storage_serialization_policy: None,
|
||||
table_options: CreateTableOptions::With(with_options)
|
||||
table_options: CreateTableOptions::With(with_options),
|
||||
target_lag: None,
|
||||
warehouse: None,
|
||||
version: None,
|
||||
refresh_mode: None,
|
||||
initialize: None,
|
||||
require_user: false,
|
||||
})
|
||||
);
|
||||
}
|
||||
|
@ -2031,6 +2038,7 @@ fn parse_create_table_with_identity_column() {
|
|||
temporary: false,
|
||||
external: false,
|
||||
global: None,
|
||||
dynamic: false,
|
||||
if_not_exists: false,
|
||||
transient: false,
|
||||
volatile: false,
|
||||
|
@ -2088,7 +2096,13 @@ fn parse_create_table_with_identity_column() {
|
|||
catalog: None,
|
||||
catalog_sync: None,
|
||||
storage_serialization_policy: None,
|
||||
table_options: CreateTableOptions::None
|
||||
table_options: CreateTableOptions::None,
|
||||
target_lag: None,
|
||||
warehouse: None,
|
||||
version: None,
|
||||
refresh_mode: None,
|
||||
initialize: None,
|
||||
require_user: false,
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue