sqlparser

package
v0.0.14-alpha04 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 25, 2024 License: Apache-2.0 Imports: 22 Imported by: 1

Documentation

Index

Constants

View Source
const (
	StrVal = ValType(iota)
	IntVal
	FloatVal
	HexNum
	HexVal
	ValArg
	BitVal
)

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.

View Source
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"
	// DirectiveScatterErrorsAsWarnings enables partial success scatter select queries
	DirectiveScatterErrorsAsWarnings = "SCATTER_ERRORS_AS_WARNINGS"
	// DirectiveIgnoreMaxPayloadSize skips payload size validation when set.
	DirectiveIgnoreMaxPayloadSize = "IGNORE_MAX_PAYLOAD_SIZE"
)
View Source
const (
	// Select.Distinct
	DistinctStr         = "distinct "
	StraightJoinHint    = "straight_join "
	SQLCalcFoundRowsStr = "sql_calc_found_rows "

	// Select.Lock
	ForUpdateStr = " for update"
	ShareModeStr = " lock in share mode"

	// Select.Cache
	SQLCacheStr   = "sql_cache "
	SQLNoCacheStr = "sql_no_cache "

	// Union.Type
	UnionStr         = "union"
	UnionAllStr      = "union all"
	UnionDistinctStr = "union distinct"

	// DDL strings.
	InsertStr  = "insert"
	ReplaceStr = "replace"
	UpdateStr  = "update"

	// Set.Scope or Show.Scope
	SessionStr        = "session"
	GlobalStr         = "global"
	VitessMetadataStr = "vitess_metadata"
	VariableStr       = "variable"
	ImplicitStr       = ""

	// DDL strings.
	CreateStr           = "create"
	AlterStr            = "alter"
	DropStr             = "drop"
	RenameStr           = "rename"
	TruncateStr         = "truncate"
	FlushStr            = "flush"
	CreateVindexStr     = "create vindex"
	DropVindexStr       = "drop vindex"
	AddVschemaTableStr  = "add vschema table"
	DropVschemaTableStr = "drop vschema table"
	AddColVindexStr     = "on table add vindex"
	DropColVindexStr    = "on table drop vindex"
	AddSequenceStr      = "add sequence"
	AddAutoIncStr       = "add auto_increment"

	// Vindex DDL param to specify the owner of a vindex
	VindexOwnerStr = "owner"

	// Partition strings
	ReorganizeStr = "reorganize partition"

	// JoinTableExpr.Join
	JoinStr             = "join"
	StraightJoinStr     = "straight_join"
	LeftJoinStr         = "left join"
	LeftOuterJoinStr    = "left outer join"
	RightJoinStr        = "right join"
	RightOuterJoinStr   = "right outer join"
	NaturalJoinStr      = "natural join"
	NaturalLeftJoinStr  = "natural left join"
	NaturalRightJoinStr = "natural right join"

	// Index hints.
	UseStr    = "use "
	IgnoreStr = "ignore "
	ForceStr  = "force "

	// Table Modifiers
	TempStr      = "temp"
	TemporaryStr = "temporary"

	// View Modifiers
	MaterializedStr = "materialized"

	// Where.Type
	WhereStr  = "where"
	HavingStr = "having"

	// ComparisonExpr.Operator
	EqualStr             = "="
	LessThanStr          = "<"
	GreaterThanStr       = ">"
	LessEqualStr         = "<="
	GreaterEqualStr      = ">="
	NotEqualStr          = "!="
	NullSafeEqualStr     = "<=>"
	InStr                = "in"
	NotInStr             = "not in"
	LikeStr              = "like"
	NotLikeStr           = "not like"
	RegexpStr            = "regexp"
	NotRegexpStr         = "not regexp"
	JSONExtractOp        = "->"
	JSONUnquoteExtractOp = "->>"

	// RangeCond.Operator
	BetweenStr    = "between"
	NotBetweenStr = "not between"

	// IsExpr.Operator
	IsNullStr     = "is null"
	IsNotNullStr  = "is not null"
	IsTrueStr     = "is true"
	IsNotTrueStr  = "is not true"
	IsFalseStr    = "is false"
	IsNotFalseStr = "is not false"

	// BinaryExpr.Operator
	BitAndStr     = "&"
	BitOrStr      = "|"
	BitXorStr     = "^"
	PlusStr       = "+"
	MinusStr      = "-"
	MultStr       = "*"
	DivStr        = "/"
	IntDivStr     = "div"
	ModStr        = "%"
	ShiftLeftStr  = "<<"
	ShiftRightStr = ">>"

	// UnaryExpr.Operator
	UPlusStr   = "+"
	UMinusStr  = "-"
	TildaStr   = "~"
	BangStr    = "!"
	BinaryStr  = "binary "
	UBinaryStr = "_binary "
	Utf8mb4Str = "_utf8mb4 "
	Utf8Str    = "_utf8 "
	Latin1Str  = "_latin1 "

	// this string is "character set" and this comment is required
	CharacterSetStr = " character set"
	CharsetStr      = "charset"

	// MatchExpr.Option
	BooleanModeStr                           = " in boolean mode"
	NaturalLanguageModeStr                   = " in natural language mode"
	NaturalLanguageModeWithQueryExpansionStr = " in natural language mode with query expansion"
	QueryExpansionStr                        = " with query expansion"

	// Order.Direction
	AscScr  = "asc"
	DescScr = "desc"

	// SetExpr.Expr, for SET TRANSACTION ... or START TRANSACTION
	// TransactionStr is the Name for a SET TRANSACTION statement
	TransactionStr = "transaction"

	// Transaction isolation levels
	ReadUncommitted = "read uncommitted"
	ReadCommitted   = "read committed"
	RepeatableRead  = "repeatable read"
	Serializable    = "serializable"

	TxReadOnly  = "read only"
	TxReadWrite = "read write"

	// Explain formats
	TreeStr        = "tree"
	JSONStr        = "json"
	VitessStr      = "vitess"
	TraditionalStr = "traditional"
	AnalyzeStr     = "analyze"

	// Auth constants
	InteractiveStr    = "interactive"
	ServiceAccountStr = "serviceaccount"

	// Cardinality increase functions
	JsonEachStr              = "json_each"
	JsonArrayElementsTextStr = "json_array_elements_text"
)
View Source
const (
	//LastInsertIDName is a reserved bind var name for last_insert_id()
	LastInsertIDName = "__lastInsertId"

	//DBVarName is a reserved bind var name for database()
	DBVarName = "__vtdbname"

	//FoundRowsName is a reserved bind var name for found_rows()
	FoundRowsName = "__vtfrows"

	//RowCountName is a reserved bind var name for row_count()
	RowCountName = "__vtrcount"

	//UserDefinedVariableName is what we prepend bind var names for user defined variables
	UserDefinedVariableName = "__vtudv"
)
View Source
const ACTION = 57470
View Source
const ACTIVE = 57629
View Source
const ADD = 57453
View Source
const ADMIN = 57630
View Source
const AGAINST = 57597
View Source
const ALL = 57362
View Source
const ALTER = 57449
View Source
const ANALYZE = 57452
View Source
const AND = 57418
View Source
const APPROXNUM = 57549
View Source
const ARRAY = 57604
View Source
const AS = 57364
View Source
const ASC = 57366
View Source
const AT_AT_ID = 57401
View Source
const AT_ID = 57400
View Source
const AUTH = 57689
View Source
const AUTO_INCREMENT = 57548
View Source
const BEGIN = 57498
View Source
const BETWEEN = 57420
View Source
const BIGINT = 57512
View Source
const BINARY = 57440
View Source
const BIT = 57506
View Source
const BIT_LITERAL = 57411
View Source
const BLOB = 57533
View Source
const BOOL = 57525
View Source
const BOOLEAN = 57598
View Source
const BUCKETS = 57631
View Source
const BY = 57358
View Source
const CASCADE = 57471
View Source
const CASE = 57421
View Source
const CAST = 57589
View Source
const CHAR = 57523
View Source
const CHARACTER = 57526
View Source
const CHARSET = 57566
View Source
const CHECK = 57468
View Source
const CLONE = 57632
View Source
const COLLATE = 57439
View Source
const COLLATION = 57553
View Source
const COLUMN = 57464
View Source
const COLUMNS = 57560
View Source
const COMMENT = 57409
View Source
const COMMENT_KEYWORD = 57410
View Source
const COMMIT = 57501
View Source
const COMMITTED = 57575
View Source
const COMPONENT = 57633
View Source
const CONSTRAINT = 57472
View Source
const CONVERT = 57588
View Source
const CREATE = 57448
View Source
const CROSS = 57393
View Source
const CUME_DIST = 57605
View Source
const CURRENT_DATE = 57580
View Source
const CURRENT_TIME = 57581
View Source
const CURRENT_TIMESTAMP = 57578
View Source
const DATABASE = 57579
View Source
const DATABASES = 57554
View Source
const DATE = 57480
View Source
const DATETIME = 57521
View Source
const DECIMAL = 57517
View Source
const DEFAULT = 57371
View Source
const DEFINITION = 57634
View Source
const DELETE = 57352
View Source
const DENSE_RANK = 57607
View Source
const DESC = 57367
View Source
const DESCRIBE = 57478
View Source
const DESCRIPTION = 57606
View Source
const DISTINCT = 57363
View Source
const DISTINCTROW = 57377
View Source
const DIV = 57436
View Source
const DO = 57376
View Source
const DOUBLE = 57515
View Source
const DROP = 57450
View Source
const DUPLICATE = 57369
View Source
const ELSE = 57424
View Source
const EMPTY = 57608
View Source
const END = 57425
View Source
const ENFORCED = 57635
View Source
const ENGINES = 57562
View Source
const ENUM = 57538
View Source
const ESCAPE = 57481
View Source
const EXCEPT = 57609
View Source
const EXCLUDE = 57636
View Source
const EXEC = 57706
View Source
const EXISTS = 57365
View Source
const EXPANSION = 57602
View Source
const EXPLAIN = 57479
View Source
const EXTENDED = 57564
View Source
const FALSE = 57414
View Source
const FIELDS = 57561
View Source
const FIRST_VALUE = 57610
View Source
const FLOAT = 57405
View Source
const FLOAT_TYPE = 57516
View Source
const FLUSH = 57454
View Source
const FOLLOWING = 57637
View Source
const FOR = 57361
View Source
const FORCE = 57396
View Source
const FOREIGN = 57473
View Source
const FORMAT = 57685
View Source
const FROM = 57353
View Source
const FULL = 57558
View Source
const FULLTEXT = 57466
View Source
const GE = 57427
View Source
const GEOMCOLLECTION = 57638
View Source
const GEOMETRY = 57539
View Source
const GEOMETRYCOLLECTION = 57543
View Source
const GET_MASTER_PUBLIC_KEY = 57639
View Source
const GLOBAL = 57567
View Source
const GROUP = 57355
View Source
const GROUPING = 57611
View Source
const GROUPS = 57612
View Source
const GROUP_CONCAT = 57592
View Source
const HAVING = 57356
View Source
const HEX = 57402
View Source
const HEXNUM = 57406
View Source
const HISTOGRAM = 57640
View Source
const HISTORY = 57641
View Source
const ID = 57399
View Source
const IF = 57461
View Source
const IGNORE = 57460
View Source
const IN = 57433
View Source
const INACTIVE = 57642
View Source
const INDEX = 57457
View Source
const INDEXES = 57469
View Source
const INNER = 57391
View Source
const INSERT = 57350
View Source
const INT = 57510
View Source
const INTEGER = 57511
View Source
const INTEGRAL = 57404
View Source
const INTERACTIVE = 57690
View Source
const INTERVAL = 57445
View Source
const INTNUM = 57513
View Source
const INTO = 57368
View Source
const INVISIBLE = 57643
View Source
const IS = 57430
View Source
const ISOLATION = 57569
View Source
const JOIN = 57387
View Source
const JSON = 57537
View Source
const JSON_ARRAY_ELEMENTS_TEXT = 57700
View Source
const JSON_EACH = 57701
View Source
const JSON_EXTRACT_OP = 57446
View Source
const JSON_TABLE = 57613
View Source
const JSON_UNQUOTE_EXTRACT_OP = 57447
View Source
const KEY = 57370
View Source
const KEYS = 57375
View Source
const KEY_BLOCK_SIZE = 57467
View Source
const LAG = 57614
View Source
const LANGUAGE = 57599
View Source
const LAST_INSERT_ID = 57379
View Source
const LAST_VALUE = 57615
View Source
const LATERAL = 57616
View Source
const LE = 57426
View Source
const LEAD = 57617
View Source
const LEFT = 57389
View Source
const LESS = 57488
View Source
const LEVEL = 57570
View Source
const LEX_ERROR = 57346
View Source
const LIKE = 57431
View Source
const LIMIT = 57359
View Source
const LINESTRING = 57541
View Source
const LIST = 57705
View Source
const LIST_ARG = 57408
View Source
const LOCALTIME = 57582
View Source
const LOCALTIMESTAMP = 57583
View Source
const LOCK = 57373
View Source
const LOCKED = 57644
View Source
const LOGIN = 57691
View Source
const LONGBLOB = 57536
View Source
const LONGTEXT = 57532
View Source
const MASTER_COMPRESSION_ALGORITHMS = 57645
View Source
const MASTER_PUBLIC_KEY_PATH = 57646
View Source
const MASTER_TLS_CIPHERSUITES = 57647
View Source
const MASTER_ZSTD_COMPRESSION_LEVEL = 57648
View Source
const MATCH = 57596
View Source
const MATERIALIZED = 57696
View Source
const MAXVALUE = 57485
View Source
const MEDIUMBLOB = 57535
View Source
const MEDIUMINT = 57509
View Source
const MEDIUMTEXT = 57531
View Source
const MEMBER = 57618
View Source
const MOD = 57437
View Source
const MODE = 57383
View Source
const MULTILINESTRING = 57545
View Source
const MULTIPOINT = 57544
View Source
const MULTIPOLYGON = 57546
View Source
const NAMES = 57565
View Source
const NATIVEQUERY = 57708
View Source
const NATURAL = 57394
View Source
const NCHAR = 57528
View Source
const NE = 57428
View Source
const NESTED = 57649
View Source
const NETWORK_NAMESPACE = 57650
View Source
const NEXT = 57380
View Source
const NO = 57474
View Source
const NOT = 57419
View Source
const NOWAIT = 57651
View Source
const NTH_VALUE = 57619
View Source
const NTILE = 57620
View Source
const NULL = 57412
View Source
const NULLS = 57652
View Source
const NULLX = 57547
View Source
const NULL_SAFE_EQUAL = 57429
View Source
const NUMERIC = 57518
View Source
const OF = 57621
View Source
const OFF = 57415
View Source
const OFFSET = 57360
View Source
const OJ = 57653
View Source
const OLD = 57654
View Source
const ON = 57397
View Source
const ONLY = 57573
View Source
const OPTIMIZE = 57483
View Source
const OPTIONAL = 57655
View Source
const OR = 57416
View Source
const ORDER = 57357
View Source
const ORDINALITY = 57656
View Source
const ORGANIZATION = 57657
View Source
const OTHERS = 57658
View Source
const OUTER = 57392
View Source
const OVER = 57622
View Source
const PARTITION = 57486
View Source
const PATH = 57659
View Source
const PERCENT_RANK = 57623
View Source
const PERSIST = 57660
View Source
const PERSIST_ONLY = 57661
View Source
const PLUGINS = 57563
View Source
const POINT = 57540
View Source
const POLYGON = 57542
View Source
const PRECEDING = 57662
View Source
const PRIMARY = 57463
View Source
const PRIVILEGE_CHECKS_USER = 57663
View Source
const PROCEDURE = 57490
View Source
const PROCESS = 57664
View Source
const PROCESSLIST = 57559
View Source
const PULL = 57704
View Source
const PURGE = 57707
View Source
const QUERY = 57601
View Source
const RANDOM = 57665
View Source
const RANK = 57624
View Source
const READ = 57571
View Source
const REAL = 57514
View Source
const RECURSIVE = 57625
View Source
const REFERENCE = 57666
View Source
const REFERENCES = 57475
View Source
const REFRESH = 57699
View Source
const REGEXP = 57432
View Source
const REGISTRY = 57703
View Source
const RELEASE = 57504
View Source
const RENAME = 57451
View Source
const REORGANIZE = 57487
View Source
const REPAIR = 57482
View Source
const REPEATABLE = 57574
View Source
const REPLACE = 57587
View Source
const REQUIRE_ROW_FORMAT = 57667
View Source
const RESOURCE = 57668
View Source
const RESPECT = 57669
View Source
const RESTART = 57670
View Source
const RESTRICT = 57476
View Source
const RETAIN = 57671
View Source
const REUSE = 57672
View Source
const REVOKE = 57692
View Source
const RIGHT = 57390
View Source
const ROLE = 57673
View Source
const ROLLBACK = 57502
View Source
const ROW_NUMBER = 57626
View Source
const SA = 57693
View Source
const SAVEPOINT = 57503
View Source
const SCHEMA = 57455
View Source
const SECONDARY = 57674
View Source
const SECONDARY_ENGINE = 57675
View Source
const SECONDARY_LOAD = 57676
View Source
const SECONDARY_UNLOAD = 57677
View Source
const SELECT = 57348
View Source
const SEPARATOR = 57593
View Source
const SEQUENCE = 57497
View Source
const SERIALIZABLE = 57577
View Source
const SERVICEACCOUNT = 57694
View Source
const SESSION = 57568
View Source
const SET = 57372
View Source
const SHARE = 57382
View Source
const SHIFT_LEFT = 57434
View Source
const SHIFT_RIGHT = 57435
View Source
const SHOW = 57477
View Source
const SIGNED = 57550
View Source
const SKIP = 57678
View Source
const SLEEP = 57695
View Source
const SMALLINT = 57508
View Source
const SPATIAL = 57465
View Source
const SQL_CACHE = 57385
View Source
const SQL_CALC_FOUND_ROWS = 57386
View Source
const SQL_NO_CACHE = 57384
View Source
const SRID = 57679
View Source
const STACKQL = 57709
View Source
const START = 57499
View Source
const STATUS = 57494
View Source
const STRAIGHT_JOIN = 57388
View Source
const STREAM = 57349
View Source
const STRING = 57403
View Source
const SUBSTR = 57590
View Source
const SUBSTRING = 57591
View Source
const SYSTEM = 57627
View Source
const TABLE = 57456
View Source
const TABLES = 57555
View Source
const TEMP = 57697
View Source
const TEMPORARY = 57698
View Source
const TEXT = 57529
View Source
const THAN = 57489
View Source
const THEN = 57423
View Source
const THREAD_PRIORITY = 57680
View Source
const TIES = 57681
View Source
const TIME = 57519
View Source
const TIMESTAMP = 57520
View Source
const TIMESTAMPADD = 57594
View Source
const TIMESTAMPDIFF = 57595
View Source
const TINYBLOB = 57534
View Source
const TINYINT = 57507
View Source
const TINYTEXT = 57530
View Source
const TO = 57459
View Source
const TRADITIONAL = 57688
View Source
const TRANSACTION = 57500
View Source
const TREE = 57686
View Source
const TRIGGER = 57491
View Source
const TRUE = 57413
View Source
const TRUNCATE = 57484
View Source
const UNARY = 57438
View Source
const UNBOUNDED = 57682
View Source
const UNCOMMITTED = 57576
View Source
const UNDERSCORE_BINARY = 57441
View Source
const UNDERSCORE_LATIN1 = 57444
View Source
const UNDERSCORE_UTF8 = 57443
View Source
const UNDERSCORE_UTF8MB4 = 57442
View Source
const UNION = 57347
View Source
const UNIQUE = 57462
View Source
const UNLOCK = 57374
View Source
const UNNEST = 57702
View Source
const UNSIGNED = 57551
View Source
const UNUSED = 57603
View Source
const UPDATE = 57351
View Source
const USE = 57395
View Source
const USING = 57398
View Source
const UTC_DATE = 57584
View Source
const UTC_TIME = 57585
View Source
const UTC_TIMESTAMP = 57586
View Source
const VALUE = 57381
View Source
const VALUES = 57378
View Source
const VALUE_ARG = 57407
View Source
const VARBINARY = 57527
View Source
const VARCHAR = 57524
View Source
const VARIABLES = 57495
View Source
const VCPU = 57683
View Source
const VIEW = 57458
View Source
const VINDEX = 57492
View Source
const VINDEXES = 57493
View Source
const VISIBLE = 57684
View Source
const VITESS = 57687
View Source
const VITESS_METADATA = 57556
View Source
const VSCHEMA = 57557
View Source
const WARNINGS = 57496
View Source
const WHEN = 57422
View Source
const WHERE = 57354
View Source
const WINDOW = 57628
View Source
const WITH = 57600
View Source
const WORK = 57505
View Source
const WRITE = 57572
View Source
const XOR = 57417
View Source
const YEAR = 57522
View Source
const ZEROFILL = 57552

Variables

View Source
var (
	// TruncateUILen truncate queries in debug UIs to the given length. 0 means unlimited.
	TruncateUILen = flag.Int("sql-max-length-ui", 512, "truncate queries in debug UIs to the given length (default 512)")

	// TruncateErrLen truncate queries in error logs to the given length. 0 means unlimited.
	TruncateErrLen = flag.Int("sql-max-length-errors", 0, "truncate queries in error logs to the given length (default unlimited)")
)
View Source
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.

View Source
var ErrEmpty = errors.New("empty statement")

ErrEmpty is a sentinel error returned when parsing empty statements.

View Source
var ExprNotSupported = fmt.Errorf("Expr Not Supported")
View Source
var KeywordStrings = map[int]string{}

KeywordStrings contains the reverse mapping of token to keyword strings

Functions

func Append

func Append(buf *strings.Builder, node SQLNode)

Append appends the SQLNode to the buffer.

func CanNormalize

func CanNormalize(stmt Statement) bool

CanNormalize takes Statement and returns if the statement can be normalized.

func ColDelimitedString

func ColDelimitedString(node SQLNode) string

String returns a string representation of an SQLNode.

func ContainEscapableChars

func ContainEscapableChars(s string, at AtCount) bool

func Convert

func Convert(e Expr) (evalengine.Expr, error)

Convert converts between AST expressions and executable expressions

func EncodeValue

func EncodeValue(buf *strings.Builder, value *querypb.BindVariable)

EncodeValue encodes one bind variable value into the query.

func ExtractMysqlComment

func ExtractMysqlComment(sql string) (string, string)

ExtractMysqlComment extracts the version and SQL from a comment-only query such as /*!50708 sql here */

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 FormatID

func FormatID(buf *TrackedBuffer, original, lowered string, at AtCount)

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 Fuzz

func Fuzz(data []byte) int

func GetBindvars

func GetBindvars(stmt Statement) map[string]struct{}

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 IgnoreMaxPayloadSizeDirective

func IgnoreMaxPayloadSizeDirective(stmt Statement) bool

IgnoreMaxPayloadSizeDirective returns true if the max payload size override directive is set to true.

func IsColName

func IsColName(node Expr) bool

IsColName returns true if the Expr is a *ColName.

func IsDML

func IsDML(sql string) bool

IsDML returns true if the query is an INSERT, UPDATE or DELETE statement.

func IsDMLStatement

func IsDMLStatement(stmt Statement) bool

IsDMLStatement returns true if the query is an INSERT, UPDATE or DELETE statement.

func IsNull

func IsNull(node Expr) bool

IsNull returns true if the Expr is SQL NULL

func IsSetStatement

func IsSetStatement(stmt Statement) bool

IsSetStatement takes Statement and returns if the statement is set statement.

func IsSimpleTuple

func IsSimpleTuple(node Expr) bool

IsSimpleTuple returns true if the Expr is a ValTuple that contains simple values or if it's a list arg.

func IsValue

func IsValue(node Expr) bool

IsValue returns true if the Expr is a string, integral or value arg. NULL is not considered to be a value.

func IsVschemaDDL

func IsVschemaDDL(ddl *DDL) bool

IsVschemaDDL returns true if the query is an Vschema alter ddl.

func KeywordString

func KeywordString(id int) string

KeywordString returns the string corresponding to the given keyword

func LikeToRegexp

func LikeToRegexp(likeExpr string) *regexp.Regexp

LikeToRegexp converts a like sql expression to regular expression

func NewPlanValue

func NewPlanValue(node Expr) (sqltypes.PlanValue, error)

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 ParseTokenizer

func ParseTokenizer(tokenizer *Tokenizer) int

ParseTokenizer is a raw interface to parse from the given tokenizer. This does not used pooled parsers, and should not be used in general.

func RedactSQLQuery

func RedactSQLQuery(sql string) (string, error)

RedactSQLQuery returns a sql string with the params stripped out for display

func SkipQueryPlanCacheDirective

func SkipQueryPlanCacheDirective(stmt Statement) bool

SkipQueryPlanCacheDirective returns true if skip query plan cache directive is set to true in query.

func SplitStatement

func SplitStatement(blob string) (string, string, error)

SplitStatement returns the first sql statement up to either a ; or EOF and the remainder from the given buffer

func SplitStatementToPieces

func SplitStatementToPieces(blob string) (pieces []string, err error)

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 String

func String(node SQLNode) string

String returns a string representation of an SQLNode.

func StripLeadingComments

func StripLeadingComments(sql string) string

StripLeadingComments trims the SQL string and removes any leading comments

func TruncateForLog

func TruncateForLog(query string) string

TruncateForLog is used when displaying queries as part of error logs to avoid overwhelming logging systems with potentially long queries and bind value data.

func TruncateForUI

func TruncateForUI(query string) string

TruncateForUI is used when displaying queries on various Vitess status pages to keep the pages small enough to load and render properly

func Walk

func Walk(visit Visit, nodes ...SQLNode) error

Walk calls visit on every node. If visit returns true, the underlying nodes are also visited. If it returns an error, walking is interrupted, and the error is returned.

func WriteEscapedString

func WriteEscapedString(buf *TrackedBuffer, original string)

Types

type AccessMode

type AccessMode struct {
	Mode string
}

AccessMode is ReadOnly/ReadWrite

func (*AccessMode) Accept

func (node *AccessMode) Accept(vis SQLAstVisitor) error

func (*AccessMode) Format

func (node *AccessMode) Format(buf *TrackedBuffer)

Format formats the node.

type AliasedExpr

type AliasedExpr struct {
	Expr Expr
	As   ColIdent
}

AliasedExpr defines an aliased SELECT expression.

func (*AliasedExpr) Accept

func (node *AliasedExpr) Accept(vis SQLAstVisitor) error

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) Accept

func (node *AliasedTableExpr) Accept(vis SQLAstVisitor) error

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 AndExpr

type AndExpr struct {
	Left, Right Expr
}

AndExpr represents an AND expression.

func (*AndExpr) Accept

func (node *AndExpr) Accept(vis SQLAstVisitor) error

func (*AndExpr) Format

func (node *AndExpr) Format(buf *TrackedBuffer)

Format formats the node.

type ApplyFunc

type ApplyFunc func(*Cursor) bool

An ApplyFunc is invoked by Rewrite for each node n, even if n is nil, before and/or after the node's children, using a Cursor describing the current node and providing operations on it.

The return value of ApplyFunc controls the syntax tree traversal. See Rewrite for details.

type AtCount

type AtCount int

AtCount represents the '@' count in ColIdent

const (
	// NoAt represents no @
	NoAt AtCount = iota
	// SingleAt represents @
	SingleAt
	// DoubleAt represnts @@
	DoubleAt
)

type Auth

type Auth struct {
	SessionAuth BoolVal
	Provider    string
	Type        string
	KeyFilePath string
	KeyEnvVar   string
}

Statements

func (*Auth) Accept

func (node *Auth) Accept(vis SQLAstVisitor) error

func (*Auth) Format

func (node *Auth) Format(buf *TrackedBuffer)

Format formats the node.

type AuthRevoke

type AuthRevoke struct {
	SessionAuth BoolVal
	Provider    string
}

Statements

func (*AuthRevoke) Accept

func (node *AuthRevoke) Accept(vis SQLAstVisitor) error

func (*AuthRevoke) Format

func (node *AuthRevoke) Format(buf *TrackedBuffer)

Format formats the node.

type AutoIncSpec

type AutoIncSpec struct {
	Column   ColIdent
	Sequence TableName
}

AutoIncSpec defines and autoincrement value for a ADD AUTO_INCREMENT statement

func (*AutoIncSpec) Accept

func (node *AutoIncSpec) Accept(vis SQLAstVisitor) error

func (*AutoIncSpec) Format

func (node *AutoIncSpec) Format(buf *TrackedBuffer)

Format formats the node.

type Begin

type Begin struct{}

Begin represents a Begin statement.

func (*Begin) Accept

func (node *Begin) Accept(vis SQLAstVisitor) error

func (*Begin) Format

func (node *Begin) Format(buf *TrackedBuffer)

Format formats the node.

type BinaryExpr

type BinaryExpr struct {
	Operator    string
	Left, Right Expr
}

BinaryExpr represents a binary value expression.

func (*BinaryExpr) Accept

func (node *BinaryExpr) Accept(vis SQLAstVisitor) error

func (*BinaryExpr) Format

func (node *BinaryExpr) Format(buf *TrackedBuffer)

Format formats the node.

type BindVarNeeds

type BindVarNeeds struct {
	NeedLastInsertID         bool
	NeedDatabase             bool
	NeedFoundRows            bool
	NeedRowCount             bool
	NeedUserDefinedVariables []string
}

BindVarNeeds represents the bind vars that need to be provided as the result of expression rewriting.

type BoolVal

type BoolVal bool

BoolVal is true or false.

func (BoolVal) Accept

func (node BoolVal) Accept(vis SQLAstVisitor) error

func (BoolVal) Format

func (node BoolVal) Format(buf *TrackedBuffer)

Format formats the node.

type CaseExpr

type CaseExpr struct {
	Expr  Expr
	Whens []*When
	Else  Expr
}

CaseExpr represents a CASE expression.

func (*CaseExpr) Accept

func (node *CaseExpr) Accept(vis SQLAstVisitor) error

func (*CaseExpr) Format

func (node *CaseExpr) Format(buf *TrackedBuffer)

Format formats the node.

type Characteristic

type Characteristic interface {
	SQLNode
	// contains filtered or unexported methods
}

Characteristic is a transaction related change

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 NewColIdent

func NewColIdent(str string) ColIdent

NewColIdent makes a new ColIdent.

func NewColIdentWithAt

func NewColIdentWithAt(str string, at AtCount) ColIdent

NewColIdentWithAt makes a new ColIdent.

func (ColIdent) Accept

func (node ColIdent) Accept(vis SQLAstVisitor) error

func (ColIdent) AtCount

func (node ColIdent) AtCount() AtCount

AtCount return the '@' count present in ColIdent Name

func (ColIdent) CompliantName

func (node ColIdent) CompliantName() string

CompliantName returns a compliant id name that can be used for a bind var.

func (ColIdent) Equal

func (node ColIdent) Equal(in ColIdent) bool

Equal performs a case-insensitive compare.

func (ColIdent) EqualString

func (node ColIdent) EqualString(str string) bool

EqualString performs a case-insensitive compare with str.

func (ColIdent) Format

func (node ColIdent) Format(buf *TrackedBuffer)

Format formats the node.

func (ColIdent) GetAtCount

func (node ColIdent) GetAtCount() AtCount

func (ColIdent) GetRawVal

func (node ColIdent) GetRawVal() string

func (ColIdent) IsEmpty

func (node ColIdent) IsEmpty() bool

IsEmpty returns true if the name is empty.

func (ColIdent) Lowered

func (node ColIdent) Lowered() string

Lowered returns a lower-cased column name. This function should generally be used only for optimizing comparisons.

func (ColIdent) MarshalJSON

func (node ColIdent) MarshalJSON() ([]byte, error)

MarshalJSON marshals into JSON.

func (ColIdent) String

func (node ColIdent) String() 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

func (node *ColIdent) UnmarshalJSON(b []byte) error

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.

func (*ColName) Accept

func (node *ColName) Accept(vis SQLAstVisitor) error

func (*ColName) Equal

func (node *ColName) Equal(c *ColName) bool

Equal returns true if the column names match.

func (*ColName) Format

func (node *ColName) Format(buf *TrackedBuffer)

Format formats the node.

func (*ColName) GetRawVal

func (node *ColName) GetRawVal() string

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

type CollateExpr struct {
	Expr    Expr
	Charset string
}

CollateExpr represents dynamic collate operator.

func (*CollateExpr) Accept

func (node *CollateExpr) Accept(vis SQLAstVisitor) error

func (*CollateExpr) Format

func (node *CollateExpr) Format(buf *TrackedBuffer)

Format formats the node.

type ColumnDefinition

type ColumnDefinition struct {
	Name ColIdent
	// TODO: Should this not be a reference?
	Type ColumnType
}

ColumnDefinition describes a column in a CREATE TABLE statement

func (*ColumnDefinition) Accept

func (node *ColumnDefinition) Accept(vis SQLAstVisitor) error

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

const (
	ColKeyPrimary ColumnKeyOption
	ColKeySpatialKey
	ColKeyUnique
	ColKeyUniqueKey
	ColKey
)

type ColumnType

type ColumnType struct {
	// The base type string
	Type string

	// Generic field options.
	NotNull       BoolVal
	Autoincrement BoolVal
	Default       Expr
	OnUpdate      Expr
	Comment       *SQLVal

	// Numeric field options
	Length   *SQLVal
	Unsigned BoolVal
	Zerofill BoolVal
	Scale    *SQLVal

	// Text field options
	Charset string
	Collate string

	// Enum values
	EnumValues []string

	// Key specification
	KeyOpt ColumnKeyOption
}

ColumnType represents a sql type in a CREATE TABLE statement All optional fields are nil if not specified

func (*ColumnType) Accept

func (node *ColumnType) Accept(vis SQLAstVisitor) error

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) Accept

func (node Columns) Accept(vis SQLAstVisitor) error

func (Columns) FindColumn

func (node Columns) FindColumn(col ColIdent) int

FindColumn finds a column in the column list, returning the index if it exists or -1 otherwise

func (Columns) Format

func (node Columns) Format(buf *TrackedBuffer)

Format formats the node.

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 Comments

type Comments [][]byte

Comments represents a list of comments.

func (Comments) Accept

func (node Comments) Accept(vis SQLAstVisitor) error

func (Comments) Format

func (node Comments) Format(buf *TrackedBuffer)

Format formats the node.

type Commit

type Commit struct{}

Commit represents a Commit statement.

func (*Commit) Accept

func (node *Commit) Accept(vis SQLAstVisitor) error

func (*Commit) Format

func (node *Commit) Format(buf *TrackedBuffer)

Format formats the node.

type ComparisonExpr

type ComparisonExpr struct {
	Operator    string
	Left, Right Expr
	Escape      Expr
}

ComparisonExpr represents a two-value comparison expression.

func (*ComparisonExpr) Accept

func (node *ComparisonExpr) Accept(vis SQLAstVisitor) error

func (*ComparisonExpr) Format

func (node *ComparisonExpr) Format(buf *TrackedBuffer)

Format formats the node.

func (*ComparisonExpr) IsImpossible

func (node *ComparisonExpr) IsImpossible() bool

IsImpossible returns true if the comparison in the expression can never evaluate to true. Note that this is not currently exhaustive to ALL impossible comparisons.

type ConstraintDefinition

type ConstraintDefinition struct {
	Name    string
	Details ConstraintInfo
}

ConstraintDefinition describes a constraint in a CREATE TABLE statement

func (*ConstraintDefinition) Accept

func (node *ConstraintDefinition) Accept(vis SQLAstVisitor) error

func (*ConstraintDefinition) Format

func (c *ConstraintDefinition) Format(buf *TrackedBuffer)

Format formats the node.

type ConstraintInfo

type ConstraintInfo interface {
	SQLNode
	// contains filtered or unexported methods
}

ConstraintInfo details a constraint in a CREATE TABLE statement

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) Accept

func (node *ConvertExpr) Accept(vis SQLAstVisitor) error

func (*ConvertExpr) Format

func (node *ConvertExpr) Format(buf *TrackedBuffer)

Format formats the node.

type ConvertType

type ConvertType struct {
	Type     string
	Length   *SQLVal
	Scale    *SQLVal
	Operator string
	Charset  string
}

ConvertType represents the type in call to CONVERT(expr, type)

func (*ConvertType) Accept

func (node *ConvertType) Accept(vis SQLAstVisitor) error

func (*ConvertType) Format

func (node *ConvertType) Format(buf *TrackedBuffer)

Format formats the node.

type ConvertUsingExpr

type ConvertUsingExpr struct {
	Expr Expr
	Type string
}

ConvertUsingExpr represents a call to CONVERT(expr USING charset).

func (*ConvertUsingExpr) Accept

func (node *ConvertUsingExpr) Accept(vis SQLAstVisitor) error

func (*ConvertUsingExpr) Format

func (node *ConvertUsingExpr) Format(buf *TrackedBuffer)

Format formats the node.

type CurTimeFuncExpr

type CurTimeFuncExpr struct {
	Name ColIdent
	Fsp  Expr // fractional seconds precision, integer from 0 to 6
}

CurTimeFuncExpr represents the function and arguments for CURRENT DATE/TIME functions supported functions are documented in the grammar

func (*CurTimeFuncExpr) Accept

func (node *CurTimeFuncExpr) Accept(vis SQLAstVisitor) error

func (*CurTimeFuncExpr) Format

func (node *CurTimeFuncExpr) Format(buf *TrackedBuffer)

Format formats the node.

type Cursor

type Cursor struct {
	// contains filtered or unexported fields
}

A Cursor describes a node encountered during Apply. Information about the node and its parent is available from the Node and Parent methods.

func (*Cursor) Node

func (c *Cursor) Node() SQLNode

Node returns the current Node.

func (*Cursor) Parent

func (c *Cursor) Parent() SQLNode

Parent returns the parent of the current Node.

func (*Cursor) Replace

func (c *Cursor) Replace(newNode SQLNode)

Replace replaces the current node in the parent field with this new object. The use needs to make sure to not replace the object with something of the wrong type, or the visitor will panic.

type DBDDL

type DBDDL struct {
	Action      string
	DBName      string
	IfExists    bool
	IfNotExists bool
	Collate     string
	Charset     string
}

DBDDL represents a CREATE, DROP, or ALTER database statement.

func (*DBDDL) Accept

func (node *DBDDL) Accept(vis SQLAstVisitor) error

func (*DBDDL) Format

func (node *DBDDL) Format(buf *TrackedBuffer)

Format formats the node.

type DDL

type DDL struct {
	Action string

	// FromTables is set if Action is RenameStr or DropStr.
	FromTables TableNames

	// ToTables is set if Action is RenameStr.
	ToTables TableNames

	// Table is set if Action is other than RenameStr or DropStr.
	Table TableName

	// The following fields are set if a DDL was fully analyzed.
	IfExists      bool
	IfNotExists   bool
	TableSpec     *TableSpec
	OptLike       *OptLike
	OrReplace     bool
	PartitionSpec *PartitionSpec

	// VindexSpec is set for CreateVindexStr, DropVindexStr, AddColVindexStr, DropColVindexStr.
	VindexSpec *VindexSpec

	// VindexCols is set for AddColVindexStr.
	VindexCols []ColIdent

	// AutoIncSpec is set for AddAutoIncStr.
	AutoIncSpec *AutoIncSpec

	// SelectStatement is set for Create View.
	SelectStatement SelectStatement

	// Modifier is optional for Create View and Create Table.
	Modifier string
}

DDL represents a CREATE, ALTER, DROP, RENAME, TRUNCATE or ANALYZE statement.

func (*DDL) Accept

func (node *DDL) Accept(vis SQLAstVisitor) error

func (*DDL) AffectedTables

func (node *DDL) AffectedTables() TableNames

AffectedTables returns the list table names affected by the DDL.

func (*DDL) Format

func (node *DDL) Format(buf *TrackedBuffer)

Format formats the node.

type Default

type Default struct {
	ColName string
}

Default represents a DEFAULT expression.

func (*Default) Accept

func (node *Default) Accept(vis SQLAstVisitor) error

func (*Default) Format

func (node *Default) Format(buf *TrackedBuffer)

Format formats the node.

type Delete

type Delete struct {
	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 validateUnshardedRoute.

func (*Delete) Accept

func (node *Delete) Accept(vis SQLAstVisitor) error

func (*Delete) Format

func (node *Delete) Format(buf *TrackedBuffer)

Format formats the node.

type DescribeTable

type DescribeTable struct {
	Full     string
	Extended string
	Table    TableName
}

Statements

func (*DescribeTable) Accept

func (node *DescribeTable) Accept(vis SQLAstVisitor) error

func (*DescribeTable) Format

func (node *DescribeTable) Format(buf *TrackedBuffer)

Format formats the node.

type Encodable

type Encodable interface {
	EncodeSQL(buf *strings.Builder)
}

Encodable defines the interface for types that can be custom-encoded into SQL.

type Exec

type Exec struct {
	Await          bool
	Comments       Comments
	MethodName     TableName
	ExecVarDefs    []ExecVarDef
	OptExecPayload *ExecVarDef
}

Exec represents an EXEC statement

func NewExec

func NewExec(comments Comments, methodName TableName, execVarDefs []ExecVarDef, optExecPayload *ExecVarDef) *Exec

NewExec makes a new Exec.

func (*Exec) Accept

func (node *Exec) Accept(vis SQLAstVisitor) error

func (*Exec) Format

func (node *Exec) Format(buf *TrackedBuffer)

type ExecSubquery

type ExecSubquery struct {
	Exec *Exec
}

func (*ExecSubquery) Accept

func (node *ExecSubquery) Accept(vis SQLAstVisitor) error

func (*ExecSubquery) Format

func (node *ExecSubquery) Format(buf *TrackedBuffer)

type ExecVarDef

type ExecVarDef struct {
	ColIdent ColIdent
	Val      Expr
}

func NewExecVarDef

func NewExecVarDef(colIdent ColIdent, val Expr) ExecVarDef

NewExecVarDef makes a new ExecVarDef.

type ExistsExpr

type ExistsExpr struct {
	Subquery *Subquery
}

ExistsExpr represents an EXISTS expression.

func (*ExistsExpr) Accept

func (node *ExistsExpr) Accept(vis SQLAstVisitor) error

func (*ExistsExpr) Format

func (node *ExistsExpr) Format(buf *TrackedBuffer)

Format formats the node.

type Explain

type Explain struct {
	Type      string
	Statement Statement
}

Explain represents an EXPLAIN statement

func (*Explain) Accept

func (node *Explain) Accept(vis SQLAstVisitor) error

func (*Explain) Format

func (node *Explain) Format(buf *TrackedBuffer)

Format formats the node.

type Expr

type Expr interface {
	SQLNode
	// contains filtered or unexported methods
}

Expr represents an expression.

func ReplaceExpr

func ReplaceExpr(root, from, to Expr) Expr

ReplaceExpr finds the from expression from root and replaces it with to. If from matches root, then to is returned.

func SplitAndExpression

func SplitAndExpression(filters []Expr, node Expr) []Expr

SplitAndExpression breaks up the Expr into AND-separated conditions and appends them to filters. Outer parenthesis are removed. Precedence should be taken into account if expressions are recombined.

type Exprs

type Exprs []Expr

Exprs represents a list of value expressions. It's not a valid expression because it's not parenthesized.

func (Exprs) Accept

func (node Exprs) Accept(vis SQLAstVisitor) error

func (Exprs) Format

func (node Exprs) Format(buf *TrackedBuffer)

Format formats the node.

type ForeignKeyDefinition

type ForeignKeyDefinition struct {
	Source            Columns
	ReferencedTable   TableName
	ReferencedColumns Columns
	OnDelete          ReferenceAction
	OnUpdate          ReferenceAction
}

ForeignKeyDefinition describes a foreign key in a CREATE TABLE statement

func (*ForeignKeyDefinition) Accept

func (node *ForeignKeyDefinition) Accept(vis SQLAstVisitor) error

func (*ForeignKeyDefinition) Format

func (f *ForeignKeyDefinition) Format(buf *TrackedBuffer)

Format formats the node.

type FuncExpr

type FuncExpr struct {
	Qualifier TableIdent
	Name      ColIdent
	Distinct  bool
	Exprs     SelectExprs
}

FuncExpr represents a function call.

func (*FuncExpr) Accept

func (node *FuncExpr) Accept(vis SQLAstVisitor) error

func (*FuncExpr) Format

func (node *FuncExpr) Format(buf *TrackedBuffer)

Format formats the node.

func (*FuncExpr) IsAggregate

func (node *FuncExpr) IsAggregate() bool

IsAggregate returns true if the function is an aggregate.

type GroupBy

type GroupBy []Expr

GroupBy represents a GROUP BY clause.

func (GroupBy) Accept

func (node GroupBy) Accept(vis SQLAstVisitor) error

func (GroupBy) Format

func (node GroupBy) Format(buf *TrackedBuffer)

Format formats the node.

type GroupConcatExpr

type GroupConcatExpr struct {
	Distinct  string
	Exprs     SelectExprs
	OrderBy   OrderBy
	Separator string
	Limit     *Limit
}

GroupConcatExpr represents a call to GROUP_CONCAT

func (*GroupConcatExpr) Accept

func (node *GroupConcatExpr) Accept(vis SQLAstVisitor) error

func (*GroupConcatExpr) Format

func (node *GroupConcatExpr) Format(buf *TrackedBuffer)

Format formats the node

type IndexColumn

type IndexColumn struct {
	Column ColIdent
	Length *SQLVal
}

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) Accept

func (node *IndexDefinition) Accept(vis SQLAstVisitor) error

func (*IndexDefinition) Format

func (idx *IndexDefinition) Format(buf *TrackedBuffer)

Format formats the node.

type IndexHints

type IndexHints struct {
	Type    string
	Indexes []ColIdent
}

IndexHints represents a list of index hints.

func (*IndexHints) Accept

func (node *IndexHints) Accept(vis SQLAstVisitor) error

func (*IndexHints) Format

func (node *IndexHints) Format(buf *TrackedBuffer)

Format formats the node.

type IndexInfo

type IndexInfo struct {
	Type    string
	Name    ColIdent
	Primary bool
	Spatial bool
	Unique  bool
}

IndexInfo describes the name and type of an index in a CREATE TABLE statement

func (*IndexInfo) Accept

func (node *IndexInfo) Accept(vis SQLAstVisitor) error

func (*IndexInfo) Format

func (ii *IndexInfo) Format(buf *TrackedBuffer)

Format formats the node.

type IndexOption

type IndexOption struct {
	Name  string
	Value *SQLVal
	Using string
}

IndexOption is used for trailing options for indexes: COMMENT, KEY_BLOCK_SIZE, USING

type Insert

type Insert struct {
	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. 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.

func (*Insert) Accept

func (node *Insert) Accept(vis SQLAstVisitor) error

func (*Insert) Format

func (node *Insert) Format(buf *TrackedBuffer)

Format formats the node.

type InsertRows

type InsertRows interface {
	SQLNode
	// contains filtered or unexported methods
}

InsertRows represents the rows for an INSERT statement.

type InsertValues

type InsertValues [][]sqltypes.Value

InsertValues is a custom SQL encoder for the values of an insert statement.

func (InsertValues) EncodeSQL

func (iv InsertValues) EncodeSQL(buf *strings.Builder)

EncodeSQL performs the SQL encoding for InsertValues.

type IntervalExpr

type IntervalExpr struct {
	Expr Expr
	Unit string
}

IntervalExpr represents a date-time INTERVAL expression.

func (*IntervalExpr) Accept

func (node *IntervalExpr) Accept(vis SQLAstVisitor) error

func (*IntervalExpr) Format

func (node *IntervalExpr) Format(buf *TrackedBuffer)

Format formats the node.

type IsExpr

type IsExpr struct {
	Operator string
	Expr     Expr
}

IsExpr represents an IS ... or an IS NOT ... expression.

func (*IsExpr) Accept

func (node *IsExpr) Accept(vis SQLAstVisitor) error

func (*IsExpr) Format

func (node *IsExpr) Format(buf *TrackedBuffer)

Format formats the node.

type IsolationLevel

type IsolationLevel struct {
	Level string
}

IsolationLevel is self-explanatory in this context

func (*IsolationLevel) Accept

func (node *IsolationLevel) Accept(vis SQLAstVisitor) error

func (*IsolationLevel) Format

func (node *IsolationLevel) Format(buf *TrackedBuffer)

Format formats the node.

type JoinCondition

type JoinCondition struct {
	On    Expr
	Using Columns
}

JoinCondition represents the join conditions (either a ON or USING clause) of a JoinTableExpr.

func (JoinCondition) Accept

func (node JoinCondition) Accept(vis SQLAstVisitor) error

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) Accept

func (node *JoinTableExpr) Accept(vis SQLAstVisitor) error

func (*JoinTableExpr) Format

func (node *JoinTableExpr) Format(buf *TrackedBuffer)

Format formats the node.

type LengthScaleOption

type LengthScaleOption struct {
	Length *SQLVal
	Scale  *SQLVal
}

LengthScaleOption is used for types that have an optional length and scale

type Limit

type Limit struct {
	Offset, Rowcount Expr
}

Limit represents a LIMIT clause.

func (*Limit) Accept

func (node *Limit) Accept(vis SQLAstVisitor) error

func (*Limit) Format

func (node *Limit) Format(buf *TrackedBuffer)

Format formats the node.

type ListArg

type ListArg []byte

ListArg represents a named list argument.

func (ListArg) Accept

func (node ListArg) Accept(vis SQLAstVisitor) error

func (ListArg) Format

func (node ListArg) Format(buf *TrackedBuffer)

Format formats the node.

type ListArgConcatamer

type ListArgConcatamer []ListArg

ListArgConcatamer represents a concatamer string of apparent list arguments / postgres cast operators.

func (ListArgConcatamer) String

func (lac ListArgConcatamer) String() string

type MarginComments

type MarginComments struct {
	Leading  string
	Trailing string
}

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) Accept

func (node *MatchExpr) Accept(vis SQLAstVisitor) error

func (*MatchExpr) Format

func (node *MatchExpr) Format(buf *TrackedBuffer)

Format formats the node

type NativeQuery

type NativeQuery struct {
	Await       bool
	Comments    Comments
	QueryString string
}

Purge represents a PURGE statement

func NewNativeQuery

func NewNativeQuery(comments Comments, queryString string) *NativeQuery

NewNativeQuery makes a new NativeQuery.

func (*NativeQuery) Accept

func (node *NativeQuery) Accept(vis SQLAstVisitor) error

func (*NativeQuery) Format

func (node *NativeQuery) Format(buf *TrackedBuffer)

type Nextval

type Nextval struct {
	Expr Expr
}

Nextval defines the NEXT VALUE expression.

func (Nextval) Accept

func (node Nextval) Accept(vis SQLAstVisitor) error

func (Nextval) Format

func (node Nextval) 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 NotExpr

type NotExpr struct {
	Expr Expr
}

NotExpr represents a NOT expression.

func (*NotExpr) Accept

func (node *NotExpr) Accept(vis SQLAstVisitor) error

func (*NotExpr) Format

func (node *NotExpr) Format(buf *TrackedBuffer)

Format formats the node.

type NullVal

type NullVal struct{}

NullVal represents a NULL value.

func (*NullVal) Accept

func (node *NullVal) Accept(vis SQLAstVisitor) error

func (*NullVal) Format

func (node *NullVal) Format(buf *TrackedBuffer)

Format formats the node.

type OnDup

type OnDup UpdateExprs

OnDup represents an ON DUPLICATE KEY clause.

func (OnDup) Accept

func (node OnDup) Accept(vis SQLAstVisitor) error

func (OnDup) Format

func (node OnDup) Format(buf *TrackedBuffer)

Format formats the node.

type OptLike

type OptLike struct {
	LikeTable TableName
}

OptLike works for create table xxx like xxx

func (*OptLike) Accept

func (node *OptLike) Accept(vis SQLAstVisitor) error

func (*OptLike) Format

func (node *OptLike) Format(buf *TrackedBuffer)

Format formats the node.

type OrExpr

type OrExpr struct {
	Left, Right Expr
}

OrExpr represents an OR expression.

func (*OrExpr) Accept

func (node *OrExpr) Accept(vis SQLAstVisitor) error

func (*OrExpr) Format

func (node *OrExpr) Format(buf *TrackedBuffer)

Format formats the node.

type Order

type Order struct {
	Expr      Expr
	Direction string
}

Order represents an ordering expression.

func (*Order) Accept

func (node *Order) Accept(vis SQLAstVisitor) error

func (*Order) Format

func (node *Order) Format(buf *TrackedBuffer)

Format formats the node.

type OrderBy

type OrderBy []*Order

OrderBy represents an ORDER By clause.

func (OrderBy) Accept

func (node OrderBy) Accept(vis SQLAstVisitor) error

func (OrderBy) Format

func (node OrderBy) Format(buf *TrackedBuffer)

Format formats the node.

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) Accept

func (node *OtherAdmin) Accept(vis SQLAstVisitor) error

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) Accept

func (node *OtherRead) Accept(vis SQLAstVisitor) error

func (*OtherRead) Format

func (node *OtherRead) Format(buf *TrackedBuffer)

Format formats the node.

type ParenSelect

type ParenSelect struct {
	Select SelectStatement
}

ParenSelect is a parenthesized SELECT statement.

func (*ParenSelect) Accept

func (node *ParenSelect) Accept(vis SQLAstVisitor) error

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

func (*ParenSelect) SetLock

func (node *ParenSelect) SetLock(lock string)

SetLock sets the lock clause

type ParenTableExpr

type ParenTableExpr struct {
	Exprs TableExprs
}

ParenTableExpr represents a parenthesized list of TableExpr.

func (*ParenTableExpr) Accept

func (node *ParenTableExpr) Accept(vis SQLAstVisitor) error

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) Append

func (pq *ParsedQuery) Append(buf *strings.Builder, bindVariables map[string]*querypb.BindVariable, extras map[string]Encodable) error

Append appends the generated query to the provided buffer.

func (*ParsedQuery) GenerateQuery

func (pq *ParsedQuery) GenerateQuery(bindVariables map[string]*querypb.BindVariable, extras map[string]Encodable) (string, error)

GenerateQuery generates a query by substituting the specified bindVariables. The extras parameter specifies special parameters that can perform custom encoding.

func (*ParsedQuery) MarshalJSON

func (pq *ParsedQuery) MarshalJSON() ([]byte, error)

MarshalJSON is a custom JSON marshaler for ParsedQuery. Note that any queries longer that 512 bytes will be truncated.

type PartitionDefinition

type PartitionDefinition struct {
	Name     ColIdent
	Limit    Expr
	Maxvalue bool
}

PartitionDefinition describes a very minimal partition definition

func (*PartitionDefinition) Accept

func (node *PartitionDefinition) Accept(vis SQLAstVisitor) error

func (*PartitionDefinition) Format

func (node *PartitionDefinition) Format(buf *TrackedBuffer)

Format formats the node

type PartitionSpec

type PartitionSpec struct {
	Action      string
	Name        ColIdent
	Definitions []*PartitionDefinition
}

PartitionSpec describe partition actions (for alter and create)

func (*PartitionSpec) Accept

func (node *PartitionSpec) Accept(vis SQLAstVisitor) error

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) Accept

func (node Partitions) Accept(vis SQLAstVisitor) error

func (Partitions) Format

func (node Partitions) Format(buf *TrackedBuffer)

Format formats the node

type PositionedErr

type PositionedErr struct {
	Err  string
	Pos  int
	Near []byte
}

PositionedErr holds context related to parser errors

func (PositionedErr) Error

func (p PositionedErr) Error() string

type Precendence

type Precendence int

Precendence is used to know the precedence between operators, so we can introduce parens when needed in the String representation of the AST

const (
	Syntactic Precendence = iota
	P1
	P2
	P3
	P4
	P5
	P6
	P7
	P8
	P9
	P10
	P11
	P12
	P13
	P14
	P15
	P16
	P17
)

type Purge

type Purge struct {
	Await    bool
	Comments Comments
	IsGlobal bool
	Target   TableName
}

Purge represents a PURGE statement

func NewPurge

func NewPurge(comments Comments, target TableName, isGlobal bool) *Purge

NewPurge makes a new Purge.

func (*Purge) Accept

func (node *Purge) Accept(vis SQLAstVisitor) error

func (*Purge) Format

func (node *Purge) Format(buf *TrackedBuffer)

type RangeCond

type RangeCond struct {
	Operator string
	Left     Expr
	From, To Expr
}

RangeCond represents a BETWEEN or a NOT BETWEEN expression.

func (*RangeCond) Accept

func (node *RangeCond) Accept(vis SQLAstVisitor) error

func (*RangeCond) Format

func (node *RangeCond) Format(buf *TrackedBuffer)

Format formats the node.

type ReferenceAction

type ReferenceAction int

ReferenceAction indicates the action takes by a referential constraint e.g. the `CASCADE` in a `FOREIGN KEY .. ON DELETE CASCADE` table definition.

const (
	// DefaultAction indicates no action was explicitly specified.
	DefaultAction ReferenceAction = iota
	Restrict
	Cascade
	NoAction
	SetNull
	SetDefault
)

These map to the SQL-defined reference actions. See https://dev.mysql.com/doc/refman/8.0/en/create-table-foreign-keys.html#foreign-keys-referential-actions

func (ReferenceAction) Accept

func (node ReferenceAction) Accept(vis SQLAstVisitor) error

func (ReferenceAction) Format

func (a ReferenceAction) Format(buf *TrackedBuffer)

Format formats the node.

type RefreshMaterializedView

type RefreshMaterializedView struct {
	Concurrently   bool
	ViewName       TableName
	WithData       bool
	ImplicitSelect SelectStatement // This is mutated during analysis.
}

Statements

func (*RefreshMaterializedView) Accept

func (node *RefreshMaterializedView) Accept(vis SQLAstVisitor) error

func (*RefreshMaterializedView) Format

func (node *RefreshMaterializedView) Format(buf *TrackedBuffer)

type Registry

type Registry struct {
	ActionType      string
	ProviderId      string
	ProviderVersion string
}

Statements

func (*Registry) Accept

func (node *Registry) Accept(vis SQLAstVisitor) error

func (*Registry) Format

func (node *Registry) Format(buf *TrackedBuffer)

Format formats the node.

type Release

type Release struct {
	Name ColIdent
}

Release represents a release savepoint statement.

func (*Release) Accept

func (node *Release) Accept(vis SQLAstVisitor) error

func (*Release) Format

func (node *Release) Format(buf *TrackedBuffer)

Format formats the node.

type RewriteASTResult

type RewriteASTResult struct {
	BindVarNeeds
	AST Statement // The rewritten AST
}

RewriteASTResult contains the rewritten ast and meta information about it

func PrepareAST

func PrepareAST(in Statement, bindVars map[string]*querypb.BindVariable, prefix string, parameterize bool) (*RewriteASTResult, error)

PrepareAST will normalize the query

func RewriteAST

func RewriteAST(in Statement) (*RewriteASTResult, error)

RewriteAST rewrites the whole AST, replacing function calls and adding column aliases to queries

type Rollback

type Rollback struct{}

Rollback represents a Rollback statement.

func (*Rollback) Accept

func (node *Rollback) Accept(vis SQLAstVisitor) error

func (*Rollback) Format

func (node *Rollback) Format(buf *TrackedBuffer)

Format formats the node.

type SQLAstVisitor

type SQLAstVisitor interface {
	Visit(SQLNode) error
}

type SQLNode

type SQLNode interface {
	Format(buf *TrackedBuffer)
	Accept(SQLAstVisitor) error
}

SQLNode defines the interface for all nodes generated by the parser.

func Rewrite

func Rewrite(node SQLNode, pre, post ApplyFunc) (result SQLNode)

Rewrite traverses a syntax tree recursively, starting with root, and calling pre and post for each node as described below. Rewrite returns the syntax tree, possibly modified.

If pre is not nil, it is called for each node before the node's children are traversed (pre-order). If pre returns false, no children are traversed, and post is not called for that node.

If post is not nil, and a prior call of pre didn't return false, post is called for each node after its children are traversed (post-order). If post returns false, traversal is terminated and Apply returns immediately.

Only fields that refer to AST nodes are considered children; i.e., fields of basic types (strings, []byte, etc.) are ignored.

type SQLVal

type SQLVal struct {
	Type ValType
	Val  []byte
}

SQLVal represents a single value.

func NewBitVal

func NewBitVal(in []byte) *SQLVal

NewBitVal builds a new BitVal containing a bit literal.

func NewFloatVal

func NewFloatVal(in []byte) *SQLVal

NewFloatVal builds a new FloatVal.

func NewHexNum

func NewHexNum(in []byte) *SQLVal

NewHexNum builds a new HexNum.

func NewHexVal

func NewHexVal(in []byte) *SQLVal

NewHexVal builds a new HexVal.

func NewIntVal

func NewIntVal(in []byte) *SQLVal

NewIntVal builds a new IntVal.

func NewStrVal

func NewStrVal(in []byte) *SQLVal

NewStrVal builds a new StrVal.

func NewValArg

func NewValArg(in []byte) *SQLVal

NewValArg builds a new ValArg.

func (*SQLVal) Accept

func (node *SQLVal) Accept(vis SQLAstVisitor) error

func (*SQLVal) Format

func (node *SQLVal) Format(buf *TrackedBuffer)

Format formats the node.

func (*SQLVal) HexDecode

func (node *SQLVal) HexDecode() ([]byte, error)

HexDecode decodes the hexval into bytes.

type SRollback

type SRollback struct {
	Name ColIdent
}

SRollback represents a rollback to savepoint statement.

func (*SRollback) Accept

func (node *SRollback) Accept(vis SQLAstVisitor) error

func (*SRollback) Format

func (node *SRollback) Format(buf *TrackedBuffer)

Format formats the node.

type Savepoint

type Savepoint struct {
	Name ColIdent
}

Savepoint represents a savepoint statement.

func (*Savepoint) Accept

func (node *Savepoint) Accept(vis SQLAstVisitor) error

func (*Savepoint) Format

func (node *Savepoint) Format(buf *TrackedBuffer)

Format formats the node.

type Select

type 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             string
}

Select represents a SELECT statement.

func NewSelect

func NewSelect(comments Comments, exprs SelectExprs, selectOptions []string, from TableExprs, where *Where, groupBy GroupBy, having *Where) *Select

NewSelect is used to create a select statement

func (*Select) Accept

func (node *Select) Accept(vis SQLAstVisitor) error

func (*Select) AddHaving

func (node *Select) AddHaving(expr Expr)

AddHaving adds the boolean expression to the HAVING clause as an AND condition.

func (*Select) AddOrder

func (node *Select) AddOrder(order *Order)

AddOrder adds an order by element

func (*Select) AddWhere

func (node *Select) AddWhere(expr Expr)

AddWhere adds the boolean expression to the WHERE clause as an AND condition.

func (*Select) Format

func (node *Select) Format(buf *TrackedBuffer)

Format formats the node.

func (*Select) SetLimit

func (node *Select) SetLimit(limit *Limit)

SetLimit sets the limit clause

func (*Select) SetLock

func (node *Select) SetLock(lock string)

SetLock sets the lock clause

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) Accept

func (node SelectExprs) Accept(vis SQLAstVisitor) error

func (SelectExprs) Format

func (node SelectExprs) Format(buf *TrackedBuffer)

Format formats the node.

type SelectStatement

type SelectStatement interface {
	AddOrder(*Order)
	SetLimit(*Limit)
	SetLock(lock string)
	SQLNode
	// contains filtered or unexported methods
}

SelectStatement any SELECT statement.

type Set

type Set struct {
	Comments Comments
	Exprs    SetExprs
}

Set represents a SET statement.

func (*Set) Accept

func (node *Set) Accept(vis SQLAstVisitor) error

func (*Set) Format

func (node *Set) Format(buf *TrackedBuffer)

Format formats the node.

type SetExpr

type SetExpr struct {
	Scope string
	Name  ColIdent
	Expr  Expr
}

SetExpr represents a set expression.

func (*SetExpr) Accept

func (node *SetExpr) Accept(vis SQLAstVisitor) error

func (*SetExpr) Format

func (node *SetExpr) Format(buf *TrackedBuffer)

Format formats the node.

type SetExprs

type SetExprs []*SetExpr

SetExprs represents a list of set expressions.

func (SetExprs) Accept

func (node SetExprs) Accept(vis SQLAstVisitor) error

func (SetExprs) Format

func (node SetExprs) Format(buf *TrackedBuffer)

Format formats the node.

type SetTransaction

type SetTransaction struct {
	SQLNode
	Comments        Comments
	Scope           string
	Characteristics []Characteristic
}

SetTransaction represents a SET TRANSACTION statement.

func (*SetTransaction) Accept

func (node *SetTransaction) Accept(vis SQLAstVisitor) error

func (*SetTransaction) Format

func (node *SetTransaction) Format(buf *TrackedBuffer)

Format formats the node.

type Show

type Show struct {
	Extended               string
	Type                   string
	OnTable                TableName
	Table                  TableName
	ShowTablesOpt          *ShowTablesOpt
	Scope                  string
	ShowCollationFilterOpt Expr
	Columns                Columns
	Comments               Comments
}

Show represents a show statement.

func (*Show) Accept

func (node *Show) Accept(vis SQLAstVisitor) error

func (*Show) Format

func (node *Show) Format(buf *TrackedBuffer)

Format formats the node.

func (*Show) HasOnTable

func (node *Show) HasOnTable() bool

HasOnTable returns true if the show statement has an "on" clause

func (*Show) HasTable

func (node *Show) HasTable() bool

HasTable returns true if the show statement has a parsed table name. Not all show statements parse table names.

type ShowFilter

type ShowFilter struct {
	Like   string
	Filter Expr
}

ShowFilter is show tables filter

func (*ShowFilter) Accept

func (node *ShowFilter) Accept(vis SQLAstVisitor) error

func (*ShowFilter) Format

func (node *ShowFilter) Format(buf *TrackedBuffer)

Format formats the node.

type ShowTablesOpt

type ShowTablesOpt struct {
	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 Sleep

type Sleep struct {
	Duration *SQLVal
}

Statements

func (*Sleep) Accept

func (node *Sleep) Accept(vis SQLAstVisitor) error

func (*Sleep) Format

func (node *Sleep) Format(buf *TrackedBuffer)

Format formats the node.

type StarExpr

type StarExpr struct {
	TableName TableName
}

StarExpr defines a '*' or 'table.*' expression.

func (*StarExpr) Accept

func (node *StarExpr) Accept(vis SQLAstVisitor) error

func (*StarExpr) Format

func (node *StarExpr) Format(buf *TrackedBuffer)

Format formats the node.

type Statement

type Statement interface {
	SQLNode
	// contains filtered or unexported methods
}

Statement represents a statement.

func Parse

func Parse(sql string) (Statement, error)

Parse parses the SQL in full and returns a Statement, which is the AST representation of the query. If a DDL statement is partially parsed but still contains a syntax error, the error is ignored and the DDL is returned anyway.

func ParseNext

func ParseNext(tokenizer *Tokenizer) (Statement, error)

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.

func ParseNextStrictDDL

func ParseNextStrictDDL(tokenizer *Tokenizer) (Statement, error)

ParseNextStrictDDL is the same as ParseNext except it errors on partially parsed DDL statements.

func ParseStrictDDL

func ParseStrictDDL(sql string) (Statement, error)

ParseStrictDDL is the same as Parse except it errors on partially parsed DDL statements.

type StatementType

type StatementType int

StatementType encodes the type of a SQL statement

const (
	StmtSelect StatementType = iota
	StmtStream
	StmtInsert
	StmtReplace
	StmtUpdate
	StmtDelete
	StmtDDL
	StmtBegin
	StmtCommit
	StmtRollback
	StmtSet
	StmtShow
	StmtUse
	StmtOther
	StmtUnknown
	StmtComment
	StmtPriv
	StmtExplain
)

These constants are used to identify the SQL statement type. Changing this list will require reviewing all calls to Preview.

func ASTToStatementType

func ASTToStatementType(stmt Statement) StatementType

ASTToStatementType returns a StatementType from an AST stmt

func Preview

func Preview(sql string) StatementType

Preview analyzes the beginning of the query using a simpler and faster textual comparison to identify the statement type.

func (StatementType) String

func (s StatementType) String() string

type Stream

type Stream struct {
	Comments   Comments
	SelectExpr SelectExpr
	Table      TableName
}

Stream represents a SELECT statement.

func (*Stream) Accept

func (node *Stream) Accept(vis SQLAstVisitor) error

func (*Stream) Format

func (node *Stream) Format(buf *TrackedBuffer)

Format formats the node.

type Subquery

type Subquery struct {
	Select SelectStatement
}

Subquery represents a subquery.

func (*Subquery) Accept

func (node *Subquery) Accept(vis SQLAstVisitor) error

func (*Subquery) Format

func (node *Subquery) Format(buf *TrackedBuffer)

Format formats the node.

type SubstrExpr

type SubstrExpr struct {
	Name   *ColName
	StrVal *SQLVal
	From   Expr
	To     Expr
}

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.

func (*SubstrExpr) Accept

func (node *SubstrExpr) Accept(vis SQLAstVisitor) error

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) Accept

func (node TableExprs) Accept(vis SQLAstVisitor) error

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) Accept

func (node TableIdent) Accept(vis SQLAstVisitor) error

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) GetRawVal

func (node TableIdent) GetRawVal() string

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 TableName

type TableName struct {
	Name, Qualifier, QualifierSecond, QualifierThird TableIdent
}

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.

func TableFromStatement

func TableFromStatement(sql string) (TableName, error)

TableFromStatement returns the qualified table name for the query. This works only for select statements.

func (TableName) Accept

func (node TableName) Accept(vis SQLAstVisitor) error

func (TableName) Format

func (node TableName) Format(buf *TrackedBuffer)

Format formats the node.

func (TableName) GetRawVal

func (tn TableName) GetRawVal() string

func (TableName) IsEmpty

func (node TableName) IsEmpty() bool

IsEmpty returns true if TableName is nil or empty.

func (TableName) ToViewName

func (node TableName) ToViewName() TableName

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) Accept

func (node TableNames) Accept(vis SQLAstVisitor) error

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) Accept

func (node *TableSpec) Accept(vis SQLAstVisitor) error

func (*TableSpec) AddColumn

func (ts *TableSpec) AddColumn(cd *ColumnDefinition)

AddColumn appends the given column to the list in the spec

func (*TableSpec) AddConstraint

func (ts *TableSpec) AddConstraint(cd *ConstraintDefinition)

AddConstraint appends the given index 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

func (*TableSpec) Format

func (ts *TableSpec) Format(buf *TrackedBuffer)

Format formats the node.

type TableValuedFuncTableExpr

type TableValuedFuncTableExpr struct {
	FuncExpr Expr
	As       TableIdent
}

TableValuedFuncTableExpr represents a call to a table-valued function.

func (*TableValuedFuncTableExpr) Accept

func (node *TableValuedFuncTableExpr) Accept(vis SQLAstVisitor) error

func (*TableValuedFuncTableExpr) Format

func (node *TableValuedFuncTableExpr) Format(buf *TrackedBuffer)

Format formats the node.

type TimestampFuncExpr

type TimestampFuncExpr struct {
	Name  string
	Expr1 Expr
	Expr2 Expr
	Unit  string
}

TimestampFuncExpr represents the function and arguments for TIMESTAMP{ADD,DIFF} functions.

func (*TimestampFuncExpr) Accept

func (node *TimestampFuncExpr) Accept(vis SQLAstVisitor) error

func (*TimestampFuncExpr) Format

func (node *TimestampFuncExpr) Format(buf *TrackedBuffer)

Format formats the node.

type Tokenizer

type Tokenizer struct {
	InStream            io.Reader
	AllowComments       bool
	SkipSpecialComments bool
	SkipToEnd           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

func NewStringTokenizer(sql string) *Tokenizer

NewStringTokenizer creates a new Tokenizer for the sql string.

func NewTokenizer

func NewTokenizer(r io.Reader) *Tokenizer

NewTokenizer creates a new Tokenizer reading a sql string from the io.Reader.

func (*Tokenizer) Error

func (tkn *Tokenizer) Error(err string)

Error is called by go yacc if there's a parsing error.

func (*Tokenizer) Lex

func (tkn *Tokenizer) Lex(lval *yySymType) int

Lex returns the next token form the Tokenizer. This function is used by go yacc.

func (*Tokenizer) Scan

func (tkn *Tokenizer) Scan() (int, []byte)

Scan scans the tokenizer for the next token and returns the token type and an optional value.

type TrackedBuffer

type TrackedBuffer struct {
	*strings.Builder
	// contains filtered or unexported fields
}

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) AstPrintf

func (buf *TrackedBuffer) AstPrintf(currentNode SQLNode, format string, values ...interface{})

func (*TrackedBuffer) HasBindVars

func (buf *TrackedBuffer) HasBindVars() bool

HasBindVars returns true if the parsed query uses bind vars.

func (*TrackedBuffer) IsDelimitCols

func (buf *TrackedBuffer) IsDelimitCols() bool

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. It adds parens as needed to follow precedence rules when printing expressions

The name must be something other than the usual Printf() to avoid "go vet" warnings due to our custom format specifiers. *** THIS METHOD SHOULD NOT BE USED FROM ast.go. USE astPrintf INSTEAD ***

func (*TrackedBuffer) ParsedQuery

func (buf *TrackedBuffer) ParsedQuery() *ParsedQuery

ParsedQuery returns a ParsedQuery that contains bind locations for easy substitution.

func (*TrackedBuffer) WithDelimitCols

func (buf *TrackedBuffer) WithDelimitCols(isDelimitCols bool) *TrackedBuffer

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 TupleEqualityList

type TupleEqualityList struct {
	Columns []ColIdent
	Rows    [][]sqltypes.Value
}

TupleEqualityList is for generating equality constraints for tables that have composite primary keys.

func (*TupleEqualityList) EncodeSQL

func (tpl *TupleEqualityList) EncodeSQL(buf *strings.Builder)

EncodeSQL generates the where clause constraints for the tuple equality.

type UnaryCastConcatamerExpr

type UnaryCastConcatamerExpr struct {
	CastConcatamer ListArgConcatamer
	Expr           Expr
}

UnaryCastConcatamerExpr represents an expression with a casting concatamer suffix.

func (*UnaryCastConcatamerExpr) Accept

func (node *UnaryCastConcatamerExpr) Accept(vis SQLAstVisitor) error

func (*UnaryCastConcatamerExpr) Format

func (node *UnaryCastConcatamerExpr) Format(buf *TrackedBuffer)

Format formats the node.

type UnaryExpr

type UnaryExpr struct {
	Operator string
	Expr     Expr
}

UnaryExpr represents a unary value expression.

func (*UnaryExpr) Accept

func (node *UnaryExpr) Accept(vis SQLAstVisitor) error

func (*UnaryExpr) Format

func (node *UnaryExpr) Format(buf *TrackedBuffer)

Format formats the node.

type Union

type Union struct {
	FirstStatement SelectStatement
	UnionSelects   []*UnionSelect
	OrderBy        OrderBy
	Limit          *Limit
	Lock           string
}

Union represents a UNION statement.

func Unionize

func Unionize(lhs, rhs SelectStatement, typ string, by OrderBy, limit *Limit, lock string) *Union

Unionize returns a UNION, either creating one or adding SELECT to an existing one

func (*Union) Accept

func (node *Union) Accept(vis SQLAstVisitor) error

func (*Union) AddOrder

func (node *Union) AddOrder(order *Order)

AddOrder adds an order by element

func (*Union) Format

func (node *Union) Format(buf *TrackedBuffer)

Format formats the node.

func (*Union) SetLimit

func (node *Union) SetLimit(limit *Limit)

SetLimit sets the limit clause

func (*Union) SetLock

func (node *Union) SetLock(lock string)

SetLock sets the lock clause

type UnionSelect

type UnionSelect struct {
	Type      string
	Statement SelectStatement
}

UnionSelect represents union type and select statement after first select statement.

func (*UnionSelect) Accept

func (node *UnionSelect) Accept(vis SQLAstVisitor) error

func (*UnionSelect) Format

func (node *UnionSelect) Format(buf *TrackedBuffer)

Format formats the node.

type Update

type Update struct {
	Action     string
	Comments   Comments
	Ignore     string
	TableExprs TableExprs
	Exprs      UpdateExprs
	From       TableExprs
	Where      *Where
	OrderBy    OrderBy
	Limit      *Limit
}

Update represents an UPDATE statement. If you add fields here, consider adding them to calls to validateUnshardedRoute.

func (*Update) Accept

func (node *Update) Accept(vis SQLAstVisitor) error

func (*Update) Format

func (node *Update) Format(buf *TrackedBuffer)

Format formats the node.

type UpdateExpr

type UpdateExpr struct {
	Name *ColName
	Expr Expr
}

UpdateExpr represents an update expression.

func (*UpdateExpr) Accept

func (node *UpdateExpr) Accept(vis SQLAstVisitor) error

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) Accept

func (node UpdateExprs) Accept(vis SQLAstVisitor) error

func (UpdateExprs) Format

func (node UpdateExprs) Format(buf *TrackedBuffer)

Format formats the node.

type Use

type Use struct {
	DBName TableIdent
}

Use represents a use statement.

func (*Use) Accept

func (node *Use) Accept(vis SQLAstVisitor) error

func (*Use) Format

func (node *Use) Format(buf *TrackedBuffer)

Format formats the node.

type ValTuple

type ValTuple Exprs

ValTuple represents a tuple of actual values.

func (ValTuple) Accept

func (node ValTuple) Accept(vis SQLAstVisitor) error

func (ValTuple) Format

func (node ValTuple) Format(buf *TrackedBuffer)

Format formats the node.

type ValType

type ValType int

ValType specifies the type for SQLVal.

type Values

type Values []ValTuple

Values represents a VALUES clause.

func (Values) Accept

func (node Values) Accept(vis SQLAstVisitor) error

func (Values) Format

func (node Values) Format(buf *TrackedBuffer)

Format formats the node.

type ValuesFuncExpr

type ValuesFuncExpr struct {
	Name *ColName
}

ValuesFuncExpr represents a function call.

func (*ValuesFuncExpr) Accept

func (node *ValuesFuncExpr) Accept(vis SQLAstVisitor) error

func (*ValuesFuncExpr) Format

func (node *ValuesFuncExpr) Format(buf *TrackedBuffer)

Format formats the node.

type VindexParam

type VindexParam struct {
	Key ColIdent
	Val string
}

VindexParam defines a key/value parameter for a CREATE VINDEX statement

func (VindexParam) Accept

func (node VindexParam) Accept(vis SQLAstVisitor) error

func (VindexParam) Format

func (node VindexParam) Format(buf *TrackedBuffer)

Format formats the node.

type VindexSpec

type VindexSpec struct {
	Name   ColIdent
	Type   ColIdent
	Params []VindexParam
}

VindexSpec defines a vindex for a CREATE VINDEX or DROP VINDEX statement

func (*VindexSpec) Accept

func (node *VindexSpec) Accept(vis SQLAstVisitor) error

func (*VindexSpec) Format

func (node *VindexSpec) Format(buf *TrackedBuffer)

Format formats the node. The "CREATE VINDEX" preamble was formatted in the containing DDL node Format, so this just prints the type, any parameters, and optionally the owner

func (*VindexSpec) ParseParams

func (node *VindexSpec) ParseParams() (string, map[string]string)

ParseParams parses the vindex parameter list, pulling out the special-case "owner" parameter

type Visit

type Visit func(node SQLNode) (kontinue bool, err error)

Visit defines the signature of a function that can be used to visit all nodes of a parse tree.

type When

type When struct {
	Cond Expr
	Val  Expr
}

When represents a WHEN sub-expression.

func (*When) Accept

func (node *When) Accept(vis SQLAstVisitor) error

func (*When) Format

func (node *When) Format(buf *TrackedBuffer)

Format formats the node.

type Where

type Where struct {
	Type string
	Expr Expr
}

Where represents a WHERE or HAVING clause.

func NewWhere

func NewWhere(typ string, expr Expr) *Where

NewWhere creates a WHERE or HAVING clause out of a Expr. If the expression is nil, it returns nil.

func (*Where) Accept

func (node *Where) Accept(vis SQLAstVisitor) error

func (*Where) Format

func (node *Where) Format(buf *TrackedBuffer)

Format formats the node.

type XorExpr

type XorExpr struct {
	Left, Right Expr
}

XorExpr represents an XOR expression.

func (*XorExpr) Accept

func (node *XorExpr) Accept(vis SQLAstVisitor) error

func (*XorExpr) Format

func (node *XorExpr) Format(buf *TrackedBuffer)

Format formats the node.

Directories

Path Synopsis
Package visitorgen is responsible for taking the ast.go of Vitess and and producing visitor infrastructure for it.
Package visitorgen is responsible for taking the ast.go of Vitess and and producing visitor infrastructure for it.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL