-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsql.y
2535 lines (2309 loc) · 51.9 KB
/
sql.y
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
%{
package parser
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)
}
%}
%union {
nothing struct{}
i int
b bool
str string
node ast.Node
anything interface{}
}
%token <str>
/* reserved keyword */
/* see: https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/Oracle-SQL-Reserved-Words.html#GUID-55C49D1E-BE08-4C50-A9DD-8593EB925612 */
_add
_all
_alter
_as
_asc
_by
_char
_cluster
_column
_compress
_create
_date
_decimal
_default
_delete
_desc
_drop
_float
_for
_from
_identified
_immediate
_increment
_index
_initial
_integer
_into
_is
_level
_long
_maxextents
_modify
_nocompress
_not
_null
_number
_on
_online
_optimal
_order
_pctfree
_raw
_rename
_row
_rowid
_rows
_select
_set
_smallInt
_start
_table
_to
_unique
_validate
_varchar
_varchar2
_with
/* unreserved keyword */
_advanced
_always
_archive
_at
_attributes
_auto
_basic
_bfile
_binaryDouble
_binaryFloat
_bitmap
_blob
_blockchain
_buffer_pool
_byte
_cache
_capacity
_cascade
_cell_flash_cache
_character
_checkpoint
_clob
_collate
_columns
_commit
_constraint
_constraints
_continue
_creation
_critical
_cycle
_data
_day
_dec
_decrypt
_deferrable
_deferred
_definition
_delete_all
_disable
_disable_all
_distribute
_dml
_double
_duplicate
_duplicated
_E
_enable
_enable_all
_encrypt
_exceptions
_extended
_external
_filesystem_like_logging
_flash_cache
_force
_foreign
_freelist
_freelists
_full
_G
_generated
_global
_groups
_heap
_high
_identity
_ilm
_immutable
_indexing
_initially
_initrans
_inmemory
_int
_interval
_invalidate
_invalidation
_invisible
_K
_keep
_key
_levels
_limit
_local
_locking
_logging
_low
_M
_maxsize
_maxtrans
_maxvalue
_medium
_memcompress
_memoptimize
_metadata
_minextents
_minvalue
_month
_multivalue
_national
_nchar
_nclob
_next
_no
_nocache
_nocycle
_nologging
_nomaxvalue
_nominvalue
_none
_noorder
_noparallel
_norely
_nosort
_novalidate
_numeric
_nvarchar2
_organization
_P
_parallel
_parent
_partial
_partition
_pctincrease
_pctused
_peverse
_policy
_precision
_preserve
_primary
_priority
_private
_purge
_query
_range
_read
_real
_recycle
_references
_reject
_rely
_salt
_scope
_second
_segment
_service
_sharded
_sharding
_sort
_spatial
_storage
_store
_subpartition
_substitutable
_T
_tablespace
_temporary
_time
_timestamp
_unlimited
_unusable
_unused
_urowid
_usable
_using
_value
_varying
_visible
_write
_XMLType
_year
_zone
/* identifier */
_singleQuoteStr "single quotes string"
_doubleQuoteStr "double quotes string"
_nonquotedIdentifier "nonquoted identifier"
/* keyword group, for resolve confict */
_not_deferrable
_no_inmemory
_no_duplicate
_row_level_locking
_drop_index
%token <i>
_intNumber "int number"
// define type for all structure
%type <i>
_intNumber
SortProp
InvisibleProp
InvisiblePropOrEmpty
DropColumnProp
DropColumnOnline
%type <b>
IsForce
%type <str>
UnReservedKeyword
%type <node>
EmptyStmt
Statement "all statement"
AlterTableStmt "*ast.AlterTableStmt"
CreateTableStmt
CreateIndexStmt
DropIndexStmt
DropTableStmt
%type <anything>
StatementList
TableName
IndexName
Identifier
IdentifierOrKeyword
ColumnName
Datatype
OralceBuiltInDataTypes
CharacterDataTypes
NumberDataTypes
LongAndRawDataTypes
DatetimeDataTypes
TimestampDataType
LargeObjectDataTypes
RowIdDataTypes
AnsiSupportDataTypes
OracleSuppliedTypes
AlterTableClauses
ColumnClauses
ConstraintClauses
ChangeColumnClauseList
ChangeColumnClause
RenameColumnClause
AddColumnClause
ModifyColumnClause
ModifyColumnProps
ModifyColumnProp
ModifyRealColumnProp
ModifyColumnVisibilityList
ModifyColumnVisibility
ModifyColumnSubstitutable
RealColumnDef
ColumnDefList
ColumnDef
DropColumnClause
NumberOrAsterisk
CollateClauseOrEmpty
CollateClause
DefaultCollateClauseOrEmpty
ColumnNameList
ColumnNameListForDropColumn
DropColumnCheckpoint
DropColumnProps
DropColumnPropsOrEmpty
TableDef
RelTableDef
RelTablePropsOrEmpty
RelTableProps
RelTableProp
OutOfLineConstraint
OutOfLineConstraintBody
ConstraintName
ColumnDefConstraint
InlineConstraintList
InlineConstraint
InlineConstraintBody
DropConstraintClauses
DropConstraintClause
%start Start
%%
Start:
StatementList
StatementList:
Statement
{
if $1 != nil {
stmt := $1
stmt.SetText(nextQuery(yylex))
yylex.(*yyLexImpl).result = append(yylex.(*yyLexImpl).result, stmt)
}
}
| StatementList ';' Statement
{
if $3 != nil {
stmt := $3
stmt.SetText(nextQuery(yylex))
yylex.(*yyLexImpl).result = append(yylex.(*yyLexImpl).result, stmt)
}
}
Statement:
EmptyStmt
| AlterTableStmt
| CreateTableStmt
| CreateIndexStmt
| DropIndexStmt
| DropTableStmt
EmptyStmt:
{
$$ = nil
}
/* +++++++++++++++++++++++++++++++++++++++++++++ base stmt ++++++++++++++++++++++++++++++++++++++++++++ */
TableName:
IdentifierOrKeyword
{
$$ = &ast.TableName{
Table: $1.(*element.Identifier),
}
}
| IdentifierOrKeyword '.' IdentifierOrKeyword
{
$$ = &ast.TableName{
Schema: $1.(*element.Identifier),
Table: $3.(*element.Identifier),
}
}
ColumnNameList:
ColumnName
{
$$ = []*element.Identifier{$1.(*element.Identifier)}
}
| ColumnNameList ',' ColumnName
{
$$ = append($1.([]*element.Identifier), $3.(*element.Identifier))
}
ColumnName:
IdentifierOrKeyword
{
$$ = $1
}
ClusterName:
Identifier
| Identifier '.' Identifier
IndexName:
IdentifierOrKeyword
{
$$ = &ast.IndexName{
Index: $1.(*element.Identifier),
}
}
| IdentifierOrKeyword '.' IdentifierOrKeyword
{
$$ = &ast.IndexName{
Schema: $1.(*element.Identifier),
Index: $3.(*element.Identifier),
}
}
UsingIndexName: // for using index clause
Identifier
| Identifier '.' Identifier
IdentifierOrKeyword:
Identifier
{
$$ = $1
}
| UnReservedKeyword
{
$$ = &element.Identifier{
Typ: element.IdentifierTypeNonQuoted,
Value: $1,
}
}
Identifier:
_nonquotedIdentifier
{
$$ = &element.Identifier{
Typ: element.IdentifierTypeNonQuoted,
Value: $1,
}
}
| _doubleQuoteStr
{
$$ = &element.Identifier{
Typ: element.IdentifierTypeQuoted,
Value: $1,
}
}
UnReservedKeyword:
_advanced
| _always
| _archive
| _at
| _attributes
| _auto
| _basic
| _bfile
| _binaryDouble
| _binaryFloat
| _bitmap
| _blob
| _blockchain
| _buffer_pool
| _byte
| _cache
| _capacity
| _cascade
| _cell_flash_cache
| _character
| _checkpoint
| _clob
| _collate
| _columns
| _commit
| _constraint
| _constraints
| _continue
| _creation
| _critical
| _cycle
| _data
| _day
| _dec
| _decrypt
| _deferrable
| _deferred
| _definition
| _delete_all
| _disable
| _disable_all
| _distribute
| _dml
| _double
| _duplicate
| _duplicated
| _E
| _enable
| _enable_all
| _encrypt
| _exceptions
| _extended
| _external
| _filesystem_like_logging
| _flash_cache
| _force
| _foreign
| _freelist
| _freelists
| _full
| _G
| _generated
| _global
| _groups
| _heap
| _high
| _identity
| _ilm
| _immutable
| _indexing
| _initially
| _initrans
| _inmemory
| _int
| _interval
| _invalidate
| _invalidation
| _invisible
| _K
| _keep
| _key
| _levels
| _limit
| _local
| _locking
| _logging
| _low
| _M
| _maxsize
| _maxtrans
| _maxvalue
| _medium
| _memcompress
| _memoptimize
| _metadata
| _minextents
| _minvalue
| _month
| _multivalue
| _national
| _nchar
| _nclob
| _next
| _no
| _nocache
| _nocycle
| _nologging
| _nomaxvalue
| _nominvalue
| _none
| _noorder
| _noparallel
| _norely
| _nosort
| _novalidate
| _numeric
| _nvarchar2
| _organization
| _P
| _parallel
| _parent
| _partial
| _partition
| _pctincrease
| _pctused
| _peverse
| _policy
| _precision
| _preserve
| _primary
| _priority
| _private
| _purge
| _query
| _range
| _read
| _real
| _recycle
| _references
| _reject
| _rely
| _salt
| _scope
| _second
| _segment
| _service
| _sharded
| _sharding
| _sort
| _spatial
| _storage
| _store
| _subpartition
| _substitutable
| _T
| _tablespace
| _temporary
| _time
| _timestamp
| _unlimited
| _unusable
| _unused
| _urowid
| _usable
| _using
| _value
| _varying
| _visible
| _write
| _year
| _zone
/* +++++++++++++++++++++++++++++++++++++++++++++ alter table ++++++++++++++++++++++++++++++++++++++++++++ */
// see: https://docs.oracle.com/en/database/oracle/oracle-database/21/sqlrf/ALTER-TABLE.html#GUID-552E7373-BF93-477D-9DA3-B2C9386F2877
AlterTableStmt:
_alter _table TableName MemoptimizeForAlterTable AlterTableClauses
{
$$ = &ast.AlterTableStmt{
TableName: $3.(*ast.TableName),
AlterTableClauses: $5.([]ast.AlterTableClause),
}
}
AlterTableClauses:
ColumnClauses
{
$$ = $1
}
| ConstraintClauses
{
$$ = $1
}
ColumnClauses:
ChangeColumnClauseList
{
$$ = $1
}
| RenameColumnClause
{
$$ = []ast.AlterTableClause{$1.(ast.AlterTableClause)}
}
ChangeColumnClauseList:
ChangeColumnClause
{
$$ = []ast.AlterTableClause{$1.(ast.AlterTableClause)}
}
| ChangeColumnClauseList ChangeColumnClause
{
$$ = append($1.([]ast.AlterTableClause), $2.(ast.AlterTableClause))
}
ChangeColumnClause:
AddColumnClause
| ModifyColumnClause
| DropColumnClause
/* +++++++++++++++++++++++++++++++++++++++++++++ add column ++++++++++++++++++++++++++++++++++++++++++++ */
AddColumnClause:
_add '(' ColumnDefList ')' ColumnProps OutOfLinePartStorageList
{
$$ = &ast.AddColumnClause{
Columns: $3.([]*ast.ColumnDef),
}
}
ColumnProps:
{
// TODO
}
OutOfLinePartStorageList:
{
// TODO
}
ColumnDefList:
ColumnDef
{
$$ = []*ast.ColumnDef{$1.(*ast.ColumnDef)}
}
| ColumnDefList ',' ColumnDef
{
$$ = append($1.([]*ast.ColumnDef), $3.(*ast.ColumnDef))
}
ColumnDef:
RealColumnDef
{
$$ = $1
}
//| VirtualColumnDef // TODO; support
RealColumnDef:
ColumnName Datatype CollateClauseOrEmpty SortProp InvisiblePropOrEmpty DefaultOrIdentityClause EncryptClause ColumnDefConstraint
{
var collation *ast.Collation
if $3 != nil {
collation = $3.(*ast.Collation)
}
props := []ast.ColumnProp{}
sort := ast.ColumnProp($4)
if sort != ast.ColumnPropEmpty {
props = append(props, sort)
}
invisible := ast.ColumnProp($5)
if invisible != ast.ColumnPropEmpty {
props = append(props, invisible)
}
var constraints []*ast.InlineConstraint
if $8 != nil {
constraints = $8.([]*ast.InlineConstraint)
}
$$ = &ast.ColumnDef{
ColumnName: $1.(*element.Identifier),
Datatype: $2.(element.Datatype),
Collation: collation,
Props: props,
Constraints: constraints,
}
}
CollateClauseOrEmpty:
{
$$ = nil
}
| CollateClause
{
$$ = $1
}
CollateClause:
_collate Identifier
{
$$ = &ast.Collation{Name: $2.(*element.Identifier)}
}
SortProp:
{
$$ = int(ast.ColumnPropEmpty)
}
| _sort
{
$$ = int(ast.ColumnPropSort)
}
InvisiblePropOrEmpty:
{
$$ = int(ast.ColumnPropEmpty)
}
| InvisibleProp
InvisibleProp:
_invisible
{
$$ = int(ast.ColumnPropInvisible)
}
| _visible
{
$$ = int(ast.ColumnPropVisible)
}
DefaultOrIdentityClause:
{
// empty
}
| DefaultClause
| IdentityClause
DefaultClause:
_default Expr
| _default _no _null Expr
IdentityClause:
_generated _as _identity IdentityOptionsOrEmpty
| _generated _always _as _identity IdentityOptionsOrEmpty
| _generated _by _default _as _identity IdentityOptionsOrEmpty
| _generated _by _default _on _null _as _identity IdentityOptionsOrEmpty
IdentityOptionsOrEmpty:
{
// empty
}
| '(' ')'
| '(' IdentityOptions ')'
IdentityOptions:
IdentityOption
| IdentityOptions IdentityOption
IdentityOption:
_start _with _intNumber
| _start _with _limit _value
| _increment _by _intNumber
| _maxvalue _intNumber
| _nomaxvalue
| _minvalue _intNumber
| _nominvalue
| _cycle
| _nocycle
| _cache _intNumber
| _nocache
| _order
| _noorder
EncryptClause:
{
// empty
}
| _encrypt EncryptionSpec
EncryptionSpec:
EncryptAlgorithm IdentifiedByClause IntergrityAlgorithm SaltProp
EncryptAlgorithm:
{
// empty
}
| _using _singleQuoteStr
IdentifiedByClause:
{
// empty
}
| _identified _by Identifier
IntergrityAlgorithm:
{
// empty
}
| _singleQuoteStr
SaltProp:
{
// empty
}
| _salt
| _no _salt
ColumnDefConstraint:
{
$$ = nil
}
//| InlineRefConstraint // NOTE: only for REF column.
// {
// $$ = nil
// }
| InlineConstraintList
{
$$ = $1
}
InlineConstraintList:
InlineConstraint
{
$$ = []*ast.InlineConstraint{$1.(*ast.InlineConstraint)}
}
| InlineConstraintList InlineConstraint
{
$$ = append($1.([]*ast.InlineConstraint), $2.(*ast.InlineConstraint))
}
/* +++++++++++++++++++++++++++++++++++++++++++++ modify column ++++++++++++++++++++++++++++++++++++++++++++ */
ModifyColumnClause:
_modify '(' ModifyColumnProps ')'
{
$$ = &ast.ModifyColumnClause{
Columns: $3.([]*ast.ColumnDef),
}
}
| _modify '(' ModifyColumnVisibilityList ')'
{
$$ = &ast.ModifyColumnClause{
Columns: $3.([]*ast.ColumnDef),
}
}
| ModifyColumnSubstitutable
{
$$ = &ast.ModifyColumnClause{
Columns: $1.([]*ast.ColumnDef),
}
}
ModifyColumnProps:
ModifyColumnProp
{
$$ = []*ast.ColumnDef{$1.(*ast.ColumnDef)}
}
| ModifyColumnProps ',' ModifyColumnProp
{
$$ = append($1.([]*ast.ColumnDef), $3.(*ast.ColumnDef))
}
ModifyColumnProp:
ModifyRealColumnProp
// | ModifyVirtualColumnProp // TODO
ModifyRealColumnProp:
ColumnName Datatype CollateClauseOrEmpty DefaultOrIdentityClauseForModify EncryptClauseForModify ColumnConstraintForModify
{
var collation *ast.Collation
if $3 != nil {
collation = $3.(*ast.Collation)
}
$$ = &ast.ColumnDef{
ColumnName: $1.(*element.Identifier),
Datatype: $2.(element.Datatype),
Collation: collation,
Props: []ast.ColumnProp{},
}
}
DefaultOrIdentityClauseForModify:
_drop _identity
| DefaultOrIdentityClause
EncryptClauseForModify:
_decrypt
| EncryptClause
ColumnConstraintForModify:
{
// empty
}
| InlineConstraintList
ModifyColumnVisibilityList:
ModifyColumnVisibility
{
$$ = []*ast.ColumnDef{$1.(*ast.ColumnDef)}
}
| ModifyColumnVisibilityList ',' ModifyColumnVisibility
{
$$ = append($1.([]*ast.ColumnDef), $3.(*ast.ColumnDef))
}
ModifyColumnVisibility:
ColumnName InvisibleProp
{
$$ = &ast.ColumnDef{
ColumnName: $1.(*element.Identifier),
Props: []ast.ColumnProp{ast.ColumnProp($2)},
}
}
ModifyColumnSubstitutable: