-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast.go
2281 lines (1971 loc) · 57.1 KB
/
ast.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
/*
Copyright 2019 The Vitess Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package sqlparser
import (
"fmt"
"strings"
"github.com/Bill-cc/go-sql2struct/sqltypes"
)
/*
This is the Vitess AST. This file should only contain pure struct declarations,
or methods used to mark a struct as implementing an interface. All other methods
related to these structs live in ast_funcs.go
*/
// SQLNode defines the interface for all nodes
// generated by the parser.
type SQLNode interface {
Format(buf *TrackedBuffer)
}
// Statements
type (
// Statement represents a statement.
Statement interface {
iStatement()
SQLNode
}
// SelectStatement any SELECT statement.
SelectStatement interface {
iSelectStatement()
iStatement()
iInsertRows()
AddOrder(*Order)
SetLimit(*Limit)
SetLock(lock Lock)
MakeDistinct()
SQLNode
}
// DDLStatement represents any DDL Statement
DDLStatement interface {
iDDLStatement()
IsFullyParsed() bool
GetTable() TableName
GetAction() DDLAction
AffectedTables() TableNames
SetTable(qualifier string, name string)
Statement
}
// Select represents a SELECT statement.
Select struct {
Cache *bool // a reference here so it can be nil
Distinct bool
StraightJoinHint bool
SQLCalcFoundRows bool
Comments Comments
SelectExprs SelectExprs
From TableExprs
Where *Where
GroupBy GroupBy
Having *Where
OrderBy OrderBy
Limit *Limit
Lock Lock
Into *SelectInto
}
// SelectInto is a struct that represent the INTO part of a select query
SelectInto struct {
Type SelectIntoType
FileName string
Charset string
FormatOption string
ExportOption string
Manifest string
Overwrite string
}
// SelectIntoType is an enum for SelectInto.Type
SelectIntoType int8
// Lock is an enum for the type of lock in the statement
Lock int8
// UnionSelect represents union type and select statement after first select statement.
UnionSelect struct {
Distinct bool
Statement SelectStatement
}
// Union represents a UNION statement.
Union struct {
FirstStatement SelectStatement
UnionSelects []*UnionSelect
OrderBy OrderBy
Limit *Limit
Lock Lock
}
// VStream represents a VSTREAM statement.
VStream struct {
Comments Comments
SelectExpr SelectExpr
Table TableName
Where *Where
Limit *Limit
}
// Stream represents a SELECT statement.
Stream struct {
Comments Comments
SelectExpr SelectExpr
Table TableName
}
// Insert represents an INSERT or REPLACE statement.
// Per the MySQL docs, http://dev.mysql.com/doc/refman/5.7/en/replace.html
// Replace is the counterpart to `INSERT IGNORE`, and works exactly like a
// normal INSERT except if the row exists. In that case it first deletes
// the row and re-inserts with new values. For that reason we keep it as an Insert struct.
// Replaces are currently disallowed in sharded schemas because
// of the implications the deletion part may have on vindexes.
// If you add fields here, consider adding them to calls to validateUnshardedRoute.
Insert struct {
Action InsertAction
Comments Comments
Ignore Ignore
Table TableName
Partitions Partitions
Columns Columns
Rows InsertRows
OnDup OnDup
}
// Ignore represents whether ignore was specified or not
Ignore bool
// InsertAction is the action for insert.
InsertAction int8
// Update represents an UPDATE statement.
// If you add fields here, consider adding them to calls to validateUnshardedRoute.
Update struct {
Comments Comments
Ignore Ignore
TableExprs TableExprs
Exprs UpdateExprs
Where *Where
OrderBy OrderBy
Limit *Limit
}
// Delete represents a DELETE statement.
// If you add fields here, consider adding them to calls to validateUnshardedRoute.
Delete struct {
Ignore Ignore
Comments Comments
Targets TableNames
TableExprs TableExprs
Partitions Partitions
Where *Where
OrderBy OrderBy
Limit *Limit
}
// Set represents a SET statement.
Set struct {
Comments Comments
Exprs SetExprs
}
// SetTransaction represents a SET TRANSACTION statement.
SetTransaction struct {
SQLNode
Comments Comments
Scope Scope
Characteristics []Characteristic
}
// Scope is an enum for scope of query
Scope int8
// Characteristic is a transaction related change
Characteristic interface {
SQLNode
iChar()
}
// IsolationLevel is an enum for isolation levels
IsolationLevel int8
// AccessMode is enum for the mode - ReadOnly or ReadWrite
AccessMode int8
// DBDDL represents a CREATE, DROP, or ALTER database statement.
DBDDL struct {
Action DBDDLAction
DBName string
IfExists bool
IfNotExists bool
Collate string
Charset string
}
// DBDDLAction is an enum for DBDDL Actions
DBDDLAction int8
// DDL represents a CREATE, ALTER, DROP, RENAME, TRUNCATE or ANALYZE statement.
DDL struct {
Action DDLAction
// FromTables is set if Action is RenameDDLAction or DropDDLAction.
FromTables TableNames
// ToTables is set if Action is RenameDDLAction.
ToTables TableNames
// Table is set if Action is other than RenameDDLAction or DropDDLAction.
Table TableName
// The following fields are set if a DDL was fully analyzed.
IfExists bool
TableSpec *TableSpec
OptLike *OptLike
PartitionSpec *PartitionSpec
// VindexSpec is set for CreateVindexDDLAction, DropVindexDDLAction, AddColVindexDDLAction, DropColVindexDDLAction.
VindexSpec *VindexSpec
// VindexCols is set for AddColVindexDDLAction.
VindexCols []ColIdent
// AutoIncSpec is set for AddAutoIncDDLAction.
AutoIncSpec *AutoIncSpec
}
// CreateIndex represents a CREATE INDEX query
CreateIndex struct {
Constraint string
Name ColIdent
IndexType string
Table TableName
Columns []*IndexColumn
Options []*IndexOption
FullyParsed bool
}
// DDLAction is an enum for DDL.Action
DDLAction int8
// Load represents a LOAD statement
Load struct {
}
// ParenSelect is a parenthesized SELECT statement.
ParenSelect struct {
Select SelectStatement
}
// Show represents a show statement.
Show struct {
Internal ShowInternal
}
// Use represents a use statement.
Use struct {
DBName TableIdent
}
// Begin represents a Begin statement.
Begin struct{}
// Commit represents a Commit statement.
Commit struct{}
// Rollback represents a Rollback statement.
Rollback struct{}
// SRollback represents a rollback to savepoint statement.
SRollback struct {
Name ColIdent
}
// Savepoint represents a savepoint statement.
Savepoint struct {
Name ColIdent
}
// Release represents a release savepoint statement.
Release struct {
Name ColIdent
}
// Explain represents an EXPLAIN statement
Explain struct {
Type ExplainType
Statement Statement
}
// ExplainType is an enum for Explain.Type
ExplainType int8
// OtherRead represents a DESCRIBE, or EXPLAIN statement.
// It should be used only as an indicator. It does not contain
// the full AST for the statement.
OtherRead struct{}
// OtherAdmin represents a misc statement that relies on ADMIN privileges,
// such as REPAIR, OPTIMIZE, or TRUNCATE statement.
// It should be used only as an indicator. It does not contain
// the full AST for the statement.
OtherAdmin struct{}
)
func (*Union) iStatement() {}
func (*Select) iStatement() {}
func (*Stream) iStatement() {}
func (*VStream) iStatement() {}
func (*Insert) iStatement() {}
func (*Update) iStatement() {}
func (*Delete) iStatement() {}
func (*Set) iStatement() {}
func (*SetTransaction) iStatement() {}
func (*DBDDL) iStatement() {}
func (*DDL) iStatement() {}
func (*Show) iStatement() {}
func (*Use) iStatement() {}
func (*Begin) iStatement() {}
func (*Commit) iStatement() {}
func (*Rollback) iStatement() {}
func (*SRollback) iStatement() {}
func (*Savepoint) iStatement() {}
func (*Release) iStatement() {}
func (*Explain) iStatement() {}
func (*OtherRead) iStatement() {}
func (*OtherAdmin) iStatement() {}
func (*Select) iSelectStatement() {}
func (*Union) iSelectStatement() {}
func (*ParenSelect) iSelectStatement() {}
func (*Load) iStatement() {}
func (*CreateIndex) iStatement() {}
func (*DDL) iDDLStatement() {}
func (*CreateIndex) iDDLStatement() {}
// IsFullyParsed implements the DDLStatement interface
func (*DDL) IsFullyParsed() bool {
return false
}
// IsFullyParsed implements the DDLStatement interface
func (node *CreateIndex) IsFullyParsed() bool {
return node.FullyParsed
}
// GetTable implements the DDLStatement interface
func (node *CreateIndex) GetTable() TableName {
return node.Table
}
// GetTable implements the DDLStatement interface
func (node *DDL) GetTable() TableName {
return node.Table
}
// GetAction implements the DDLStatement interface
func (node *CreateIndex) GetAction() DDLAction {
return AlterDDLAction
}
// GetAction implements the DDLStatement interface
func (node *DDL) GetAction() DDLAction {
return node.Action
}
// AffectedTables returns the list table names affected by the DDLStatement.
func (node *DDL) AffectedTables() TableNames {
if node.Action == RenameDDLAction || node.Action == DropDDLAction {
list := make(TableNames, 0, len(node.FromTables)+len(node.ToTables))
list = append(list, node.FromTables...)
list = append(list, node.ToTables...)
return list
}
return TableNames{node.Table}
}
// AffectedTables implements DDLStatement.
func (node *CreateIndex) AffectedTables() TableNames {
return TableNames{node.Table}
}
// SetTable implements DDLStatement.
func (node *CreateIndex) SetTable(qualifier string, name string) {
node.Table.Qualifier = NewTableIdent(qualifier)
node.Table.Name = NewTableIdent(name)
}
// SetTable implements DDLStatement.
func (node *DDL) SetTable(qualifier string, name string) {
node.Table.Qualifier = NewTableIdent(qualifier)
node.Table.Name = NewTableIdent(name)
}
// ParenSelect can actually not be a top level statement,
// but we have to allow it because it's a requirement
// of SelectStatement.
func (*ParenSelect) iStatement() {}
//ShowInternal will represent all the show statement types.
type ShowInternal interface {
isShowInternal()
SQLNode
}
//ShowLegacy is of ShowInternal type, holds the legacy show ast struct.
type ShowLegacy struct {
Extended string
Type string
OnTable TableName
Table TableName
ShowTablesOpt *ShowTablesOpt
Scope Scope
ShowCollationFilterOpt Expr
}
//ShowColumns is of ShowInternal type, holds the show columns statement.
type ShowColumns struct {
Full string
Table TableName
DbName string
Filter *ShowFilter
}
// ShowTableStatus is of ShowInternal type, holds SHOW TABLE STATUS queries.
type ShowTableStatus struct {
DatabaseName string
Filter *ShowFilter
}
func (*ShowLegacy) isShowInternal() {}
func (*ShowColumns) isShowInternal() {}
func (*ShowTableStatus) isShowInternal() {}
// InsertRows represents the rows for an INSERT statement.
type InsertRows interface {
iInsertRows()
SQLNode
}
func (*Select) iInsertRows() {}
func (*Union) iInsertRows() {}
func (Values) iInsertRows() {}
func (*ParenSelect) iInsertRows() {}
// OptLike works for create table xxx like xxx
type OptLike struct {
LikeTable TableName
}
// PartitionSpec describe partition actions (for alter and create)
type PartitionSpec struct {
Action PartitionSpecAction
Name ColIdent
Definitions []*PartitionDefinition
}
// PartitionSpecAction is an enum for PartitionSpec.Action
type PartitionSpecAction int8
// PartitionDefinition describes a very minimal partition definition
type PartitionDefinition struct {
Name ColIdent
Limit Expr
Maxvalue bool
}
// TableSpec describes the structure of a table from a CREATE TABLE statement
type TableSpec struct {
Columns []*ColumnDefinition
Indexes []*IndexDefinition
Constraints []*ConstraintDefinition
Options string
}
// ColumnDefinition describes a column in a CREATE TABLE statement
type ColumnDefinition struct {
Name ColIdent
// TODO: Should this not be a reference?
Type ColumnType
}
// ColumnType represents a sql type in a CREATE TABLE statement
// All optional fields are nil if not specified
type ColumnType struct {
// The base type string
Type string
// Generic field options.
NotNull bool
Autoincrement bool
Default Expr
OnUpdate Expr
Comment *Literal
// Numeric field options
Length *Literal
Unsigned bool
Zerofill bool
Scale *Literal
// Text field options
Charset string
Collate string
// Enum values
EnumValues []string
// Key specification
KeyOpt ColumnKeyOption
}
// IndexDefinition describes an index in a CREATE TABLE statement
type IndexDefinition struct {
Info *IndexInfo
Columns []*IndexColumn
Options []*IndexOption
}
// IndexInfo describes the name and type of an index in a CREATE TABLE statement
type IndexInfo struct {
Type string
Name ColIdent
Primary bool
Spatial bool
Fulltext bool
Unique bool
}
// VindexSpec defines a vindex for a CREATE VINDEX or DROP VINDEX statement
type VindexSpec struct {
Name ColIdent
Type ColIdent
Params []VindexParam
}
// AutoIncSpec defines and autoincrement value for a ADD AUTO_INCREMENT statement
type AutoIncSpec struct {
Column ColIdent
Sequence TableName
}
// VindexParam defines a key/value parameter for a CREATE VINDEX statement
type VindexParam struct {
Key ColIdent
Val string
}
// ConstraintDefinition describes a constraint in a CREATE TABLE statement
type ConstraintDefinition struct {
Name string
Details ConstraintInfo
}
type (
// ConstraintInfo details a constraint in a CREATE TABLE statement
ConstraintInfo interface {
SQLNode
iConstraintInfo()
}
// ForeignKeyDefinition describes a foreign key in a CREATE TABLE statement
ForeignKeyDefinition struct {
Source Columns
ReferencedTable TableName
ReferencedColumns Columns
OnDelete ReferenceAction
OnUpdate ReferenceAction
}
// CheckConstraintDefinition describes a check constraint in a CREATE TABLE statement
CheckConstraintDefinition struct {
Expr Expr
Enforced bool
}
)
// ShowFilter is show tables filter
type ShowFilter struct {
Like string
Filter Expr
}
// Comments represents a list of comments.
type Comments [][]byte
// SelectExprs represents SELECT expressions.
type SelectExprs []SelectExpr
type (
// SelectExpr represents a SELECT expression.
SelectExpr interface {
iSelectExpr()
SQLNode
}
// StarExpr defines a '*' or 'table.*' expression.
StarExpr struct {
TableName TableName
}
// AliasedExpr defines an aliased SELECT expression.
AliasedExpr struct {
Expr Expr
As ColIdent
}
// Nextval defines the NEXT VALUE expression.
Nextval struct {
Expr Expr
}
)
func (*StarExpr) iSelectExpr() {}
func (*AliasedExpr) iSelectExpr() {}
func (Nextval) iSelectExpr() {}
// Columns represents an insert column list.
type Columns []ColIdent
// Partitions is a type alias for Columns so we can handle printing efficiently
type Partitions Columns
// TableExprs represents a list of table expressions.
type TableExprs []TableExpr
type (
// TableExpr represents a table expression.
TableExpr interface {
iTableExpr()
SQLNode
}
// AliasedTableExpr represents a table expression
// coupled with an optional alias or index hint.
// If As is empty, no alias was used.
AliasedTableExpr struct {
Expr SimpleTableExpr
Partitions Partitions
As TableIdent
Hints *IndexHints
}
// JoinTableExpr represents a TableExpr that's a JOIN operation.
JoinTableExpr struct {
LeftExpr TableExpr
Join JoinType
RightExpr TableExpr
Condition JoinCondition
}
// JoinType represents the type of Join for JoinTableExpr
JoinType int8
// ParenTableExpr represents a parenthesized list of TableExpr.
ParenTableExpr struct {
Exprs TableExprs
}
)
func (*AliasedTableExpr) iTableExpr() {}
func (*ParenTableExpr) iTableExpr() {}
func (*JoinTableExpr) iTableExpr() {}
type (
// SimpleTableExpr represents a simple table expression.
SimpleTableExpr interface {
iSimpleTableExpr()
SQLNode
}
// TableName represents a table name.
// Qualifier, if specified, represents a database or keyspace.
// TableName is a value struct whose fields are case sensitive.
// This means two TableName vars can be compared for equality
// and a TableName can also be used as key in a map.
TableName struct {
Name, Qualifier TableIdent
}
// Subquery represents a subquery used as an value expression.
Subquery struct {
Select SelectStatement
}
// DerivedTable represents a subquery used as a table expression.
DerivedTable struct {
Select SelectStatement
}
)
func (TableName) iSimpleTableExpr() {}
func (*DerivedTable) iSimpleTableExpr() {}
// TableNames is a list of TableName.
type TableNames []TableName
// JoinCondition represents the join conditions (either a ON or USING clause)
// of a JoinTableExpr.
type JoinCondition struct {
On Expr
Using Columns
}
// IndexHints represents a list of index hints.
type IndexHints struct {
Type IndexHintsType
Indexes []ColIdent
}
// IndexHintsType is an enum for IndexHints.Type
type IndexHintsType int8
// Where represents a WHERE or HAVING clause.
type Where struct {
Type WhereType
Expr Expr
}
// WhereType is an enum for Where.Type
type WhereType int8
// *********** Expressions
type (
// Expr represents an expression.
Expr interface {
iExpr()
SQLNode
}
// AndExpr represents an AND expression.
AndExpr struct {
Left, Right Expr
}
// OrExpr represents an OR expression.
OrExpr struct {
Left, Right Expr
}
// XorExpr represents an XOR expression.
XorExpr struct {
Left, Right Expr
}
// NotExpr represents a NOT expression.
NotExpr struct {
Expr Expr
}
// ComparisonExpr represents a two-value comparison expression.
ComparisonExpr struct {
Operator ComparisonExprOperator
Left, Right Expr
Escape Expr
}
// ComparisonExprOperator is an enum for ComparisonExpr.Operator
ComparisonExprOperator int8
// RangeCond represents a BETWEEN or a NOT BETWEEN expression.
RangeCond struct {
Operator RangeCondOperator
Left Expr
From, To Expr
}
// RangeCondOperator is an enum for RangeCond.Operator
RangeCondOperator int8
// IsExpr represents an IS ... or an IS NOT ... expression.
IsExpr struct {
Operator IsExprOperator
Expr Expr
}
// IsExprOperator is an enum for IsExpr.Operator
IsExprOperator int8
// ExistsExpr represents an EXISTS expression.
ExistsExpr struct {
Subquery *Subquery
}
// Literal represents a fixed value.
Literal struct {
Type ValType
Val []byte
}
// Argument represents bindvariable expression
Argument []byte
// NullVal represents a NULL value.
NullVal struct{}
// BoolVal is true or false.
BoolVal bool
// ColName represents a column name.
ColName struct {
// Metadata is not populated by the parser.
// It's a placeholder for analyzers to store
// additional data, typically info about which
// table or column this node references.
Metadata interface{}
Name ColIdent
Qualifier TableName
}
// ColTuple represents a list of column values.
// It can be ValTuple, Subquery, ListArg.
ColTuple interface {
iColTuple()
Expr
}
// ListArg represents a named list argument.
ListArg []byte
// ValTuple represents a tuple of actual values.
ValTuple Exprs
// BinaryExpr represents a binary value expression.
BinaryExpr struct {
Operator BinaryExprOperator
Left, Right Expr
}
// BinaryExprOperator is an enum for BinaryExpr.Operator
BinaryExprOperator int8
// UnaryExpr represents a unary value expression.
UnaryExpr struct {
Operator UnaryExprOperator
Expr Expr
}
// UnaryExprOperator is an enum for UnaryExpr.Operator
UnaryExprOperator int8
// IntervalExpr represents a date-time INTERVAL expression.
IntervalExpr struct {
Expr Expr
Unit string
}
// TimestampFuncExpr represents the function and arguments for TIMESTAMP{ADD,DIFF} functions.
TimestampFuncExpr struct {
Name string
Expr1 Expr
Expr2 Expr
Unit string
}
// CollateExpr represents dynamic collate operator.
CollateExpr struct {
Expr Expr
Charset string
}
// FuncExpr represents a function call.
FuncExpr struct {
Qualifier TableIdent
Name ColIdent
Distinct bool
Exprs SelectExprs
}
// GroupConcatExpr represents a call to GROUP_CONCAT
GroupConcatExpr struct {
Distinct bool
Exprs SelectExprs
OrderBy OrderBy
Separator string
Limit *Limit
}
// ValuesFuncExpr represents a function call.
ValuesFuncExpr struct {
Name *ColName
}
// SubstrExpr represents a call to SubstrExpr(column, value_expression) or SubstrExpr(column, value_expression,value_expression)
// also supported syntax SubstrExpr(column from value_expression for value_expression).
// Additionally to column names, SubstrExpr is also supported for string values, e.g.:
// SubstrExpr('static string value', value_expression, value_expression)
// In this case StrVal will be set instead of Name.
SubstrExpr struct {
Name *ColName
StrVal *Literal
From Expr
To Expr
}
// ConvertExpr represents a call to CONVERT(expr, type)
// or it's equivalent CAST(expr AS type). Both are rewritten to the former.
ConvertExpr struct {
Expr Expr
Type *ConvertType
}
// ConvertUsingExpr represents a call to CONVERT(expr USING charset).
ConvertUsingExpr struct {
Expr Expr
Type string
}
// MatchExpr represents a call to the MATCH function
MatchExpr struct {
Columns SelectExprs
Expr Expr
Option MatchExprOption
}
// MatchExprOption is an enum for MatchExpr.Option
MatchExprOption int8
// CaseExpr represents a CASE expression.
CaseExpr struct {
Expr Expr
Whens []*When
Else Expr
}
// Default represents a DEFAULT expression.
Default struct {
ColName string
}
// When represents a WHEN sub-expression.
When struct {
Cond Expr
Val Expr
}
// CurTimeFuncExpr represents the function and arguments for CURRENT DATE/TIME functions
// supported functions are documented in the grammar
CurTimeFuncExpr struct {
Name ColIdent
Fsp Expr // fractional seconds precision, integer from 0 to 6
}
)
// iExpr ensures that only expressions nodes can be assigned to a Expr
func (*AndExpr) iExpr() {}
func (*OrExpr) iExpr() {}
func (*XorExpr) iExpr() {}
func (*NotExpr) iExpr() {}
func (*ComparisonExpr) iExpr() {}
func (*RangeCond) iExpr() {}
func (*IsExpr) iExpr() {}
func (*ExistsExpr) iExpr() {}
func (*Literal) iExpr() {}
func (Argument) iExpr() {}
func (*NullVal) iExpr() {}
func (BoolVal) iExpr() {}
func (*ColName) iExpr() {}
func (ValTuple) iExpr() {}
func (*Subquery) iExpr() {}
func (ListArg) iExpr() {}
func (*BinaryExpr) iExpr() {}
func (*UnaryExpr) iExpr() {}
func (*IntervalExpr) iExpr() {}
func (*CollateExpr) iExpr() {}
func (*FuncExpr) iExpr() {}
func (*TimestampFuncExpr) iExpr() {}
func (*CurTimeFuncExpr) iExpr() {}
func (*CaseExpr) iExpr() {}
func (*ValuesFuncExpr) iExpr() {}
func (*ConvertExpr) iExpr() {}
func (*SubstrExpr) iExpr() {}
func (*ConvertUsingExpr) iExpr() {}