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.
1 parent d0b2c39 commit 329791aCopy full SHA for 329791a
src/pegjs/oracle.pegjs
@@ -150,9 +150,26 @@ stmt
150
/ create_domain_stmt
151
/ drop_domain_stmt
152
/ commit_stmt
153
- / create_squence_stmt
+ / create_sequence_stmt
154
+ / alter_sequence_stmt
155
-create_squence_stmt
156
+alter_sequence_stmt
157
+ = operation:KW_ALTER _
158
+ object:KW_SEQUENCE _
159
+ if_exists:if_exists? _
160
+ name:schema_object _
161
+ settings:sequence_settings? _
162
+ SEMI_COLON {
163
+ return {
164
+ operation,
165
+ object,
166
+ if_not_exists,
167
+ name,
168
+ settings,
169
+ };
170
+ }
171
+
172
+create_sequence_stmt
173
= operation:KW_CREATE _
174
object:KW_SEQUENCE _
175
if_not_exists:if_not_exists? _
0 commit comments