Snowflake: Add support for CREATE DYNAMIC TABLE (#1960)

This commit is contained in:
Yoav Cohen 2025-08-20 12:08:22 +03:00 committed by GitHub
parent 3b5242821e
commit 4b8797e8f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 342 additions and 96 deletions

View file

@ -5932,6 +5932,7 @@ fn parse_trigger_related_functions() {
temporary: false,
external: false,
global: None,
dynamic: false,
if_not_exists: false,
transient: false,
volatile: false,
@ -5997,7 +5998,13 @@ fn parse_trigger_related_functions() {
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,
}
);