-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsql.go
4601 lines (4557 loc) · 251 KB
/
sql.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by goyacc - DO NOT EDIT.
package parser
import __yyfmt__ "fmt"
import (
"strings"
"github.com/sjjian/oracle-sql-parser/ast"
"github.com/sjjian/oracle-sql-parser/ast/element"
)
func nextQuery(yylex interface{}) string {
lex := yylex.(*yyLexImpl)
tc := lex.scanner.TC
query := string(lex.scanner.Text[lex.lastPos:tc])
lex.lastPos = tc
return strings.TrimSpace(query)
}
type yySymType struct {
yys int
nothing struct{}
i int
b bool
str string
node ast.Node
anything interface{}
}
type yyXError struct {
state, xsym int
}
const (
yyDefault = 57584
yyEofCode = 57344
_E = 57449
_G = 57463
_K = 57481
_M = 57490
_P = 57521
_T = 57557
_XMLType = 57572
_add = 57346
_advanced = 57403
_all = 57347
_alter = 57348
_always = 57404
_archive = 57405
_as = 57349
_asc = 57350
_at = 57406
_attributes = 57407
_auto = 57408
_basic = 57409
_bfile = 57410
_binaryDouble = 57411
_binaryFloat = 57412
_bitmap = 57413
_blob = 57414
_blockchain = 57415
_buffer_pool = 57416
_by = 57351
_byte = 57417
_cache = 57418
_capacity = 57419
_cascade = 57420
_cell_flash_cache = 57421
_char = 57352
_character = 57422
_checkpoint = 57423
_clob = 57424
_cluster = 57353
_collate = 57425
_column = 57354
_columns = 57426
_commit = 57427
_compress = 57355
_constraint = 57428
_constraints = 57429
_continue = 57430
_create = 57356
_creation = 57431
_critical = 57432
_cycle = 57433
_data = 57434
_date = 57357
_day = 57435
_dec = 57436
_decimal = 57358
_decrypt = 57437
_default = 57359
_deferrable = 57438
_deferred = 57439
_definition = 57440
_delete = 57360
_delete_all = 57441
_desc = 57361
_disable = 57442
_disable_all = 57443
_distribute = 57444
_dml = 57445
_double = 57446
_doubleQuoteStr = 57576
_drop = 57362
_drop_index = 57582
_duplicate = 57447
_duplicated = 57448
_enable = 57450
_enable_all = 57451
_encrypt = 57452
_exceptions = 57453
_extended = 57454
_external = 57455
_filesystem_like_logging = 57456
_flash_cache = 57457
_float = 57363
_for = 57364
_force = 57458
_foreign = 57459
_freelist = 57460
_freelists = 57461
_from = 57365
_full = 57462
_generated = 57464
_global = 57465
_groups = 57466
_heap = 57467
_high = 57468
_identified = 57366
_identity = 57469
_ilm = 57470
_immediate = 57367
_immutable = 57471
_increment = 57368
_index = 57369
_indexing = 57472
_initial = 57370
_initially = 57473
_initrans = 57474
_inmemory = 57475
_int = 57476
_intNumber = 57583
_integer = 57371
_interval = 57477
_into = 57372
_invalidate = 57478
_invalidation = 57479
_invisible = 57480
_is = 57373
_keep = 57482
_key = 57483
_level = 57374
_levels = 57484
_limit = 57485
_local = 57486
_locking = 57487
_logging = 57488
_long = 57375
_low = 57489
_maxextents = 57376
_maxsize = 57491
_maxtrans = 57492
_maxvalue = 57493
_medium = 57494
_memcompress = 57495
_memoptimize = 57496
_metadata = 57497
_minextents = 57498
_minvalue = 57499
_modify = 57377
_month = 57500
_multivalue = 57501
_national = 57502
_nchar = 57503
_nclob = 57504
_next = 57505
_no = 57506
_no_duplicate = 57580
_no_inmemory = 57579
_nocache = 57507
_nocompress = 57378
_nocycle = 57508
_nologging = 57509
_nomaxvalue = 57510
_nominvalue = 57511
_none = 57512
_nonquotedIdentifier = 57577
_noorder = 57513
_noparallel = 57514
_norely = 57515
_nosort = 57516
_not = 57379
_not_deferrable = 57578
_novalidate = 57517
_null = 57380
_number = 57381
_numeric = 57518
_nvarchar2 = 57519
_on = 57382
_online = 57383
_optimal = 57384
_order = 57385
_organization = 57520
_parallel = 57522
_parent = 57523
_partial = 57524
_partition = 57525
_pctfree = 57386
_pctincrease = 57526
_pctused = 57527
_peverse = 57528
_policy = 57529
_precision = 57530
_preserve = 57531
_primary = 57532
_priority = 57533
_private = 57534
_purge = 57535
_query = 57536
_range = 57537
_raw = 57387
_read = 57538
_real = 57539
_recycle = 57540
_references = 57541
_reject = 57542
_rely = 57543
_rename = 57388
_row = 57389
_row_level_locking = 57581
_rowid = 57390
_rows = 57391
_salt = 57544
_scope = 57545
_second = 57546
_segment = 57547
_select = 57392
_service = 57548
_set = 57393
_sharded = 57549
_sharding = 57550
_singleQuoteStr = 57575
_smallInt = 57394
_sort = 57551
_spatial = 57552
_start = 57395
_storage = 57553
_store = 57554
_subpartition = 57555
_substitutable = 57556
_table = 57396
_tablespace = 57558
_temporary = 57559
_time = 57560
_timestamp = 57561
_to = 57397
_unique = 57398
_unlimited = 57562
_unusable = 57563
_unused = 57564
_urowid = 57565
_usable = 57566
_using = 57567
_validate = 57399
_value = 57568
_varchar = 57400
_varchar2 = 57401
_varying = 57569
_visible = 57570
_with = 57402
_write = 57571
_year = 57573
_zone = 57574
yyErrCode = 57345
yyMaxDepth = 200
yyTabOfs = -684
)
var (
yyPrec = map[int]int{}
yyXLAT = map[int]int{
41: 0, // ')' (524x)
57344: 1, // $end (484x)
59: 2, // ';' (483x)
44: 3, // ',' (431x)
57532: 4, // _primary (421x)
57428: 5, // _constraint (419x)
57541: 6, // _references (417x)
57398: 7, // _unique (389x)
57380: 8, // _null (385x)
57379: 9, // _not (382x)
57496: 10, // _memoptimize (347x)
57523: 11, // _parent (345x)
57480: 12, // _invisible (334x)
57570: 13, // _visible (334x)
57362: 14, // _drop (322x)
57456: 15, // _filesystem_like_logging (306x)
57474: 16, // _initrans (306x)
57488: 17, // _logging (306x)
57492: 18, // _maxtrans (306x)
57509: 19, // _nologging (306x)
57527: 20, // _pctused (306x)
57553: 21, // _storage (306x)
57558: 22, // _tablespace (306x)
57420: 23, // _cascade (297x)
57470: 24, // _ilm (295x)
57453: 25, // _exceptions (293x)
57475: 26, // _inmemory (290x)
57517: 27, // _novalidate (290x)
57354: 28, // _column (289x)
57442: 29, // _disable (287x)
57450: 30, // _enable (287x)
57359: 31, // _default (277x)
57355: 32, // _compress (272x)
57378: 33, // _nocompress (270x)
57386: 34, // _pctfree (270x)
57439: 35, // _deferred (265x)
57579: 36, // _no_inmemory (254x)
57399: 37, // _validate (254x)
40: 38, // '(' (246x)
57567: 39, // _using (245x)
57515: 40, // _norely (241x)
57543: 41, // _rely (241x)
57383: 42, // _online (240x)
57455: 43, // _external (238x)
57520: 44, // _organization (237x)
57389: 45, // _row (237x)
57506: 46, // _no (236x)
57438: 47, // _deferrable (235x)
57473: 48, // _initially (235x)
57547: 49, // _segment (234x)
57576: 50, // _doubleQuoteStr (231x)
57577: 51, // _nonquotedIdentifier (231x)
57367: 52, // _immediate (229x)
57393: 53, // _set (227x)
57346: 54, // _add (225x)
57377: 55, // _modify (225x)
57423: 56, // _checkpoint (223x)
57478: 57, // _invalidate (221x)
57422: 58, // _character (219x)
57410: 59, // _bfile (218x)
57411: 60, // _binaryDouble (218x)
57412: 61, // _binaryFloat (218x)
57414: 62, // _blob (218x)
57424: 63, // _clob (218x)
57436: 64, // _dec (218x)
57446: 65, // _double (218x)
57458: 66, // _force (218x)
57476: 67, // _int (218x)
57477: 68, // _interval (218x)
57502: 69, // _national (218x)
57503: 70, // _nchar (218x)
57504: 71, // _nclob (218x)
57518: 72, // _numeric (218x)
57519: 73, // _nvarchar2 (218x)
57539: 74, // _real (218x)
57561: 75, // _timestamp (218x)
57565: 76, // _urowid (218x)
57535: 77, // _purge (216x)
57550: 78, // _sharding (214x)
57556: 79, // _substitutable (214x)
57382: 80, // _on (201x)
57353: 81, // _cluster (199x)
57578: 82, // _not_deferrable (199x)
57388: 83, // _rename (188x)
57352: 84, // _char (185x)
57387: 85, // _raw (183x)
57390: 86, // _rowid (183x)
57357: 87, // _date (182x)
57358: 88, // _decimal (182x)
57363: 89, // _float (182x)
57371: 90, // _integer (182x)
57375: 91, // _long (182x)
57381: 92, // _number (182x)
57394: 93, // _smallInt (182x)
57397: 94, // _to (182x)
57400: 95, // _varchar (182x)
57401: 96, // _varchar2 (182x)
57572: 97, // _XMLType (182x)
46: 98, // '.' (179x)
57350: 99, // _asc (177x)
57361: 100, // _desc (177x)
57452: 101, // _encrypt (177x)
57551: 102, // _sort (156x)
57437: 103, // _decrypt (133x)
57464: 104, // _generated (122x)
57425: 105, // _collate (111x)
57472: 106, // _indexing (80x)
57514: 107, // _noparallel (80x)
57516: 108, // _nosort (80x)
57522: 109, // _parallel (80x)
57528: 110, // _peverse (80x)
57563: 111, // _unusable (80x)
57566: 112, // _usable (80x)
57416: 113, // _buffer_pool (71x)
57421: 114, // _cell_flash_cache (71x)
57457: 115, // _flash_cache (71x)
57460: 116, // _freelist (71x)
57461: 117, // _freelists (71x)
57491: 118, // _maxsize (71x)
57498: 119, // _minextents (71x)
57505: 120, // _next (71x)
57526: 121, // _pctincrease (71x)
57552: 122, // _spatial (71x)
57447: 123, // _duplicate (67x)
57654: 124, // Identifier (54x)
57418: 125, // _cache (53x)
57433: 126, // _cycle (53x)
57444: 127, // _distribute (53x)
57493: 128, // _maxvalue (53x)
57499: 129, // _minvalue (53x)
57507: 130, // _nocache (53x)
57508: 131, // _nocycle (53x)
57510: 132, // _nomaxvalue (53x)
57511: 133, // _nominvalue (53x)
57513: 134, // _noorder (53x)
57583: 135, // _intNumber (52x)
57482: 136, // _keep (48x)
57533: 137, // _priority (47x)
57544: 138, // _salt (46x)
57483: 139, // _key (43x)
57468: 140, // _high (42x)
57489: 141, // _low (42x)
57459: 142, // _foreign (41x)
57469: 143, // _identity (41x)
57512: 144, // _none (41x)
57569: 145, // _varying (41x)
57571: 146, // _write (40x)
57426: 147, // _columns (39x)
57495: 148, // _memcompress (39x)
57564: 149, // _unused (39x)
57403: 150, // _advanced (38x)
57406: 151, // _at (38x)
57408: 152, // _auto (38x)
57413: 153, // _bitmap (38x)
57415: 154, // _blockchain (38x)
57417: 155, // _byte (38x)
57427: 156, // _commit (38x)
57429: 157, // _constraints (38x)
57434: 158, // _data (38x)
57440: 159, // _definition (38x)
57479: 160, // _invalidation (38x)
57484: 161, // _levels (38x)
57485: 162, // _limit (38x)
57500: 163, // _month (38x)
57501: 164, // _multivalue (38x)
57525: 165, // _partition (38x)
57531: 166, // _preserve (38x)
57536: 167, // _query (38x)
57538: 168, // _read (38x)
57542: 169, // _reject (38x)
57546: 170, // _second (38x)
57554: 171, // _store (38x)
57559: 172, // _temporary (38x)
57560: 173, // _time (38x)
57562: 174, // _unlimited (38x)
57574: 175, // _zone (38x)
57404: 176, // _always (37x)
57405: 177, // _archive (37x)
57407: 178, // _attributes (37x)
57409: 179, // _basic (37x)
57419: 180, // _capacity (37x)
57430: 181, // _continue (37x)
57431: 182, // _creation (37x)
57432: 183, // _critical (37x)
57435: 184, // _day (37x)
57441: 185, // _delete_all (37x)
57443: 186, // _disable_all (37x)
57445: 187, // _dml (37x)
57448: 188, // _duplicated (37x)
57449: 189, // _E (37x)
57451: 190, // _enable_all (37x)
57454: 191, // _extended (37x)
57462: 192, // _full (37x)
57463: 193, // _G (37x)
57465: 194, // _global (37x)
57466: 195, // _groups (37x)
57467: 196, // _heap (37x)
57471: 197, // _immutable (37x)
57481: 198, // _K (37x)
57486: 199, // _local (37x)
57490: 200, // _M (37x)
57494: 201, // _medium (37x)
57497: 202, // _metadata (37x)
57521: 203, // _P (37x)
57524: 204, // _partial (37x)
57530: 205, // _precision (37x)
57534: 206, // _private (37x)
57537: 207, // _range (37x)
57540: 208, // _recycle (37x)
57548: 209, // _service (37x)
57549: 210, // _sharded (37x)
57555: 211, // _subpartition (37x)
57557: 212, // _T (37x)
57568: 213, // _value (37x)
57573: 214, // _year (37x)
57487: 215, // _locking (36x)
57529: 216, // _policy (36x)
57545: 217, // _scope (36x)
57655: 218, // IdentifierOrKeyword (36x)
57759: 219, // UnReservedKeyword (36x)
57370: 220, // _initial (35x)
57376: 221, // _maxextents (35x)
57384: 222, // _optimal (35x)
57580: 223, // _no_duplicate (31x)
57606: 224, // ColumnName (25x)
57368: 225, // _increment (17x)
57385: 226, // _order (17x)
57395: 227, // _start (17x)
57364: 228, // _for (12x)
57582: 229, // _drop_index (11x)
57396: 230, // _table (11x)
57575: 231, // _singleQuoteStr (10x)
57607: 232, // ColumnNameList (10x)
57694: 233, // LoggingClause (10x)
57724: 234, // PhysicalAttrClause (10x)
57748: 235, // StorageClause (10x)
57369: 236, // _index (9x)
57581: 237, // _row_level_locking (9x)
57615: 238, // ConstraintStateDeferrable (9x)
57618: 239, // ConstraintStateInitially (9x)
57614: 240, // ConstraintState (8x)
57616: 241, // ConstraintStateDeferrableClause (8x)
57613: 242, // ConstraintName (7x)
57755: 243, // TableName (7x)
57591: 244, // CascadeOrEmpty (6x)
57729: 245, // ReferencesClause (6x)
42: 246, // '*' (5x)
57662: 247, // IndexAttr (5x)
57665: 248, // IndexCompression (5x)
57674: 249, // InlineConstraintBody (5x)
57677: 250, // InmemoryColumnClause (5x)
57710: 251, // NumberOrAsterisk (5x)
57721: 252, // ParallelClause (5x)
57723: 253, // PartialIndexClause (5x)
57738: 254, // SegmentAttrClause (5x)
57752: 255, // TableCompression (5x)
57347: 256, // _all (4x)
57349: 257, // _as (4x)
57351: 258, // _by (4x)
57402: 259, // _with (4x)
57603: 260, // ColumnDef (4x)
57659: 261, // IdentityOptionsOrEmpty (4x)
57673: 262, // InlineConstraint (4x)
57678: 263, // InmemoryColumnClauses (4x)
57679: 264, // InmemoryColumnClausesOrEmpty (4x)
57700: 265, // MemoptimizeWrite (4x)
57719: 266, // OutOfLineConstraintBody (4x)
57728: 267, // RealColumnDef (4x)
57742: 268, // SizeClause (4x)
57356: 269, // _create (3x)
57360: 270, // _delete (3x)
57366: 271, // _identified (3x)
57391: 272, // _rows (3x)
57588: 273, // AnsiSupportDataTypes (3x)
57594: 274, // CharacterDataTypes (3x)
57597: 275, // CollateClause (3x)
57608: 276, // ColumnNameListForDropColumn (3x)
57622: 277, // CreateIndexStmt (3x)
57625: 278, // Datatype (3x)
57626: 279, // DatetimeDataTypes (3x)
57632: 280, // DropColumnCheckpoint (3x)
57635: 281, // DropColumnProp (3x)
57640: 282, // DropConstraintProps (3x)
57663: 283, // IndexAttrs (3x)
57689: 284, // InvisibleProp (3x)
57691: 285, // IsForce (3x)
57692: 286, // KeepIndexOrEmpty (3x)
57693: 287, // LargeObjectDataTypes (3x)
57695: 288, // LongAndRawDataTypes (3x)
57709: 289, // NumberDataTypes (3x)
57715: 290, // OracleSuppliedTypes (3x)
57716: 291, // OralceBuiltInDataTypes (3x)
57718: 292, // OutOfLineConstraint (3x)
57736: 293, // RowIdDataTypes (3x)
57739: 294, // SegmentAttrsClause (3x)
57758: 295, // TimestampDataType (3x)
57348: 296, // _alter (2x)
57585: 297, // AddColumnClause (2x)
57587: 298, // AlterTableStmt (2x)
57592: 299, // ChangeColumnClause (2x)
57598: 300, // CollateClauseOrEmpty (2x)
57621: 301, // CreateIndexInvalidation (2x)
57624: 302, // CreateTableStmt (2x)
57627: 303, // DefaultClause (2x)
57629: 304, // DefaultOrIdentityClause (2x)
57633: 305, // DropColumnClause (2x)
57636: 306, // DropColumnProps (2x)
57637: 307, // DropColumnPropsOrEmpty (2x)
57638: 308, // DropConstraintClause (2x)
57641: 309, // DropIndexStmt (2x)
57642: 310, // DropTableStmt (2x)
57643: 311, // EmptyStmt (2x)
57645: 312, // EncryptClause (2x)
57649: 313, // Expr (2x)
57651: 314, // ExternalTableClause (2x)
57656: 315, // IdentityClause (2x)
57657: 316, // IdentityOption (2x)
57660: 317, // IlmClause (2x)
57666: 318, // IndexExpr (2x)
57669: 319, // IndexName (2x)
57671: 320, // IndexProps (2x)
57672: 321, // IndexType (2x)
57675: 322, // InlineConstraintList (2x)
57684: 323, // InmemoryMemCompress (2x)
57687: 324, // InmemoryTableClause (2x)
57698: 325, // MemoptimizeRead (2x)
57701: 326, // MemoptimizeWriteForAlterTable (2x)
57702: 327, // ModifyColumnClause (2x)
57703: 328, // ModifyColumnProp (2x)
57705: 329, // ModifyColumnSubstitutable (2x)
57706: 330, // ModifyColumnVisibility (2x)
57708: 331, // ModifyRealColumnProp (2x)
57713: 332, // OnCommitRows (2x)
57714: 333, // OnlineOrEmpty (2x)
57732: 334, // RelTableProp (2x)
57740: 335, // SegmentAttrsClauseOrEmpty (2x)
57746: 336, // Statement (2x)
57749: 337, // StorageProp (2x)
61: 338, // '=' (1x)
57372: 339, // _into (1x)
57586: 340, // AlterTableClauses (1x)
57589: 341, // BlockchainTableClauses (1x)
57590: 342, // CascadeConstraintsOrEmpty (1x)
57593: 343, // ChangeColumnClauseList (1x)
57595: 344, // ClusterIndexClause (1x)
57596: 345, // ClusterName (1x)
57599: 346, // ColumnClauses (1x)
57600: 347, // ColumnCompressLock (1x)
57601: 348, // ColumnCompressProp (1x)
57602: 349, // ColumnConstraintForModify (1x)
57604: 350, // ColumnDefConstraint (1x)
57605: 351, // ColumnDefList (1x)
57609: 352, // ColumnNameListOrEmpty (1x)
57610: 353, // ColumnProps (1x)
57611: 354, // ColumnSortClause (1x)
57612: 355, // ConstraintClauses (1x)
57617: 356, // ConstraintStateEnable (1x)
57619: 357, // ConstraintStateRely (1x)
57620: 358, // ConstraintStateValidate (1x)
57623: 359, // CreateIndexUsable (1x)
57628: 360, // DefaultCollateClauseOrEmpty (1x)
57630: 361, // DefaultOrIdentityClauseForModify (1x)
57631: 362, // DeferredSegmentCreation (1x)
57634: 363, // DropColumnOnline (1x)
57639: 364, // DropConstraintClauses (1x)
57644: 365, // EncryptAlgorithm (1x)
57646: 366, // EncryptClauseForModify (1x)
57647: 367, // EncryptionSpec (1x)
57648: 368, // ExceptionsClause (1x)
57650: 369, // ExternalPartitionClause (1x)
57652: 370, // HeapOrgTableClause (1x)
57653: 371, // IdentifiedByClause (1x)
57658: 372, // IdentityOptions (1x)
57661: 373, // ImmutableTableClauses (1x)
57664: 374, // IndexClause (1x)
57667: 375, // IndexExprs (1x)
57668: 376, // IndexIlmClause (1x)
57670: 377, // IndexOrgTableClause (1x)
57676: 378, // InmemoryAttrs (1x)
57680: 379, // InmemoryDistribute (1x)
57681: 380, // InmemoryDistributeBy (1x)
57682: 381, // InmemoryDistributeFor (1x)
57683: 382, // InmemoryDuplicate (1x)
57685: 383, // InmemoryProp (1x)
57686: 384, // InmemorySpatial (1x)
57688: 385, // IntergrityAlgorithm (1x)
57690: 386, // InvisiblePropOrEmpty (1x)
57696: 387, // Memoptimize (1x)
57697: 388, // MemoptimizeForAlterTable (1x)
57699: 389, // MemoptimizeReadForAlterTable (1x)
57704: 390, // ModifyColumnProps (1x)
57707: 391, // ModifyColumnVisibilityList (1x)
57711: 392, // OnCommitClause (1x)
57712: 393, // OnCommitDef (1x)
57717: 394, // OrgClause (1x)
57720: 395, // OutOfLinePartStorageList (1x)
57722: 396, // ParentTable (1x)
57726: 397, // PhysicalProps (1x)
57727: 398, // PurgeOrEmpty (1x)
57730: 399, // ReferencesOnDelete (1x)
57731: 400, // RelTableDef (1x)
57733: 401, // RelTableProps (1x)
57734: 402, // RelTablePropsOrEmpty (1x)
57735: 403, // RenameColumnClause (1x)
57737: 404, // SaltProp (1x)
57741: 405, // ShardingType (1x)
57743: 406, // SizeUnit (1x)
57744: 407, // SortProp (1x)
57745: 408, // Start (1x)
57747: 409, // StatementList (1x)
57750: 410, // StorageProps (1x)
57751: 411, // TableAlias (1x)
57753: 412, // TableDef (1x)
57754: 413, // TableIndexClause (1x)
57756: 414, // TableProps (1x)
57757: 415, // TableType (1x)
57760: 416, // UsingIndexClause (1x)
57761: 417, // UsingIndexName (1x)
57584: 418, // $default (0x)
57365: 419, // _from (0x)
57373: 420, // _is (0x)
57374: 421, // _level (0x)
57392: 422, // _select (0x)
57345: 423, // error (0x)
57725: 424, // PhysicalAttrsClause (0x)
}
yySymNames = []string{
"')'",
"$end",
"';'",
"','",
"_primary",
"_constraint",
"_references",
"_unique",
"_null",
"_not",
"_memoptimize",
"_parent",
"_invisible",
"_visible",
"_drop",
"_filesystem_like_logging",
"_initrans",
"_logging",
"_maxtrans",
"_nologging",
"_pctused",
"_storage",
"_tablespace",
"_cascade",
"_ilm",
"_exceptions",
"_inmemory",
"_novalidate",
"_column",
"_disable",
"_enable",
"_default",
"_compress",
"_nocompress",
"_pctfree",
"_deferred",
"_no_inmemory",
"_validate",
"'('",
"_using",
"_norely",
"_rely",
"_online",
"_external",
"_organization",
"_row",
"_no",
"_deferrable",
"_initially",
"_segment",
"_doubleQuoteStr",
"_nonquotedIdentifier",
"_immediate",
"_set",
"_add",
"_modify",
"_checkpoint",
"_invalidate",
"_character",
"_bfile",
"_binaryDouble",
"_binaryFloat",
"_blob",
"_clob",
"_dec",
"_double",
"_force",
"_int",
"_interval",
"_national",
"_nchar",
"_nclob",
"_numeric",
"_nvarchar2",
"_real",
"_timestamp",
"_urowid",
"_purge",
"_sharding",
"_substitutable",
"_on",
"_cluster",
"_not_deferrable",
"_rename",
"_char",
"_raw",
"_rowid",
"_date",
"_decimal",
"_float",
"_integer",
"_long",
"_number",
"_smallInt",
"_to",
"_varchar",
"_varchar2",
"_XMLType",
"'.'",
"_asc",
"_desc",
"_encrypt",
"_sort",
"_decrypt",
"_generated",
"_collate",
"_indexing",
"_noparallel",
"_nosort",
"_parallel",
"_peverse",
"_unusable",
"_usable",
"_buffer_pool",
"_cell_flash_cache",
"_flash_cache",
"_freelist",
"_freelists",
"_maxsize",
"_minextents",
"_next",
"_pctincrease",
"_spatial",
"_duplicate",
"Identifier",
"_cache",
"_cycle",
"_distribute",
"_maxvalue",
"_minvalue",
"_nocache",
"_nocycle",
"_nomaxvalue",
"_nominvalue",
"_noorder",
"_intNumber",
"_keep",
"_priority",
"_salt",
"_key",
"_high",
"_low",
"_foreign",
"_identity",
"_none",
"_varying",
"_write",
"_columns",
"_memcompress",
"_unused",
"_advanced",
"_at",
"_auto",
"_bitmap",
"_blockchain",
"_byte",
"_commit",
"_constraints",
"_data",
"_definition",
"_invalidation",
"_levels",
"_limit",
"_month",
"_multivalue",
"_partition",
"_preserve",
"_query",
"_read",
"_reject",
"_second",
"_store",
"_temporary",
"_time",
"_unlimited",
"_zone",
"_always",
"_archive",
"_attributes",
"_basic",
"_capacity",
"_continue",
"_creation",
"_critical",
"_day",
"_delete_all",
"_disable_all",
"_dml",
"_duplicated",
"_E",
"_enable_all",
"_extended",
"_full",
"_G",
"_global",
"_groups",
"_heap",
"_immutable",
"_K",
"_local",
"_M",
"_medium",
"_metadata",
"_P",
"_partial",
"_precision",
"_private",
"_range",
"_recycle",
"_service",
"_sharded",
"_subpartition",
"_T",
"_value",
"_year",
"_locking",
"_policy",
"_scope",
"IdentifierOrKeyword",
"UnReservedKeyword",
"_initial",
"_maxextents",
"_optimal",
"_no_duplicate",
"ColumnName",
"_increment",
"_order",
"_start",
"_for",
"_drop_index",
"_table",
"_singleQuoteStr",
"ColumnNameList",
"LoggingClause",
"PhysicalAttrClause",
"StorageClause",
"_index",
"_row_level_locking",
"ConstraintStateDeferrable",
"ConstraintStateInitially",
"ConstraintState",
"ConstraintStateDeferrableClause",
"ConstraintName",
"TableName",
"CascadeOrEmpty",
"ReferencesClause",
"'*'",
"IndexAttr",
"IndexCompression",
"InlineConstraintBody",
"InmemoryColumnClause",
"NumberOrAsterisk",
"ParallelClause",
"PartialIndexClause",
"SegmentAttrClause",
"TableCompression",
"_all",
"_as",
"_by",
"_with",
"ColumnDef",
"IdentityOptionsOrEmpty",
"InlineConstraint",
"InmemoryColumnClauses",
"InmemoryColumnClausesOrEmpty",
"MemoptimizeWrite",
"OutOfLineConstraintBody",
"RealColumnDef",
"SizeClause",
"_create",
"_delete",
"_identified",
"_rows",
"AnsiSupportDataTypes",
"CharacterDataTypes",
"CollateClause",
"ColumnNameListForDropColumn",
"CreateIndexStmt",
"Datatype",
"DatetimeDataTypes",
"DropColumnCheckpoint",
"DropColumnProp",
"DropConstraintProps",
"IndexAttrs",
"InvisibleProp",
"IsForce",