File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -1134,7 +1134,7 @@ clustering_action
11341134 ;
11351135
11361136table_column_action
1137- : ADD COLUMN ? column_name data_type
1137+ : ADD COLUMN ? if_not_exists? column_name data_type
11381138 default_value?
11391139 inline_constraint?
11401140 ( WITH ? MASKING POLICY id_ ( USING ' (' column_name COMMA column_list ' )' )? )?
@@ -1154,7 +1154,7 @@ table_column_action
11541154 | alter_modify COLUMN column_name UNSET MASKING POLICY
11551155 | alter_modify column_set_tags (COMMA column_set_tags)*
11561156 | alter_modify column_unset_tags (COMMA column_unset_tags)*
1157- | DROP COLUMN ? column_list
1157+ | DROP COLUMN ? if_exists? column_list
11581158 ;
11591159
11601160inline_constraint
@@ -2490,7 +2490,7 @@ create_tag
24902490 ;
24912491
24922492tag_allowed_values
2493- : ALLOWED_VALUES tag_value ( COMMA tag_value)*
2493+ : ALLOWED_VALUES string_list
24942494 ;
24952495
24962496session_parameter
Original file line number Diff line number Diff line change 1+ create table t (i int );
2+
3+ alter table t add column if not exists j int ;
4+ alter table t drop column if exists i;
Original file line number Diff line number Diff line change 1+ create tag sch .tag1 allowed_values ' a' , ' b' ;
2+ create tag db .sch .tag2 allowed_values ' a' , ' b' comment = ' ' ;
3+ create tag tag3 comment = ' ' ;
You can’t perform that action at this time.
0 commit comments