Documentation
¶
Index ¶
- Constants
- Variables
- func Append(buf *bytes.Buffer, node SQLNode)
- func Backtick(in string) string
- func EncodeValue(buf *bytes.Buffer, value *querypb.BindVariable)
- func ExtractMysqlComment(sql string) (version string, innerSQL string)
- func ExtractSetValues(sql string) (keyValues map[SetKey]interface{}, scope string, err error)
- func FetchBindVar(name string, bindVariables map[string]*querypb.BindVariable) (val *querypb.BindVariable, isList bool, err error)
- func FormatImpossibleQuery(buf *TrackedBuffer, node SQLNode)
- func GetBindvars(stmt Statement) map[string]struct{}
- func IsColName(node Expr) bool
- func IsDML(sql string) bool
- func IsNull(node Expr) bool
- func IsSimpleTuple(node Expr) bool
- func IsValue(node Expr) bool
- func KeywordString(id int) string
- func NewPlanValue(node Expr) (sqltypes.PlanValue, error)
- func Normalize(stmt Statement, bindVars map[string]*querypb.BindVariable, prefix string)
- func Preview(sql string) int
- func RedactSQLQuery(sql string) (string, error)
- func SkipQueryPlanCacheDirective(stmt Statement) bool
- func SplitStatement(blob string) (string, string, error)
- func SplitStatementToPieces(blob string) (pieces []string, err error)
- func StmtType(stmtType int) string
- func String(node SQLNode) string
- func StringIn(str string, values ...string) bool
- func StripLeadingComments(sql string) string
- func Walk(visit Visit, nodes ...SQLNode) error
- type AccountName
- type AccountNames
- type AliasedExpr
- type AliasedTableExpr
- type AndExpr
- type Begin
- type BinaryExpr
- type BoolVal
- type CaseExpr
- type ColIdent
- func (node ColIdent) CompliantName() string
- func (node ColIdent) Equal(in ColIdent) bool
- func (node ColIdent) EqualString(str string) bool
- func (node ColIdent) Format(buf *TrackedBuffer)
- func (node ColIdent) IsEmpty() bool
- func (node ColIdent) Lowered() string
- func (node ColIdent) MarshalJSON() ([]byte, error)
- func (node ColIdent) String() string
- func (node *ColIdent) UnmarshalJSON(b []byte) error
- type ColName
- type ColTuple
- type CollateExpr
- type ColumnDefinition
- type ColumnKeyOption
- type ColumnType
- type Columns
- type CommentDirectives
- type Comments
- type Commit
- type CommonTableExpr
- type CommonTableExprs
- type ComparisonExpr
- type ConstraintDefinition
- type ConvertExpr
- type ConvertType
- type ConvertUsingExpr
- type DBDDL
- type DDL
- type Default
- type Delete
- type DropRole
- type DropUser
- type Encodable
- type Execute
- type ExecuteUsingVars
- type ExistsExpr
- type Expr
- type Exprs
- type FuncExpr
- type Grant
- type GroupBy
- type GroupConcatExpr
- type IndexColumn
- type IndexDefinition
- type IndexHints
- type IndexInfo
- type IndexOption
- type Insert
- type InsertRows
- type InsertValues
- type IntervalExpr
- type IsExpr
- type JSONTableColumn
- type JSONTableColumns
- type JSONTableExpr
- type JSONTableNestedPathColumn
- type JSONTableOrdinalityColumn
- type JSONTablePathColumn
- type JoinCondition
- type JoinTableExpr
- type LengthScaleOption
- type Limit
- type ListArg
- type LockTables
- type MarginComments
- type MatchExpr
- type NodeFormatter
- type NotExpr
- type NullVal
- type OnDup
- type OrExpr
- type Order
- type OrderBy
- type OtherAdmin
- type OtherRead
- type OverClause
- type ParenExpr
- type ParenSelect
- type ParenTableExpr
- type ParsedQuery
- type PartitionDefinition
- type PartitionSpec
- type Partitions
- type Prepare
- type Privilege
- type PrivilegeObject
- type Privileges
- type RangeCond
- type ReferenceDefinition
- type Revoke
- type Rollback
- type SQLNode
- type SQLVal
- type Select
- type SelectExpr
- type SelectExprs
- type SelectIntoVars
- type SelectStatement
- type Set
- type SetExpr
- type SetExprs
- type SetKey
- type Show
- type ShowFilter
- type ShowTablesOpt
- type SimpleTableExpr
- type StarExpr
- type Statement
- type Subquery
- type SubstrExpr
- type TableExpr
- type TableExprs
- type TableIdent
- type TableLock
- type TableLocks
- type TableName
- type TableNames
- type TableSpec
- type Tokenizer
- type TrackedBuffer
- type TriggerDDL
- type TupleEqualityList
- type UnaryExpr
- type Union
- type UnlockTables
- type Update
- type UpdateExpr
- type UpdateExprs
- type Use
- type ValTuple
- type ValType
- type Values
- type ValuesFuncExpr
- type ValuesStatement
- type Visit
- type When
- type Where
- type WindowDefinition
- type WindowDefinitions
- type WindowFrame
- type WindowFrameBound
- type WindowSpec
- type With
Examples ¶
Constants ¶
const ( StmtSelect = iota StmtStream StmtInsert StmtReplace StmtUpdate StmtDelete StmtDDL StmtBegin StmtCommit StmtRollback StmtSet StmtShow StmtUse StmtOther StmtUnknown StmtComment )
These constants are used to identify the SQL statement type.
const ( DistinctStr = "distinct " StraightJoinHint = "straight_join " )
Select.Distinct
const ( ForUpdateStr = " for update" NoWaitStr = " nowait" SkipLockedStr = " skip locked" )
Select.Lock
const ( SQLCacheStr = "sql_cache " SQLNoCacheStr = "sql_no_cache " )
Select.Cache
const ( RowsStr = "rows" RangeStr = "range" UnboundedPrecedingStr = "unbounded preceding" UnboundedFollowingStr = "unbounded following" CurrentRowStr = "current row" ExprPrecedingStr = "preceding" ExprFollowingStr = "following" )
const ( UnionStr = "union" UnionAllStr = "union all" UnionDistinctStr = "union distinct" IntersectStr = "intersect" IntersectAllStr = "intersect all" IntersectDistinctStr = "intersect distinct" ExceptStr = "except" ExceptAllStr = "except all" ExceptDistinctStr = "except distinct" )
Union.Type
const ( InsertStr = "insert" ReplaceStr = "replace" )
DDL strings.
const ( SessionStr = "session" GlobalStr = "global" )
Set.Scope or Show.Scope
const ( CreateStr = "create" AlterStr = "alter" DropStr = "drop" RenameStr = "rename" TruncateStr = "truncate" )
DDL strings.
const ( ReorganizeStr = "reorganize partition" PartitionByRangeStr = "partition by range" PartitionByHashStr = "partition by hash" AddPartitionStr = "add partition" DropPartitionStr = "drop partition" DiscardPartitionTablespaceStr = "discard partition" ImportPartitionTablespaceStr = "import partition" TruncatePartitionStr = "truncate partition" CoalescePartitionStr = "coalesce partition" ExchangePartitionStr = "exchange partition" AnalyzePartitionStr = "analyze partition" CheckPartitionStr = "check partition" OptimizePartitionStr = "optimize partition" RebuildPartitionStr = "rebuild partition" RepairPartitionStr = "repair partition" RemovePartitioningStr = "remove partitioning" WithValidationStr = "with validation" WithoutValidationStr = "without validation" )
Partition strings
const ( JoinStr = "join" StraightJoinStr = "straight_join" LeftJoinStr = "left join" RightJoinStr = "right join" NaturalJoinStr = "natural join" NaturalLeftJoinStr = "natural left join" NaturalRightJoinStr = "natural right join" )
JoinTableExpr.Join
const ( UseStr = "use " IgnoreStr = "ignore " ForceStr = "force " )
Index hints.
const ( WhereStr = "where" HavingStr = "having" )
Where.Type
const ( EqualStr = "=" LessThanStr = "<" GreaterThanStr = ">" LessEqualStr = "<=" GreaterEqualStr = ">=" NotEqualStr = "!=" NullSafeEqualStr = "<=>" InStr = "in" NotInStr = "not in" LikeStr = "like" NotLikeStr = "not like" RegexpStr = "regexp" NotRegexpStr = "not regexp" MemberOfStr = "member of" NotMemberOfStr = "not member of" JSONExtractOp = "->" JSONUnquoteExtractOp = "->>" )
ComparisonExpr.Operator
const ( BetweenStr = "between" NotBetweenStr = "not between" )
RangeCond.Operator
const ( IsNullStr = "is null" IsNotNullStr = "is not null" IsTrueStr = "is true" IsNotTrueStr = "is not true" IsFalseStr = "is false" IsNotFalseStr = "is not false" )
IsExpr.Operator
const ( StrVal = ValType(iota) IntVal FloatVal HexNum HexVal ValArg BitVal BoolSQLVal )
These are the possible Valtype values. HexNum represents a 0x... value. It cannot be treated as a simple value because it can be interpreted differently depending on the context.
const ( BitAndStr = "&" BitOrStr = "|" BitXorStr = "^" PlusStr = "+" MinusStr = "-" MultStr = "*" DivStr = "/" IntDivStr = "div" ModStr = "%" ShiftLeftStr = "<<" ShiftRightStr = ">>" AssignStr = ":=" )
BinaryExpr.Operator
const ( UPlusStr = "+" UMinusStr = "-" TildaStr = "~" BangStr = "!" BinaryStr = "binary " UBinaryStr = "_binary " )
UnaryExpr.Operator
const ( BooleanModeStr = " in boolean mode" NaturalLanguageModeStr = " in natural language mode" NaturalLanguageModeWithQueryExpansionStr = " in natural language mode with query expansion" QueryExpansionStr = " with query expansion" )
MatchExpr.Option
const ( AscScr = "asc" DescScr = "desc" )
Order.Direction
const ( // DirectiveMultiShardAutocommit is the query comment directive to allow // single round trip autocommit with a multi-shard statement. DirectiveMultiShardAutocommit = "MULTI_SHARD_AUTOCOMMIT" // DirectiveSkipQueryPlanCache skips query plan cache when set. DirectiveSkipQueryPlanCache = "SKIP_QUERY_PLAN_CACHE" // DirectiveQueryTimeout sets a query timeout in vtgate. Only supported for SELECTS. DirectiveQueryTimeout = "QUERY_TIMEOUT_MS" )
const ACTION = 57533
const ADD = 57447
const AFTER = 57448
const AGAINST = 57651
const ALGORITHM = 57449
const ALL = 57363
const ALTER = 57443
const ALWAYS = 57589
const ANALYZE = 57446
const AND = 57413
const APPROXNUM = 57584
const AS = 57365
const ASC = 57367
const ASSIGN = 57441
const AUTO_INCREMENT = 57583
const AVG_ROW_LENGTH = 57470
const BEGIN = 57535
const BETWEEN = 57415
const BIGINT = 57546
const BINARY = 57436
const BINLOG = 57599
const BIT = 57540
const BIT_LITERAL = 57407
const BLOB = 57567
const BOOL = 57559
const BOOLEAN = 57652
const BY = 57359
const CASCADE = 57531
const CASE = 57416
const CAST = 57645
const CHANGE = 57499
const CHAR = 57557
const CHARACTER = 57560
const CHARSET = 57620
const CHECK = 57464
const CHECKSUM = 57471
const COALESCE = 57511
const COLLATE = 57435
const COLLATION = 57600
const COLUMN = 57462
const COLUMNS = 57527
const COMMENT = 57405
const COMMENT_KEYWORD = 57406
const COMMIT = 57538
const COMMITTED = 57629
const COMPACT = 57488
const COMPRESSED = 57486
const COMPRESSION = 57472
const CONNECTION = 57473
const CONSTRAINT = 57463
const CONVERT = 57644
const CREATE = 57442
const CROSS = 57392
const CURRENT = 57664
const CURRENT_DATE = 57636
const CURRENT_TIME = 57637
const CURRENT_TIMESTAMP = 57634
const (
CharacterSetStr = " character set"
)
this string is "character set" and this comment is required
const DATA = 57492
const DATABASE = 57635
const DATABASES = 57594
const DATE = 57493
const DATETIME = 57555
const DECIMAL = 57551
const DEFAULT = 57372
const DELAY_KEY_WRITE = 57474
const DELETE = 57353
const DESC = 57368
const DESCRIBE = 57490
const DIRECTORY = 57494
const DISCARD = 57508
const DISTINCT = 57364
const DIV = 57432
const DOUBLE = 57549
const DROP = 57444
const DUPLICATE = 57370
const DYNAMIC = 57484
const ELSE = 57419
const ENCRYPTION = 57475
const END = 57420
const ENGINE = 57601
const ENGINES = 57602
const ENUM = 57572
const ERRORS = 57603
const ESCAPE = 57495
const EVENTS = 57604
const EXCEPT = 57348
const EXCHANGE = 57512
const EXECUTE = 57525
const EXISTS = 57366
const EXPANSION = 57657
const EXPLAIN = 57491
const EXTENDED = 57596
const FALSE = 57410
const FIRST = 57450
const FIXED = 57485
const FLOAT = 57402
const FLOAT_TYPE = 57550
const FOLLOWING = 57663
const FOR = 57362
const FORCE = 57395
const FOREIGN = 57467
const FROM = 57354
const FULL = 57597
const FULLTEXT = 57466
const FUNCTION = 57605
const GE = 57422
const GENERATED = 57588
const GEOMETRY = 57573
const GEOMETRYCOLLECTION = 57577
const GLOBAL = 57621
const GRANT = 57520
const GRANTS = 57606
const GROUP = 57356
const GROUP_CONCAT = 57648
const HAVING = 57357
const HEX = 57399
const HEXNUM = 57403
const ID = 57398
const IF = 57459
const IGNORE = 57458
const IMPORT = 57509
const IN = 57429
const INDEX = 57455
const INDEXES = 57607
const INNER = 57390
const INSERT = 57351
const INSERT_METHOD = 57476
const INT = 57544
const INTEGER = 57545
const INTEGRAL = 57401
const INTERSECT = 57349
const INTERVAL = 57438
const INTNUM = 57547
const INTO = 57369
const INVISIBLE = 57593
const IS = 57425
const ISOLATION = 57623
const JOIN = 57386
const JSON = 57571
const JSON_EXTRACT_OP = 57439
const JSON_TABLE = 57526
const JSON_UNQUOTE_EXTRACT_OP = 57440
const KEY = 57371
const KEYS = 57375
const KEY_BLOCK_SIZE = 57469
const LANGUAGE = 57653
const LAST_INSERT_ID = 57377
const LE = 57421
const LEFT = 57388
const LESS = 57504
const LEVEL = 57624
const LEX_ERROR = 57346
const LIKE = 57426
const LIMIT = 57360
const LINESTRING = 57575
const LOCAL = 57632
const LOCALTIME = 57638
const LOCALTIMESTAMP = 57639
const LOCK = 57374
const LOCKED = 57383
const LONGBLOB = 57570
const LONGTEXT = 57566
const LOW_PRIORITY = 57633
const MASTER = 57608
const MATCH = 57650
const MAXVALUE = 57501
const MAX_ROWS = 57477
const MEDIUMBLOB = 57569
const MEDIUMINT = 57543
const MEDIUMTEXT = 57565
const MEMBER = 57428
const MIN_ROWS = 57478
const MOD = 57433
const MODE = 57380
const MODIFY = 57500
const MULTILINESTRING = 57579
const MULTIPOINT = 57578
const MULTIPOLYGON = 57580
const NAMES = 57619
const NATURAL = 57393
const NCHAR = 57562
const NE = 57423
const NESTED = 57530
const NO = 57534
const NOT = 57414
const NOWAIT = 57381
const NULL = 57408
const NULLX = 57582
const NULL_SAFE_EQUAL = 57424
const NUMERIC = 57552
const OF = 57411
const OFFSET = 57361
const ON = 57396
const ONLY = 57627
const OPEN = 57609
const OPTIMIZE = 57497
const OPTION = 57522
const OR = 57412
const ORDER = 57358
const ORDINALITY = 57529
const OUTER = 57391
const OVER = 57658
const PACK_KEYS = 57479
const PARTITION = 57502
const PARTITIONING = 57517
const PASSWORD = 57480
const PATH = 57528
const PLUGINS = 57610
const POINT = 57574
const POLYGON = 57576
const PRECEDING = 57662
const PREPARE = 57524
const PRIMARY = 57461
const PRIVILEGES = 57611
const PROCEDURE = 57506
const PROCESSLIST = 57598
const PROFILE = 57612
const PROFILES = 57613
const QUERY = 57656
const RANGE = 57661
const READ = 57625
const REAL = 57548
const REBUILD = 57513
const RECURSIVE = 57655
const REDUNDANT = 57487
const REFERENCES = 57468
const REGEXP = 57427
const RELAYLOG = 57614
const REMOVE = 57516
const RENAME = 57445
const REORGANIZE = 57503
const REPAIR = 57496
const REPEATABLE = 57628
const REPLACE = 57643
const RESTRICT = 57532
const REVOKE = 57521
const RIGHT = 57389
const ROLLBACK = 57539
const ROW = 57665
const ROWS = 57660
const ROW_FORMAT = 57451
const SCHEMA = 57452
const SELECT = 57350
const SEPARATOR = 57649
const SERIALIZABLE = 57631
const SESSION = 57622
const SET = 57373
const SHARE = 57379
const SHIFT_LEFT = 57430
const SHIFT_RIGHT = 57431
const SHOW = 57489
const SIGNED = 57585
const SKIP = 57382
const SLAVE = 57615
const SMALLINT = 57542
const SPATIAL = 57465
const SQL_CACHE = 57385
const SQL_NO_CACHE = 57384
const SRID = 57581
const START = 57536
const STATS_AUTO_RECALC = 57481
const STATS_PERSISTENT = 57482
const STATS_SAMPLE_PAGES = 57483
const STATUS = 57518
const STORAGE = 57616
const STORED = 57590
const STRAIGHT_JOIN = 57387
const STRING = 57400
const SUBSTR = 57646
const SUBSTRING = 57647
const TABLE = 57453
const TABLES = 57595
const TABLESPACE = 57510
const TEMPORARY = 57454
const TEXT = 57563
const THAN = 57505
const THEN = 57418
const TIME = 57553
const TIMESTAMP = 57554
const TINYBLOB = 57568
const TINYINT = 57541
const TINYTEXT = 57564
const TO = 57457
const TRANSACTION = 57537
const TRIGGER = 57507
const TRIGGERS = 57617
const TRUE = 57409
const TRUNCATE = 57498
const UNARY = 57434
const UNBOUNDED = 57666
const UNCOMMITTED = 57630
const UNDERSCORE_BINARY = 57437
const UNION = 57347
const UNIQUE = 57460
const UNLOCK = 57523
const UNSIGNED = 57586
const UNUSED = 57667
const UPDATE = 57352
const USE = 57394
const USING = 57397
const UTC_DATE = 57640
const UTC_TIME = 57641
const UTC_TIMESTAMP = 57642
const VALIDATION = 57514
const VALUE = 57378
const VALUES = 57376
const VALUE_ARG = 57404
const VARBINARY = 57561
const VARCHAR = 57558
const VARIABLES = 57519
const VIEW = 57456
const VIRTUAL = 57591
const VISIBLE = 57592
const WARNINGS = 57618
const WHEN = 57417
const WHERE = 57355
const WINDOW = 57659
const WITH = 57654
const WITHOUT = 57515
const WRITE = 57626
const YEAR = 57556
const ZEROFILL = 57587
Variables ¶
var Aggregates = map[string]bool{ "avg": true, "bit_and": true, "bit_or": true, "bit_xor": true, "count": true, "group_concat": true, "max": true, "min": true, "std": true, "stddev_pop": true, "stddev_samp": true, "stddev": true, "sum": true, "var_pop": true, "var_samp": true, "variance": true, }
Aggregates is a map of all aggregate functions.
Functions ¶
func EncodeValue ¶
func EncodeValue(buf *bytes.Buffer, value *querypb.BindVariable)
EncodeValue encodes one bind variable value into the query.
func ExtractMysqlComment ¶
ExtractMysqlComment extracts the version and SQL from a comment-only query such as /*!50708 sql here */
func ExtractSetValues ¶
ExtractSetValues returns a map of key-value pairs if the query is a SET statement. Values can be bool, int64 or string. Since set variable names are case insensitive, all keys are returned as lower case.
func FetchBindVar ¶
func FetchBindVar(name string, bindVariables map[string]*querypb.BindVariable) (val *querypb.BindVariable, isList bool, err error)
FetchBindVar resolves the bind variable by fetching it from bindVariables.
func FormatImpossibleQuery ¶
func FormatImpossibleQuery(buf *TrackedBuffer, node SQLNode)
FormatImpossibleQuery creates an impossible query in a TrackedBuffer. An impossible query is a modified version of a query where all selects have where clauses that are impossible for mysql to resolve. This is used in the vtgate and vttablet:
- In the vtgate it's used for joins: if the first query returns no result, then vtgate uses the impossible query just to fetch field info from vttablet - In the vttablet, it's just an optimization: the field info is fetched once form MySQL, cached and reused for subsequent queries
func GetBindvars ¶
GetBindvars returns a map of the bind vars referenced in the statement. TODO(sougou); This function gets called again from vtgate/planbuilder. Ideally, this should be done only once.
func IsSimpleTuple ¶
IsSimpleTuple returns true if the Expr is a ValTuple that contains simple values or if it's a list arg.
func IsValue ¶
IsValue returns true if the Expr is a string, integral or value arg. NULL is not considered to be a value.
func KeywordString ¶
KeywordString returns the string corresponding to the given keyword
func NewPlanValue ¶
NewPlanValue builds a sqltypes.PlanValue from an Expr.
func Normalize ¶
func Normalize(stmt Statement, bindVars map[string]*querypb.BindVariable, prefix string)
Normalize changes the statement to use bind values, and updates the bind vars to those values. The supplied prefix is used to generate the bind var names. The function ensures that there are no collisions with existing bind vars. Within Select constructs, bind vars are deduped. This allows us to identify vindex equality. Otherwise, every value is treated as distinct.
func Preview ¶
Preview analyzes the beginning of the query using a simpler and faster textual comparison to identify the statement type.
func RedactSQLQuery ¶
RedactSQLQuery returns a sql string with the params stripped out for display
func SkipQueryPlanCacheDirective ¶
SkipQueryPlanCacheDirective returns true if skip query plan cache directive is set to true in query.
func SplitStatement ¶
SplitStatement returns the first sql statement up to either a ; or EOF and the remainder from the given buffer
func SplitStatementToPieces ¶
SplitStatementToPieces split raw sql statement that may have multi sql pieces to sql pieces returns the sql pieces blob contains; or error if sql cannot be parsed
func StringIn ¶
StringIn is a convenience function that returns true if str matches any of the values.
func StripLeadingComments ¶
StripLeadingComments trims the SQL string and removes any leading comments
Types ¶
type AccountName ¶ added in v0.1.0
AccountName is a user target in GRANT/REVOKE.
func (*AccountName) Format ¶ added in v0.1.0
func (node *AccountName) Format(buf *TrackedBuffer)
Format formats the node.
type AccountNames ¶ added in v0.1.0
type AccountNames []*AccountName
AccountNames represents a list of GRANT/REVOKE targets.
func (AccountNames) Format ¶ added in v0.1.0
func (node AccountNames) Format(buf *TrackedBuffer)
Format formats the node.
type AliasedExpr ¶
AliasedExpr defines an aliased SELECT expression.
func (*AliasedExpr) Format ¶
func (node *AliasedExpr) Format(buf *TrackedBuffer)
Format formats the node.
type AliasedTableExpr ¶
type AliasedTableExpr struct {
Expr SimpleTableExpr
Partitions Partitions
As TableIdent
Hints *IndexHints
}
AliasedTableExpr represents a table expression coupled with an optional alias or index hint. If As is empty, no alias was used.
func (*AliasedTableExpr) Format ¶
func (node *AliasedTableExpr) Format(buf *TrackedBuffer)
Format formats the node.
func (*AliasedTableExpr) RemoveHints ¶
func (node *AliasedTableExpr) RemoveHints() *AliasedTableExpr
RemoveHints returns a new AliasedTableExpr with the hints removed.
type BinaryExpr ¶
BinaryExpr represents a binary value expression.
func (*BinaryExpr) Format ¶
func (node *BinaryExpr) Format(buf *TrackedBuffer)
Format formats the node.
type ColIdent ¶
type ColIdent struct {
// contains filtered or unexported fields
}
ColIdent is a case insensitive SQL identifier. It will be escaped with backquotes if necessary.
func (ColIdent) CompliantName ¶
CompliantName returns a compliant id name that can be used for a bind var.
func (ColIdent) EqualString ¶
EqualString performs a case-insensitive compare with str.
func (ColIdent) Lowered ¶
Lowered returns a lower-cased column name. This function should generally be used only for optimizing comparisons.
func (ColIdent) MarshalJSON ¶
MarshalJSON marshals into JSON.
func (ColIdent) String ¶
String returns the unescaped column name. It must not be used for SQL generation. Use sqlparser.String instead. The Stringer conformance is for usage in templates.
func (*ColIdent) UnmarshalJSON ¶
UnmarshalJSON unmarshals from JSON.
type ColName ¶
type 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
}
ColName represents a column name.
type ColTuple ¶
type ColTuple interface {
Expr
// contains filtered or unexported methods
}
ColTuple represents a list of column values. It can be ValTuple, Subquery, ListArg.
type CollateExpr ¶
CollateExpr represents dynamic collate operator.
func (*CollateExpr) Format ¶
func (node *CollateExpr) Format(buf *TrackedBuffer)
Format formats the node.
type ColumnDefinition ¶
type ColumnDefinition struct {
Name ColIdent
Type ColumnType
}
ColumnDefinition describes a column in a CREATE TABLE statement
func (*ColumnDefinition) Format ¶
func (col *ColumnDefinition) Format(buf *TrackedBuffer)
Format formats the node.
type ColumnKeyOption ¶
type ColumnKeyOption int
ColumnKeyOption indicates whether or not the given column is defined as an index element and contains the type of the option
type ColumnType ¶
type ColumnType struct {
// The base type string
Type string
// Generic field options.
NotNull BoolVal
Autoincrement BoolVal
// Visibility is either "visible" or "invisible" when specified.
Visibility string
Default Expr
OnUpdate *SQLVal
Comment *SQLVal
GeneratedExpr Expr
// GeneratedStorage is either "virtual" or "stored" when specified.
GeneratedStorage string
// Numeric field options
Length *SQLVal
Unsigned BoolVal
Zerofill BoolVal
Scale *SQLVal
// SRID is an optional spatial reference identifier for spatial column types.
SRID *SQLVal
// Text field options
Charset string
Collate string
// Enum values
EnumValues []string
// Key specification
KeyOpt ColumnKeyOption
// Inline CHECK constraints for column-level checks.
Checks []*ConstraintDefinition
// Inline foreign key reference definition for column-level REFERENCES.
Reference *ReferenceDefinition
}
ColumnType represents a sql type in a CREATE TABLE statement All optional fields are nil if not specified
func (*ColumnType) DescribeType ¶
func (ct *ColumnType) DescribeType() string
DescribeType returns the abbreviated type information as required for describe table
func (*ColumnType) Format ¶
func (ct *ColumnType) Format(buf *TrackedBuffer)
Format returns a canonical string representation of the type and all relevant options
func (*ColumnType) SQLType ¶
func (ct *ColumnType) SQLType() querypb.Type
SQLType returns the sqltypes type code for the given column
type Columns ¶
type Columns []ColIdent
Columns represents an insert column list.
func (Columns) FindColumn ¶
FindColumn finds a column in the column list, returning the index if it exists or -1 otherwise
type CommentDirectives ¶
type CommentDirectives map[string]interface{}
CommentDirectives is the parsed representation for execution directives conveyed in query comments
func ExtractCommentDirectives ¶
func ExtractCommentDirectives(comments Comments) CommentDirectives
ExtractCommentDirectives parses the comment list for any execution directives of the form:
/*vt+ OPTION_ONE=1 OPTION_TWO OPTION_THREE=abcd */
It returns the map of the directive values or nil if there aren't any.
func (CommentDirectives) IsSet ¶
func (d CommentDirectives) IsSet(key string) bool
IsSet checks the directive map for the named directive and returns true if the directive is set and has a true/false or 0/1 value
type CommonTableExpr ¶ added in v0.1.0
type CommonTableExpr struct {
ID TableIdent
Columns Columns
Subquery *Subquery
}
CommonTableExpr represents one common table expression.
func (*CommonTableExpr) Format ¶ added in v0.1.0
func (node *CommonTableExpr) Format(buf *TrackedBuffer)
Format formats the node.
type CommonTableExprs ¶ added in v0.1.0
type CommonTableExprs []*CommonTableExpr
CommonTableExprs is a list of common table expressions.
func (CommonTableExprs) Format ¶ added in v0.1.0
func (node CommonTableExprs) Format(buf *TrackedBuffer)
Format formats the node.
type ComparisonExpr ¶
ComparisonExpr represents a two-value comparison expression.
func (*ComparisonExpr) Format ¶
func (node *ComparisonExpr) Format(buf *TrackedBuffer)
Format formats the node.
type ConstraintDefinition ¶ added in v0.1.0
type ConstraintDefinition struct {
Name ColIdent
Expr Expr
ForeignKeyColumns Columns
ReferencedTable TableName
ReferencedColumns Columns
OnDeleteAction string
OnUpdateAction string
}
ConstraintDefinition describes a table constraint in a CREATE TABLE statement.
func (*ConstraintDefinition) Format ¶ added in v0.1.0
func (cd *ConstraintDefinition) Format(buf *TrackedBuffer)
Format formats the node.
type ConvertExpr ¶
type ConvertExpr struct {
Expr Expr
Type *ConvertType
}
ConvertExpr represents a call to CONVERT(expr, type) or it's equivalent CAST(expr AS type). Both are rewritten to the former.
func (*ConvertExpr) Format ¶
func (node *ConvertExpr) Format(buf *TrackedBuffer)
Format formats the node.
type ConvertType ¶
ConvertType represents the type in call to CONVERT(expr, type)
func (*ConvertType) Format ¶
func (node *ConvertType) Format(buf *TrackedBuffer)
Format formats the node.
type ConvertUsingExpr ¶
ConvertUsingExpr represents a call to CONVERT(expr USING charset).
func (*ConvertUsingExpr) Format ¶
func (node *ConvertUsingExpr) Format(buf *TrackedBuffer)
Format formats the node.
type DDL ¶
type DDL struct {
Action string
Temporary bool
IfNotExists bool
Table TableName
Tables TableNames
NewName TableName
IfExists bool
TableSpec *TableSpec
LikeTable TableName
OptSelect SelectStatement
PartitionSpec *PartitionSpec
AlterConstraint *ConstraintDefinition
AlterDropForeignKey ColIdent
AlterIndex *IndexDefinition
}
DDL represents a CREATE, ALTER, DROP, RENAME or TRUNCATE statement. Table is set for AlterStr, DropStr, RenameStr, TruncateStr NewName is set for AlterStr, CreateStr, RenameStr. Temporary is true for CREATE TEMPORARY TABLE statements. IfNotExists is true for CREATE TABLE IF NOT EXISTS statements. LikeTable is set for CREATE TABLE ... LIKE statements. OptSelect is set for CREATE TABLE ... AS SELECT statements. TableSpec is set for CREATE TABLE statements, and ALTER TABLE ... ADD (...) statements. AlterConstraint is set for ALTER TABLE ... ADD [CONSTRAINT name] CHECK (...) and ALTER TABLE ... ADD [CONSTRAINT name] FOREIGN KEY (...) REFERENCES ... statements. AlterDropForeignKey is set for ALTER TABLE ... DROP FOREIGN KEY <name> statements. AlterIndex is set for ALTER TABLE ... ADD UNIQUE [KEY|INDEX] [name] (...) statements.
type Delete ¶
type Delete struct {
With *With
Comments Comments
Targets TableNames
TableExprs TableExprs
Partitions Partitions
Where *Where
OrderBy OrderBy
Limit *Limit
}
Delete represents a DELETE statement. If you add fields here, consider adding them to calls to validateSubquerySamePlan.
type DropRole ¶ added in v0.1.0
type DropRole struct {
IfExists bool
Roles AccountNames
}
DropRole represents a DROP ROLE statement.
func (*DropRole) Format ¶ added in v0.1.0
func (node *DropRole) Format(buf *TrackedBuffer)
Format formats the node.
type DropUser ¶ added in v0.1.0
type DropUser struct {
IfExists bool
Users AccountNames
}
DropUser represents a DROP USER statement.
func (*DropUser) Format ¶ added in v0.1.0
func (node *DropUser) Format(buf *TrackedBuffer)
Format formats the node.
type Execute ¶ added in v0.1.0
type Execute struct {
Name TableIdent
UsingVars ExecuteUsingVars
}
Execute represents an EXECUTE statement.
func (*Execute) Format ¶ added in v0.1.0
func (node *Execute) Format(buf *TrackedBuffer)
Format formats the node.
type ExecuteUsingVars ¶ added in v0.1.0
type ExecuteUsingVars []ColIdent
ExecuteUsingVars represents EXECUTE ... USING variable list.
func (ExecuteUsingVars) Format ¶ added in v0.1.0
func (node ExecuteUsingVars) Format(buf *TrackedBuffer)
Format formats the node.
type ExistsExpr ¶
type ExistsExpr struct {
Subquery *Subquery
}
ExistsExpr represents an EXISTS expression.
func (*ExistsExpr) Format ¶
func (node *ExistsExpr) Format(buf *TrackedBuffer)
Format formats the node.
type Expr ¶
type Expr interface {
SQLNode
// contains filtered or unexported methods
}
Expr represents an expression.
func ExprFromValue ¶
ExprFromValue converts the given Value into an Expr or returns an error.
func ReplaceExpr ¶
ReplaceExpr finds the from expression from root and replaces it with to. If from matches root, then to is returned.
type Exprs ¶
type Exprs []Expr
Exprs represents a list of value expressions. It's not a valid expression because it's not parenthesized.
type FuncExpr ¶
type FuncExpr struct {
Qualifier TableIdent
Name ColIdent
Distinct bool
Exprs SelectExprs
Over *OverClause
}
FuncExpr represents a function call.
func (*FuncExpr) IsAggregate ¶
IsAggregate returns true if the function is an aggregate.
type Grant ¶ added in v0.1.0
type Grant struct {
Privileges Privileges
PrivilegeObject *PrivilegeObject
Targets AccountNames
WithGrantOption bool
}
Grant represents a GRANT statement.
Supported syntax is intentionally minimal: - GRANT <privileges> ON *.*|db.*|db.table TO <user targets> [WITH GRANT OPTION]
func (*Grant) Format ¶ added in v0.1.0
func (node *Grant) Format(buf *TrackedBuffer)
Format formats the node.
type GroupConcatExpr ¶
type GroupConcatExpr struct {
Distinct string
Exprs SelectExprs
OrderBy OrderBy
Separator string
Over *OverClause
}
GroupConcatExpr represents a call to GROUP_CONCAT
func (*GroupConcatExpr) Format ¶
func (node *GroupConcatExpr) Format(buf *TrackedBuffer)
Format formats the node
type IndexColumn ¶
IndexColumn describes a column in an index definition with optional length
type IndexDefinition ¶
type IndexDefinition struct {
Info *IndexInfo
Columns []*IndexColumn
Options []*IndexOption
}
IndexDefinition describes an index in a CREATE TABLE statement
func (*IndexDefinition) Format ¶
func (idx *IndexDefinition) Format(buf *TrackedBuffer)
Format formats the node.
type IndexHints ¶
IndexHints represents a list of index hints.
func (*IndexHints) Format ¶
func (node *IndexHints) Format(buf *TrackedBuffer)
Format formats the node.
type IndexOption ¶
IndexOption is used for trailing options for indexes: COMMENT, KEY_BLOCK_SIZE, USING
type Insert ¶
type Insert struct {
With *With
Action string
Comments Comments
Ignore string
Table TableName
Partitions Partitions
Columns Columns
Rows InsertRows
OnDup OnDup
}
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. If you add fields here, consider adding them to calls to validateSubquerySamePlan.
type InsertRows ¶
type InsertRows interface {
SQLNode
// contains filtered or unexported methods
}
InsertRows represents the rows for an INSERT statement.
type InsertValues ¶
InsertValues is a custom SQL encoder for the values of an insert statement.
func (InsertValues) EncodeSQL ¶
func (iv InsertValues) EncodeSQL(buf *bytes.Buffer)
EncodeSQL performs the SQL encoding for InsertValues.
type IntervalExpr ¶
IntervalExpr represents a date-time INTERVAL expression.
func (*IntervalExpr) Format ¶
func (node *IntervalExpr) Format(buf *TrackedBuffer)
Format formats the node.
type JSONTableColumn ¶ added in v0.1.0
type JSONTableColumn interface {
SQLNode
// contains filtered or unexported methods
}
JSONTableColumn represents a JSON_TABLE COLUMNS(...) entry.
type JSONTableColumns ¶ added in v0.1.0
type JSONTableColumns []JSONTableColumn
JSONTableColumns represents the list of JSON_TABLE column definitions.
func (JSONTableColumns) Format ¶ added in v0.1.0
func (node JSONTableColumns) Format(buf *TrackedBuffer)
Format formats the node.
type JSONTableExpr ¶ added in v0.1.0
type JSONTableExpr struct {
Expr Expr
Path *SQLVal
Columns JSONTableColumns
}
JSONTableExpr represents a JSON_TABLE table-valued function in FROM clauses. Supported column forms are intentionally limited to: - name FOR ORDINALITY - name <type> PATH '<jsonpath>' - name <type> EXISTS PATH '<jsonpath>' - NESTED PATH '<jsonpath>' COLUMNS (...)
func (*JSONTableExpr) Format ¶ added in v0.1.0
func (node *JSONTableExpr) Format(buf *TrackedBuffer)
Format formats the node.
type JSONTableNestedPathColumn ¶ added in v0.1.0
type JSONTableNestedPathColumn struct {
Path *SQLVal
Columns JSONTableColumns
}
JSONTableNestedPathColumn represents `NESTED PATH ... COLUMNS (...)`.
func (*JSONTableNestedPathColumn) Format ¶ added in v0.1.0
func (node *JSONTableNestedPathColumn) Format(buf *TrackedBuffer)
Format formats the node.
type JSONTableOrdinalityColumn ¶ added in v0.1.0
type JSONTableOrdinalityColumn struct {
Name ColIdent
}
JSONTableOrdinalityColumn represents `name FOR ORDINALITY`.
func (*JSONTableOrdinalityColumn) Format ¶ added in v0.1.0
func (node *JSONTableOrdinalityColumn) Format(buf *TrackedBuffer)
Format formats the node.
type JSONTablePathColumn ¶ added in v0.1.0
type JSONTablePathColumn struct {
Name ColIdent
Type ColumnType
Exists bool
Path *SQLVal
}
JSONTablePathColumn represents typed PATH and EXISTS PATH columns.
func (*JSONTablePathColumn) Format ¶ added in v0.1.0
func (node *JSONTablePathColumn) Format(buf *TrackedBuffer)
Format formats the node.
type JoinCondition ¶
JoinCondition represents the join conditions (either a ON or USING clause) of a JoinTableExpr.
func (JoinCondition) Format ¶
func (node JoinCondition) Format(buf *TrackedBuffer)
Format formats the node.
type JoinTableExpr ¶
type JoinTableExpr struct {
LeftExpr TableExpr
Join string
RightExpr TableExpr
Condition JoinCondition
}
JoinTableExpr represents a TableExpr that's a JOIN operation.
func (*JoinTableExpr) Format ¶
func (node *JoinTableExpr) Format(buf *TrackedBuffer)
Format formats the node.
type LengthScaleOption ¶
LengthScaleOption is used for types that have an optional length and scale
type LockTables ¶ added in v0.1.0
type LockTables struct {
Tables TableLocks
}
LockTables represents a LOCK TABLE[S] statement.
func (*LockTables) Format ¶ added in v0.1.0
func (node *LockTables) Format(buf *TrackedBuffer)
Format formats the node.
type MarginComments ¶
MarginComments holds the leading and trailing comments that surround a query.
func SplitMarginComments ¶
func SplitMarginComments(sql string) (query string, comments MarginComments)
SplitMarginComments pulls out any leading or trailing comments from a raw sql query. This function also trims leading (if there's a comment) and trailing whitespace.
type MatchExpr ¶
type MatchExpr struct {
Columns SelectExprs
Expr Expr
Option string
}
MatchExpr represents a call to the MATCH function
func (*MatchExpr) Format ¶
func (node *MatchExpr) Format(buf *TrackedBuffer)
Format formats the node
type NodeFormatter ¶
type NodeFormatter func(buf *TrackedBuffer, node SQLNode)
NodeFormatter defines the signature of a custom node formatter function that can be given to TrackedBuffer for code generation.
type OtherAdmin ¶
type OtherAdmin 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.
func (*OtherAdmin) Format ¶
func (node *OtherAdmin) Format(buf *TrackedBuffer)
Format formats the node.
type OtherRead ¶
type OtherRead struct{}
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.
func (*OtherRead) Format ¶
func (node *OtherRead) Format(buf *TrackedBuffer)
Format formats the node.
type OverClause ¶ added in v0.1.0
type OverClause struct {
Name ColIdent
Spec *WindowSpec
}
OverClause describes an OVER clause attached to a function expression.
func (*OverClause) Format ¶ added in v0.1.0
func (node *OverClause) Format(buf *TrackedBuffer)
Format formats the node.
type ParenExpr ¶
type ParenExpr struct {
Expr Expr
}
ParenExpr represents a parenthesized boolean expression.
func (*ParenExpr) Format ¶
func (node *ParenExpr) Format(buf *TrackedBuffer)
Format formats the node.
type ParenSelect ¶
type ParenSelect struct {
Select SelectStatement
}
ParenSelect is a parenthesized SELECT statement.
func (*ParenSelect) AddOrder ¶
func (node *ParenSelect) AddOrder(order *Order)
AddOrder adds an order by element
func (*ParenSelect) Format ¶
func (node *ParenSelect) Format(buf *TrackedBuffer)
Format formats the node.
func (*ParenSelect) SetLimit ¶
func (node *ParenSelect) SetLimit(limit *Limit)
SetLimit sets the limit clause
type ParenTableExpr ¶
type ParenTableExpr struct {
Exprs TableExprs
}
ParenTableExpr represents a parenthesized list of TableExpr.
func (*ParenTableExpr) Format ¶
func (node *ParenTableExpr) Format(buf *TrackedBuffer)
Format formats the node.
type ParsedQuery ¶
type ParsedQuery struct {
Query string
// contains filtered or unexported fields
}
ParsedQuery represents a parsed query where bind locations are precompued for fast substitutions.
func BuildParsedQuery ¶
func BuildParsedQuery(in string, vars ...interface{}) *ParsedQuery
BuildParsedQuery builds a ParsedQuery from the input.
func NewParsedQuery ¶
func NewParsedQuery(node SQLNode) *ParsedQuery
NewParsedQuery returns a ParsedQuery of the ast.
func (*ParsedQuery) GenerateQuery ¶
func (pq *ParsedQuery) GenerateQuery(bindVariables map[string]*querypb.BindVariable, extras map[string]Encodable) ([]byte, error)
GenerateQuery generates a query by substituting the specified bindVariables. The extras parameter specifies special parameters that can perform custom encoding.
type PartitionDefinition ¶
PartitionDefinition describes a very minimal partition definition
func (*PartitionDefinition) Format ¶
func (node *PartitionDefinition) Format(buf *TrackedBuffer)
Format formats the node
type PartitionSpec ¶
type PartitionSpec struct {
Action string
Name ColIdent
Names Partitions
All bool
Number string
Table TableName
Validation string
Expr Expr
IsLinear bool
IsColumns bool
ColumnList Columns
Definitions []*PartitionDefinition
}
PartitionSpec describe partition actions (for alter and create)
func (*PartitionSpec) Format ¶
func (node *PartitionSpec) Format(buf *TrackedBuffer)
Format formats the node.
type Partitions ¶
type Partitions Columns
Partitions is a type alias for Columns so we can handle printing efficiently
func (Partitions) Format ¶
func (node Partitions) Format(buf *TrackedBuffer)
Format formats the node
type Prepare ¶ added in v0.1.0
type Prepare struct {
Name TableIdent
Source Expr
}
Prepare represents a PREPARE statement.
func (*Prepare) Format ¶ added in v0.1.0
func (node *Prepare) Format(buf *TrackedBuffer)
Format formats the node.
type Privilege ¶ added in v0.1.0
type Privilege string
Privilege represents a privilege keyword in GRANT/REVOKE.
func (Privilege) Format ¶ added in v0.1.0
func (node Privilege) Format(buf *TrackedBuffer)
Format formats the node.
type PrivilegeObject ¶ added in v0.1.0
type PrivilegeObject struct {
Global bool
DBName TableIdent
TableName TableName
}
PrivilegeObject is the ON target in GRANT/REVOKE.
Exactly one variant is expected: - Global: *.* - DBName: db.* - TableName: db.table or table
func (*PrivilegeObject) Format ¶ added in v0.1.0
func (node *PrivilegeObject) Format(buf *TrackedBuffer)
Format formats the node.
type Privileges ¶ added in v0.1.0
type Privileges []Privilege
Privileges represents a list of privileges.
func (Privileges) Format ¶ added in v0.1.0
func (node Privileges) Format(buf *TrackedBuffer)
Format formats the node.
type RangeCond ¶
RangeCond represents a BETWEEN or a NOT BETWEEN expression.
func (*RangeCond) Format ¶
func (node *RangeCond) Format(buf *TrackedBuffer)
Format formats the node.
type ReferenceDefinition ¶ added in v0.1.0
type ReferenceDefinition struct {
ReferencedTable TableName
ReferencedColumns Columns
OnDeleteAction string
OnUpdateAction string
}
ReferenceDefinition describes a REFERENCES clause.
func (*ReferenceDefinition) Format ¶ added in v0.1.0
func (rd *ReferenceDefinition) Format(buf *TrackedBuffer)
Format formats the node.
type Revoke ¶ added in v0.1.0
type Revoke struct {
GrantOptionFor bool
Privileges Privileges
PrivilegeObject *PrivilegeObject
Targets AccountNames
}
Revoke represents a REVOKE statement.
Supported syntax is intentionally minimal: - REVOKE [GRANT OPTION FOR] <privileges> ON *.*|db.*|db.table FROM <user targets>
func (*Revoke) Format ¶ added in v0.1.0
func (node *Revoke) Format(buf *TrackedBuffer)
Format formats the node.
type SQLNode ¶
type SQLNode interface {
Format(buf *TrackedBuffer)
// contains filtered or unexported methods
}
SQLNode defines the interface for all nodes generated by the parser.
type SQLVal ¶
SQLVal represents a single value.
func NewBoolVal ¶ added in v0.1.0
NewBoolVal builds a new BoolSQLVal.
type Select ¶
type Select struct {
With *With
Cache string
Comments Comments
Distinct string
Hints string
SelectExprs SelectExprs
Into SelectIntoVars
From TableExprs
Where *Where
GroupBy GroupBy
Having *Where
Windows WindowDefinitions
OrderBy OrderBy
Limit *Limit
Lock string
}
Select represents a SELECT statement.
func (*Select) AddHaving ¶
AddHaving adds the boolean expression to the HAVING clause as an AND condition. If the expression is an OR clause, it parenthesizes it. Currently, the OR operator is the only one that's lower precedence than AND.
type SelectExpr ¶
type SelectExpr interface {
SQLNode
// contains filtered or unexported methods
}
SelectExpr represents a SELECT expression.
type SelectExprs ¶
type SelectExprs []SelectExpr
SelectExprs represents SELECT expressions.
func (SelectExprs) Format ¶
func (node SelectExprs) Format(buf *TrackedBuffer)
Format formats the node.
type SelectIntoVars ¶ added in v0.1.0
type SelectIntoVars []ColIdent
SelectIntoVars represents a SELECT ... INTO user variable target list.
func (SelectIntoVars) Format ¶ added in v0.1.0
func (node SelectIntoVars) Format(buf *TrackedBuffer)
Format formats the node.
type SelectStatement ¶
type SelectStatement interface {
AddOrder(*Order)
SetLimit(*Limit)
SQLNode
// contains filtered or unexported methods
}
SelectStatement any SELECT statement.
type Show ¶
type Show struct {
Type string
OnTable TableName
ShowTablesOpt *ShowTablesOpt
Scope string
}
Show represents a show statement.
func (*Show) HasOnTable ¶
HasOnTable returns true if the show statement has an "on" clause
type ShowFilter ¶
ShowFilter is show tables filter
func (*ShowFilter) Format ¶
func (node *ShowFilter) Format(buf *TrackedBuffer)
Format formats the node.
type ShowTablesOpt ¶
type ShowTablesOpt struct {
Extended string
Full string
DbName string
Filter *ShowFilter
}
ShowTablesOpt is show tables option
type SimpleTableExpr ¶
type SimpleTableExpr interface {
SQLNode
// contains filtered or unexported methods
}
SimpleTableExpr represents a simple table expression.
type StarExpr ¶
type StarExpr struct {
TableName TableName
}
StarExpr defines a '*' or 'table.*' expression.
type Statement ¶
type Statement interface {
SQLNode
// contains filtered or unexported methods
}
Statement represents a statement.
func Parse ¶
Parse parses the SQL in full and returns a Statement, which is the AST representation of the query.
Example ¶
ExampleParse is the first example from the README.md.
sql := "SELECT * FROM table WHERE a = 'abc'"
stmt, err := Parse(sql)
if err != nil {
// Do something with the err
}
// Otherwise do something with stmt
switch stmt := stmt.(type) {
case *Select:
_ = stmt
case *Insert:
}
func ParseNext ¶
ParseNext parses a single SQL statement from the tokenizer returning a Statement which is the AST representation of the query. The tokenizer will always read up to the end of the statement, allowing for the next call to ParseNext to parse any subsequent SQL statements. When there are no more statements to parse, a error of io.EOF is returned.
Example ¶
ExampleParseNext is the second example from the README.md.
r := strings.NewReader("INSERT INTO table1 VALUES (1, 'a'); INSERT INTO table2 VALUES (3, 4);")
tokens := NewTokenizer(r)
for {
stmt, err := ParseNext(tokens)
if err == io.EOF {
break
}
// Do something with stmt or err.
_ = stmt
}
type SubstrExpr ¶
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)
func (*SubstrExpr) Format ¶
func (node *SubstrExpr) Format(buf *TrackedBuffer)
Format formats the node.
type TableExpr ¶
type TableExpr interface {
SQLNode
// contains filtered or unexported methods
}
TableExpr represents a table expression.
type TableExprs ¶
type TableExprs []TableExpr
TableExprs represents a list of table expressions.
func (TableExprs) Format ¶
func (node TableExprs) Format(buf *TrackedBuffer)
Format formats the node.
type TableIdent ¶
type TableIdent struct {
// contains filtered or unexported fields
}
TableIdent is a case sensitive SQL identifier. It will be escaped with backquotes if necessary.
func GetTableName ¶
func GetTableName(node SimpleTableExpr) TableIdent
GetTableName returns the table name from the SimpleTableExpr only if it's a simple expression. Otherwise, it returns "".
func NewTableIdent ¶
func NewTableIdent(str string) TableIdent
NewTableIdent creates a new TableIdent.
func (TableIdent) CompliantName ¶
func (node TableIdent) CompliantName() string
CompliantName returns a compliant id name that can be used for a bind var.
func (TableIdent) Format ¶
func (node TableIdent) Format(buf *TrackedBuffer)
Format formats the node.
func (TableIdent) IsEmpty ¶
func (node TableIdent) IsEmpty() bool
IsEmpty returns true if TabIdent is empty.
func (TableIdent) MarshalJSON ¶
func (node TableIdent) MarshalJSON() ([]byte, error)
MarshalJSON marshals into JSON.
func (TableIdent) String ¶
func (node TableIdent) String() string
String returns the unescaped table name. It must not be used for SQL generation. Use sqlparser.String instead. The Stringer conformance is for usage in templates.
func (*TableIdent) UnmarshalJSON ¶
func (node *TableIdent) UnmarshalJSON(b []byte) error
UnmarshalJSON unmarshals from JSON.
type TableLock ¶ added in v0.1.0
type TableLock struct {
Table TableName
Alias TableIdent
Lock string
}
TableLock represents one table lock target and lock mode.
func (*TableLock) Format ¶ added in v0.1.0
func (node *TableLock) Format(buf *TrackedBuffer)
Format formats the node.
type TableLocks ¶ added in v0.1.0
type TableLocks []*TableLock
TableLocks is a list of table locks in a LOCK TABLES statement.
func (TableLocks) Format ¶ added in v0.1.0
func (node TableLocks) Format(buf *TrackedBuffer)
Format formats the node.
type TableName ¶
type TableName struct {
Name, Qualifier TableIdent
}
TableName represents a table name. Qualifier, if specified, represents a database. 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.
func (TableName) ToViewName ¶
ToViewName returns a TableName acceptable for use as a VIEW. VIEW names are always lowercase, so ToViewName lowercasese the name. Databases are case-sensitive so Qualifier is left untouched.
type TableNames ¶
type TableNames []TableName
TableNames is a list of TableName.
func (TableNames) Format ¶
func (node TableNames) Format(buf *TrackedBuffer)
Format formats the node.
type TableSpec ¶
type TableSpec struct {
Columns []*ColumnDefinition
Indexes []*IndexDefinition
Constraints []*ConstraintDefinition
Options string
}
TableSpec describes the structure of a table from a CREATE TABLE statement
func (*TableSpec) AddColumn ¶
func (ts *TableSpec) AddColumn(cd *ColumnDefinition)
AddColumn appends the given column to the list in the spec
func (*TableSpec) AddConstraint ¶ added in v0.1.0
func (ts *TableSpec) AddConstraint(cd *ConstraintDefinition)
AddConstraint appends the given constraint to the list in the spec
func (*TableSpec) AddIndex ¶
func (ts *TableSpec) AddIndex(id *IndexDefinition)
AddIndex appends the given index to the list in the spec
type Tokenizer ¶
type Tokenizer struct {
InStream io.Reader
AllowComments bool
ForceEOF bool
Position int
LastError error
ParseTree Statement
// contains filtered or unexported fields
}
Tokenizer is the struct used to generate SQL tokens for the parser.
func NewStringTokenizer ¶
NewStringTokenizer creates a new Tokenizer for the sql string.
func NewTokenizer ¶
NewTokenizer creates a new Tokenizer reading a sql string from the io.Reader.
type TrackedBuffer ¶
TrackedBuffer is used to rebuild a query from the ast. bindLocations keeps track of locations in the buffer that use bind variables for efficient future substitutions. nodeFormatter is the formatting function the buffer will use to format a node. By default(nil), it's FormatNode. But you can supply a different formatting function if you want to generate a query that's different from the default.
func NewTrackedBuffer ¶
func NewTrackedBuffer(nodeFormatter NodeFormatter) *TrackedBuffer
NewTrackedBuffer creates a new TrackedBuffer.
func (*TrackedBuffer) HasBindVars ¶
func (buf *TrackedBuffer) HasBindVars() bool
HasBindVars returns true if the parsed query uses bind vars.
func (*TrackedBuffer) Myprintf ¶
func (buf *TrackedBuffer) Myprintf(format string, values ...interface{})
Myprintf mimics fmt.Fprintf(buf, ...), but limited to Node(%v), Node.Value(%s) and string(%s). It also allows a %a for a value argument, in which case it adds tracking info for future substitutions.
The name must be something other than the usual Printf() to avoid "go vet" warnings due to our custom format specifiers.
func (*TrackedBuffer) ParsedQuery ¶
func (buf *TrackedBuffer) ParsedQuery() *ParsedQuery
ParsedQuery returns a ParsedQuery that contains bind locations for easy substitution.
func (*TrackedBuffer) WriteArg ¶
func (buf *TrackedBuffer) WriteArg(arg string)
WriteArg writes a value argument into the buffer along with tracking information for future substitutions. arg must contain the ":" or "::" prefix.
func (*TrackedBuffer) WriteNode ¶
func (buf *TrackedBuffer) WriteNode(node SQLNode) *TrackedBuffer
WriteNode function, initiates the writing of a single SQLNode tree by passing through to Myprintf with a default format string
type TriggerDDL ¶ added in v0.1.2
TriggerDDL represents a CREATE or DROP trigger statement.
func (*TriggerDDL) Format ¶ added in v0.1.2
func (node *TriggerDDL) Format(buf *TrackedBuffer)
Format formats the node.
type TupleEqualityList ¶
TupleEqualityList is for generating equality constraints for tables that have composite primary keys.
func (*TupleEqualityList) EncodeSQL ¶
func (tpl *TupleEqualityList) EncodeSQL(buf *bytes.Buffer)
EncodeSQL generates the where clause constraints for the tuple equality.
type UnaryExpr ¶
UnaryExpr represents a unary value expression.
func (*UnaryExpr) Format ¶
func (node *UnaryExpr) Format(buf *TrackedBuffer)
Format formats the node.
type Union ¶
type Union struct {
With *With
Type string
Left, Right SelectStatement
OrderBy OrderBy
Limit *Limit
Lock string
}
Union represents a set operation query expression.
type UnlockTables ¶ added in v0.1.0
type UnlockTables struct{}
UnlockTables represents an UNLOCK TABLE[S] statement.
func (*UnlockTables) Format ¶ added in v0.1.0
func (node *UnlockTables) Format(buf *TrackedBuffer)
Format formats the node.
type Update ¶
type Update struct {
With *With
Comments Comments
TableExprs TableExprs
Exprs UpdateExprs
Where *Where
OrderBy OrderBy
Limit *Limit
}
Update represents an UPDATE statement. If you add fields here, consider adding them to calls to validateSubquerySamePlan.
type UpdateExpr ¶
UpdateExpr represents an update expression.
func (*UpdateExpr) Format ¶
func (node *UpdateExpr) Format(buf *TrackedBuffer)
Format formats the node.
type UpdateExprs ¶
type UpdateExprs []*UpdateExpr
UpdateExprs represents a list of update expressions.
func (UpdateExprs) Format ¶
func (node UpdateExprs) Format(buf *TrackedBuffer)
Format formats the node.
type ValuesFuncExpr ¶
type ValuesFuncExpr struct {
Name *ColName
}
ValuesFuncExpr represents a function call.
func (*ValuesFuncExpr) Format ¶
func (node *ValuesFuncExpr) Format(buf *TrackedBuffer)
Format formats the node.
type ValuesStatement ¶ added in v0.1.0
type ValuesStatement struct {
Rows Values
}
ValuesStatement represents a top-level VALUES statement.
func (*ValuesStatement) Format ¶ added in v0.1.0
func (node *ValuesStatement) Format(buf *TrackedBuffer)
Format formats the node.
type Visit ¶
Visit defines the signature of a function that can be used to visit all nodes of a parse tree.
type Where ¶
Where represents a WHERE or HAVING clause.
type WindowDefinition ¶ added in v0.1.0
type WindowDefinition struct {
Name ColIdent
Spec *WindowSpec
}
WindowDefinition describes a named window in a WINDOW clause.
func (*WindowDefinition) Format ¶ added in v0.1.0
func (node *WindowDefinition) Format(buf *TrackedBuffer)
Format formats the node.
type WindowDefinitions ¶ added in v0.1.0
type WindowDefinitions []*WindowDefinition
WindowDefinitions represents the WINDOW clause in a SELECT statement.
func (WindowDefinitions) Format ¶ added in v0.1.0
func (node WindowDefinitions) Format(buf *TrackedBuffer)
Format formats the node.
type WindowFrame ¶ added in v0.1.0
type WindowFrame struct {
Unit string
Start *WindowFrameBound
End *WindowFrameBound
}
WindowFrame describes a frame clause in a window specification.
func (*WindowFrame) Format ¶ added in v0.1.0
func (node *WindowFrame) Format(buf *TrackedBuffer)
Format formats the node.
type WindowFrameBound ¶ added in v0.1.0
WindowFrameBound describes one frame bound in a frame clause.
func (*WindowFrameBound) Format ¶ added in v0.1.0
func (node *WindowFrameBound) Format(buf *TrackedBuffer)
Format formats the node.
type WindowSpec ¶ added in v0.1.0
type WindowSpec struct {
Name ColIdent
PartitionBy Exprs
OrderBy OrderBy
Frame *WindowFrame
}
WindowSpec describes a window specification used by OVER(...) or WINDOW.
func (*WindowSpec) Format ¶ added in v0.1.0
func (node *WindowSpec) Format(buf *TrackedBuffer)
Format formats the node.
type With ¶ added in v0.1.0
type With struct {
Recursive bool
Ctes CommonTableExprs
}
With represents a WITH clause.
func (*With) Format ¶ added in v0.1.0
func (node *With) Format(buf *TrackedBuffer)
Format formats the node.
Source Files
¶
Directories
¶
| Path | Synopsis |
|---|---|
|
cmd
|
|
|
sqlparser
command
|
|
|
dependency
|
|
|
hack
Package hack gives you some efficient functionality at the cost of breaking some Go rules.
|
Package hack gives you some efficient functionality at the cost of breaking some Go rules. |
|
querypb
Package query is a generated protocol buffer package.
|
Package query is a generated protocol buffer package. |
|
sqltypes
Package sqltypes implements interfaces and types that represent SQL values.
|
Package sqltypes implements interfaces and types that represent SQL values. |