Documentation ¶
Index ¶
- Variables
- func GetSubqueryAndOtherSide(node *sqlparser.ComparisonExpr) (*sqlparser.Subquery, sqlparser.Expr)
- func RewriteDerivedExpression(expr sqlparser.Expr, vt TableInfo) (sqlparser.Expr, error)
- func ValidAsMapKey(s sqlparser.SQLNode) bool
- type ColumnInfo
- type DerivedTable
- type ExprDependencies
- type FakeSI
- type ProjError
- type RealTable
- type SchemaInformation
- type SemTable
- func (st *SemTable) AddColumnEquality(colName *sqlparser.ColName, expr sqlparser.Expr)
- func (st *SemTable) AddExprs(tbl *sqlparser.AliasedTableExpr, cols sqlparser.SelectExprs)
- func (st *SemTable) CollationForExpr(e sqlparser.Expr) collations.ID
- func (st *SemTable) ColumnLookup(col *sqlparser.ColName) (int, error)
- func (st *SemTable) CopyDependencies(from, to sqlparser.Expr)
- func (st *SemTable) CopyExprInfo(src, dest sqlparser.Expr)
- func (st *SemTable) DefaultCollation() collations.ID
- func (st *SemTable) DirectDeps(expr sqlparser.Expr) TableSet
- func (st *SemTable) FindSubqueryReference(subquery *sqlparser.Subquery) *sqlparser.ExtractedSubquery
- func (st *SemTable) GetExprAndEqualities(expr sqlparser.Expr) []sqlparser.Expr
- func (st *SemTable) GetSelectTables(node *sqlparser.Select) []TableInfo
- func (st *SemTable) GetSubqueryNeedingRewrite() []*sqlparser.ExtractedSubquery
- func (st *SemTable) RecursiveDeps(expr sqlparser.Expr) TableSet
- func (st *SemTable) SingleUnshardedKeyspace() *vindexes.Keyspace
- func (st *SemTable) TableInfoFor(id TableSet) (TableInfo, error)
- func (st *SemTable) TableInfoForExpr(expr sqlparser.Expr) (TableInfo, error)
- func (st *SemTable) TableSetFor(t *sqlparser.AliasedTableExpr) TableSet
- func (st *SemTable) TypeFor(e sqlparser.Expr) *querypb.Type
- type TableInfo
- type TableSet
- func (ts *TableSet) AddTable(tableidx int)
- func (ts TableSet) Constituents() (result []int)
- func (ts TableSet) Equals(other TableSet) bool
- func (ts TableSet) ForEachTable(callback func(int))
- func (ts TableSet) Format(f fmt.State, verb rune)
- func (ts TableSet) IsOverlapping(other TableSet) bool
- func (ts TableSet) IsSolvedBy(other TableSet) bool
- func (ts *TableSet) KeepOnly(other TableSet)
- func (ts TableSet) Merge(other TableSet) TableSet
- func (ts *TableSet) MergeInPlace(other TableSet)
- func (ts TableSet) NumberOfTables() int
- func (ts *TableSet) RemoveInPlace(other TableSet)
- func (ts TableSet) TableOffset() int
- type Type
- type VindexTable
Constants ¶
This section is empty.
Variables ¶
var ( // ErrMultipleTables refers to an error happening when something should be used only for single tables ErrMultipleTables = vterrors.Errorf(vtrpcpb.Code_INTERNAL, "[BUG] should only be used for single tables") )
Functions ¶
func GetSubqueryAndOtherSide ¶ added in v0.13.0
GetSubqueryAndOtherSide returns the subquery and other side of a comparison, iff one of the sides is a SubQuery
func RewriteDerivedExpression ¶ added in v0.12.0
RewriteDerivedExpression rewrites all the ColName instances in the supplied expression with the expressions behind the column definition of the derived table SELECT foo FROM (SELECT id+42 as foo FROM user) as t We need `foo` to be translated to `id+42` on the inside of the derived table
func ValidAsMapKey ¶ added in v0.13.0
Types ¶
type ColumnInfo ¶ added in v0.12.0
ColumnInfo contains information about columns
type DerivedTable ¶ added in v0.13.0
type DerivedTable struct { ASTNode *sqlparser.AliasedTableExpr // contains filtered or unexported fields }
DerivedTable contains the information about the projection, tables involved in derived table.
func (*DerivedTable) GetVindexTable ¶ added in v0.13.0
func (dt *DerivedTable) GetVindexTable() *vindexes.Table
GetVindexTable implements the TableInfo interface
func (*DerivedTable) IsInfSchema ¶ added in v0.13.0
func (dt *DerivedTable) IsInfSchema() bool
IsInfSchema implements the TableInfo interface
type ExprDependencies ¶ added in v0.12.0
ExprDependencies stores the tables that an expression depends on as a map
type FakeSI ¶ added in v0.11.0
FakeSI is a fake SchemaInformation for testing
func (FakeSI) ConnCollation ¶ added in v0.13.0
func (FakeSI) ConnCollation() collations.ID
func (*FakeSI) FindTableOrVindex ¶ added in v0.11.0
func (s *FakeSI) FindTableOrVindex(tablename sqlparser.TableName) (*vindexes.Table, vindexes.Vindex, string, topodatapb.TabletType, key.Destination, error)
FindTableOrVindex implements the SchemaInformation interface
type ProjError ¶ added in v0.12.0
type ProjError struct {
Inner error
}
ProjError is used to mark an error as something that should only be returned if the planner fails to merge everything down to a single route
type RealTable ¶ added in v0.12.0
type RealTable struct { ASTNode *sqlparser.AliasedTableExpr Table *vindexes.Table // contains filtered or unexported fields }
RealTable contains the alias table expr and vindex table
func (*RealTable) GetVindexTable ¶ added in v0.12.0
GetVindexTable implements the TableInfo interface
func (*RealTable) IsInfSchema ¶ added in v0.12.0
IsInfSchema implements the TableInfo interface
type SchemaInformation ¶ added in v0.11.0
type SchemaInformation interface { FindTableOrVindex(tablename sqlparser.TableName) (*vindexes.Table, vindexes.Vindex, string, topodatapb.TabletType, key.Destination, error) ConnCollation() collations.ID }
SchemaInformation is used tp provide table information from Vschema.
type SemTable ¶
type SemTable struct { Tables []TableInfo // NotSingleRouteErr stores any errors that have to be generated if the query cannot be planned as a single route. NotSingleRouteErr error // Recursive contains the dependencies from the expression to the actual tables // in the query (i.e. not including derived tables). If an expression is a column on a derived table, // this map will contain the accumulated dependencies for the column expression inside the derived table Recursive ExprDependencies // Direct keeps information about the closest dependency for an expression. // It does not recurse inside derived tables and the like to find the original dependencies Direct ExprDependencies ExprTypes map[sqlparser.Expr]Type Comments sqlparser.Comments SubqueryMap map[*sqlparser.Select][]*sqlparser.ExtractedSubquery SubqueryRef map[*sqlparser.Subquery]*sqlparser.ExtractedSubquery // ColumnEqualities is used to enable transitive closures // if a == b and b == c then a == c ColumnEqualities map[columnName][]sqlparser.Expr // DefaultCollation is the default collation for this query, which is usually // inherited from the connection's default collation. Collation collations.ID Warning string // contains filtered or unexported fields }
SemTable contains semantic analysis information about the query.
func Analyze ¶ added in v0.11.0
func Analyze(statement sqlparser.SelectStatement, currentDb string, si SchemaInformation) (*SemTable, error)
Analyze analyzes the parsed query.
func EmptySemTable ¶ added in v0.13.0
func EmptySemTable() *SemTable
EmptySemTable creates a new empty SemTable
func (*SemTable) AddColumnEquality ¶ added in v0.12.0
AddColumnEquality adds a relation of the given colName to the ColumnEqualities map
func (*SemTable) AddExprs ¶ added in v0.11.0
func (st *SemTable) AddExprs(tbl *sqlparser.AliasedTableExpr, cols sqlparser.SelectExprs)
AddExprs adds new select exprs to the SemTable.
func (*SemTable) CollationForExpr ¶ added in v0.13.0
func (st *SemTable) CollationForExpr(e sqlparser.Expr) collations.ID
CollationForExpr returns the collation name of expressions in the query
func (*SemTable) ColumnLookup ¶ added in v0.13.0
ColumnLookup implements the ConverterLookup interface
func (*SemTable) CopyDependencies ¶ added in v0.12.0
CopyDependencies copies the dependencies from one expression into the other
func (*SemTable) CopyExprInfo ¶ added in v0.13.0
CopyExprInfo lookups src in the ExprTypes map and, if a key is found, assign the corresponding Type value of src to dest.
func (*SemTable) DefaultCollation ¶ added in v0.13.0
func (st *SemTable) DefaultCollation() collations.ID
func (*SemTable) DirectDeps ¶ added in v0.12.0
DirectDeps return the table dependencies of the expression.
func (*SemTable) FindSubqueryReference ¶ added in v0.13.0
func (st *SemTable) FindSubqueryReference(subquery *sqlparser.Subquery) *sqlparser.ExtractedSubquery
FindSubqueryReference goes over the sub queries and searches for it by value equality instead of reference equality
func (*SemTable) GetExprAndEqualities ¶ added in v0.12.0
GetExprAndEqualities returns a slice containing the given expression, and it's known equalities if any
func (*SemTable) GetSelectTables ¶ added in v0.11.0
GetSelectTables returns the table in the select.
func (*SemTable) GetSubqueryNeedingRewrite ¶ added in v0.13.0
func (st *SemTable) GetSubqueryNeedingRewrite() []*sqlparser.ExtractedSubquery
GetSubqueryNeedingRewrite returns a list of sub-queries that need to be rewritten
func (*SemTable) RecursiveDeps ¶ added in v0.12.0
RecursiveDeps return the table dependencies of the expression.
func (*SemTable) SingleUnshardedKeyspace ¶ added in v0.13.0
SingleUnshardedKeyspace returns the single keyspace if all tables in the query are in the same, unsharded keyspace
func (*SemTable) TableInfoFor ¶ added in v0.11.0
TableInfoFor returns the table info for the table set. It should contains only single table.
func (*SemTable) TableInfoForExpr ¶ added in v0.12.0
TableInfoForExpr returns the table info of the table that this expression depends on. Careful: this only works for expressions that have a single table dependency
func (*SemTable) TableSetFor ¶
func (st *SemTable) TableSetFor(t *sqlparser.AliasedTableExpr) TableSet
TableSetFor returns the bitmask for this particular table
type TableInfo ¶ added in v0.11.0
type TableInfo interface { // Name returns the table name Name() (sqlparser.TableName, error) // GetVindexTable returns the vschema version of this TableInfo GetVindexTable() *vindexes.Table // IsInfSchema returns true if this table is information_schema IsInfSchema() bool // contains filtered or unexported methods }
TableInfo contains information about tables
type TableSet ¶
type TableSet struct {
// contains filtered or unexported fields
}
TableSet is how a set of tables is expressed. Tables get unique bits assigned in the order that they are encountered during semantic analysis. This TableSet implementation is optimized for sets of less than 64 tables, but can grow to support an arbitrary large amount of tables.
func EmptyTableSet ¶ added in v0.13.0
func EmptyTableSet() TableSet
EmptyTableSet creates an empty TableSet
func MergeTableSets ¶ added in v0.12.0
MergeTableSets merges all the given TableSet into a single one
func SingleTableSet ¶ added in v0.12.0
SingleTableSet creates a TableSet that contains only the given table
func TableSetFromIds ¶ added in v0.12.0
TableSetFromIds returns TableSet for all the id passed in argument.
func (TableSet) Constituents ¶
Constituents returns a slice with the indices for all tables in this TableSet
func (TableSet) Equals ¶ added in v0.13.0
Equals returns true if `ts` and `other` contain the same tables
func (TableSet) ForEachTable ¶ added in v0.12.0
ForEachTable calls the given callback with the indices for all tables in this TableSet
func (TableSet) IsOverlapping ¶
IsOverlapping returns true if at least one table exists in both sets
func (TableSet) IsSolvedBy ¶
IsSolvedBy returns true if all of `ts` is contained in `other`
func (*TableSet) KeepOnly ¶ added in v0.13.0
KeepOnly removes all the tables not in `other` from this TableSet
func (*TableSet) MergeInPlace ¶ added in v0.12.0
MergeInPlace merges all the tables in `other` into this TableSet
func (TableSet) NumberOfTables ¶
NumberOfTables returns the number of bits set
func (*TableSet) RemoveInPlace ¶ added in v0.13.0
RemoveInPlace removes all the tables in `other` from this TableSet
func (TableSet) TableOffset ¶ added in v0.11.0
TableOffset returns the offset in the Tables array from TableSet
type Type ¶ added in v0.13.0
type Type struct { Type querypb.Type Collation collations.ID }
Type is the normal querypb.Type with collation
type VindexTable ¶ added in v0.12.0
VindexTable contains a vindexes.Vindex and a TableInfo. The former represents the vindex we are keeping information about, and the latter represents the additional table information (usually a RealTable or an AliasedTable) of our vindex.
func (*VindexTable) GetVindexTable ¶ added in v0.12.0
func (v *VindexTable) GetVindexTable() *vindexes.Table
GetVindexTable implements the TableInfo interface
func (*VindexTable) IsInfSchema ¶ added in v0.12.0
func (v *VindexTable) IsInfSchema() bool
IsInfSchema implements the TableInfo interface