@@ -236,6 +236,7 @@ delete_stmt ::=
236236drop_stmt ::=
237237 drop_ddl_stmt
238238 | drop_role_stmt
239+ | drop_provisioned_roles_stmt
239240 | drop_schedule_stmt
240241 | drop_external_connection_stmt
241242
@@ -754,6 +755,9 @@ drop_role_stmt ::=
754755 'DROP' role_or_group_or_user role_spec_list
755756 | 'DROP' role_or_group_or_user 'IF' 'EXISTS' role_spec_list
756757
758+ drop_provisioned_roles_stmt ::=
759+ 'DROP' 'PROVISIONED' 'ROLES' opt_with_drop_provisioned_roles_options opt_limit_clause
760+
757761drop_schedule_stmt ::=
758762 'DROP' 'SCHEDULE' a_expr
759763 | 'DROP' 'SCHEDULES' select_stmt
@@ -1470,6 +1474,7 @@ unreserved_keyword ::=
14701474 | 'PROCEDURAL'
14711475 | 'PROCEDURE'
14721476 | 'PROCEDURES'
1477+ | 'PROVISIONED'
14731478 | 'PROVISIONSRC'
14741479 | 'PUBLIC'
14751480 | 'PUBLICATION'
@@ -2139,6 +2144,10 @@ drop_policy_stmt ::=
21392144 'DROP' 'POLICY' name 'ON' table_name opt_drop_behavior
21402145 | 'DROP' 'POLICY' 'IF' 'EXISTS' name 'ON' table_name opt_drop_behavior
21412146
2147+ opt_with_drop_provisioned_roles_options ::=
2148+ 'WITH' drop_provisioned_roles_options_list
2149+ |
2150+
21422151explain_option_name ::=
21432152 non_reserved_word
21442153
@@ -3098,6 +3107,9 @@ view_name_list ::=
30983107sequence_name_list ::=
30993108 db_object_name_list
31003109
3110+ drop_provisioned_roles_options_list ::=
3111+ ( drop_provisioned_roles_option ) ( ( ',' drop_provisioned_roles_option ) )*
3112+
31013113non_reserved_word ::=
31023114 'identifier'
31033115 | unreserved_keyword
@@ -3768,6 +3780,10 @@ only_signed_fconst ::=
37683780db_object_name_list ::=
37693781 ( db_object_name ) ( ( ',' db_object_name ) )*
37703782
3783+ drop_provisioned_roles_option ::=
3784+ 'SOURCE' '=' a_expr
3785+ | 'LAST' 'LOGIN' 'BEFORE' a_expr
3786+
37713787array_subscript ::=
37723788 '[' a_expr ']'
37733789 | '[' opt_slice_bound ':' opt_slice_bound ']'
@@ -4555,6 +4571,7 @@ bare_label_keywords ::=
45554571 | 'PROCEDURAL'
45564572 | 'PROCEDURE'
45574573 | 'PROCEDURES'
4574+ | 'PROVISIONED'
45584575 | 'PROVISIONSRC'
45594576 | 'PUBLIC'
45604577 | 'PUBLICATION'
0 commit comments