We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b12b528 + 0b67027 commit 2e6d230Copy full SHA for 2e6d230
src/pegjs/oracle.pegjs
@@ -154,6 +154,27 @@ stmt
154
/ alter_sequence_stmt
155
/ drop_sequence_stmt
156
/ create_index_stmt
157
+ / drop_index_stmt
158
+
159
+drop_index_stmt
160
+ = operation:KW_DROP _
161
+ object:KW_INDEX _
162
+ if_exists:if_exists? _
163
+ name:schema_object _
164
+ online:KW_ONLINE?
165
+ force:KW_FORCE?
166
+ invalidation:(x:(KW_DEFERRED / KW_IMMEDIATE) _ KW_INVALIDATION { return x; })? _
167
+ SEMI_COLON {
168
+ return {
169
+ operation,
170
+ object,
171
+ if_exists,
172
+ name,
173
+ online,
174
+ force,
175
+ invalidation
176
+ };
177
+ }
178
179
// TODO: missing index_ilm_clause, cluster_index_clause, bitmap_join_index_clause
180
create_index_stmt
0 commit comments