本文整理汇总了Golang中github.com/cockroachdb/cockroach/sql/parser.WalkExpr函数的典型用法代码示例。如果您正苦于以下问题:Golang WalkExpr函数的具体用法?Golang WalkExpr怎么用?Golang WalkExpr使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了WalkExpr函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: applyConstraints
// applyConstraints applies the constraints on values specified by constraints
// to an expression, simplifying the expression where possible. For example, if
// the expression is "a = 1" and the constraint is "a = 1", the expression can
// be simplified to "true". If the expression is "a = 1 AND b > 2" and the
// constraint is "a = 1", the expression is simplified to "b > 2".
//
// Note that applyConstraints currently only handles simple cases.
func applyConstraints(expr parser.Expr, constraints indexConstraints) parser.Expr {
v := &applyConstraintsVisitor{}
for _, c := range constraints {
v.constraint = c
expr = parser.WalkExpr(v, expr)
// We can only continue to apply the constraints if the constraints we have
// applied so far are equality constraints. There are two cases to
// consider: the first is that both the start and end constraints are
// equality.
if c.start == c.end {
if c.start.Operator == parser.EQ {
continue
}
// The second case is that both the start and end constraint are an IN
// operator with only a single value.
if c.start.Operator == parser.In && len(c.start.Right.(parser.DTuple)) == 1 {
continue
}
}
break
}
if expr == parser.DBool(true) {
return nil
}
return expr
}
示例2: applyConstraints
// applyConstraints applies the constraints on values specified by constraints
// to an expression, simplifying the expression where possible. For example, if
// the expression is "a = 1" and the constraint is "a = 1", the expression can
// be simplified to "true". If the expression is "a = 1 AND b > 2" and the
// constraint is "a = 1", the expression is simplified to "b > 2".
//
// Note that applyConstraints currently only handles simple cases.
func applyConstraints(expr parser.Expr, constraints orIndexConstraints) parser.Expr {
if len(constraints) != 1 {
// We only support simplifying the expressions if there aren't multiple
// disjunctions (top-level OR branches).
return expr
}
v := &applyConstraintsVisitor{}
for _, c := range constraints[0] {
v.constraint = c
expr, _ = parser.WalkExpr(v, expr)
// We can only continue to apply the constraints if the constraints we have
// applied so far are equality constraints. There are two cases to
// consider: the first is that both the start and end constraints are
// equality.
if c.start == c.end {
if c.start.Operator == parser.EQ {
continue
}
// The second case is that both the start and end constraint are an IN
// operator with only a single value.
if c.start.Operator == parser.In && len(c.start.Right.(parser.DTuple)) == 1 {
continue
}
}
break
}
if expr == parser.DBool(true) {
return nil
}
return expr
}
示例3: countVars
// countVars counts how many *QualifiedName and *qvalue nodes are in an expression.
func countVars(expr parser.Expr) (numQNames, numQValues int) {
v := countVarsVisitor{}
if expr != nil {
parser.WalkExpr(&v, expr)
}
return v.numQNames, v.numQValues
}
示例4: collectSubqueryPlans
func (p *planner) collectSubqueryPlans(expr parser.Expr, result []planNode) []planNode {
if expr == nil {
return result
}
p.collectSubqueryPlansVisitor = collectSubqueryPlansVisitor{plans: result}
_, _ = parser.WalkExpr(&p.collectSubqueryPlansVisitor, expr)
return p.collectSubqueryPlansVisitor.plans
}
示例5: expandSubqueryPlans
func (p *planner) expandSubqueryPlans(expr parser.Expr) error {
if expr == nil {
return nil
}
p.subqueryPlanVisitor = subqueryPlanVisitor{doExpand: true}
_, _ = parser.WalkExpr(&p.subqueryPlanVisitor, expr)
return p.subqueryPlanVisitor.err
}
示例6: Walk
func (q *qvalue) Walk(v parser.Visitor) parser.Expr {
e, _ := parser.WalkExpr(v, q.datum)
// Typically Walk implementations are not supposed to modify nodes in-place, in order to
// preserve the original transaction statement and expressions. However, `qvalue` is our type
// (which we have "stiched" into an expression) so we aren't modifying an original expression.
q.datum = e.(parser.Datum)
return q
}
示例7: resolveQNames
func (s *selectNode) resolveQNames(expr parser.Expr) (parser.Expr, *roachpb.Error) {
if expr == nil {
return expr, nil
}
v := qnameVisitor{selNode: s}
expr = parser.WalkExpr(&v, expr)
return expr, v.pErr
}
示例8: resolveQNames
func (n *scanNode) resolveQNames(expr parser.Expr) (parser.Expr, error) {
if expr == nil {
return expr, nil
}
v := qnameVisitor{scanNode: n}
expr = parser.WalkExpr(&v, expr)
return expr, v.err
}
示例9: aggregateInWhere
func (p *planner) aggregateInWhere(where *parser.Where) bool {
if where != nil {
defer p.isAggregateVisitor.reset()
_ = parser.WalkExpr(&p.isAggregateVisitor, where.Expr)
if p.isAggregateVisitor.aggregated {
return true
}
}
return false
}
示例10: startSubqueryPlans
func (p *planner) startSubqueryPlans(expr parser.Expr) error {
if expr == nil {
return nil
}
// We also run and pre-evaluate the subqueries during start,
// so as to avoid re-running the sub-query for every row
// in the results of the surrounding planNode.
p.subqueryPlanVisitor = subqueryPlanVisitor{doStart: true, doEval: true}
_, _ = parser.WalkExpr(&p.subqueryPlanVisitor, expr)
return p.subqueryPlanVisitor.err
}
示例11: applyConstraints
// applyConstraints applies the constraints on values specified by constraints
// to an expression, simplifying the expression where possible. For example, if
// the expression is "a = 1" and the constraint is "a = 1", the expression can
// be simplified to "true". If the expression is "a = 1 AND b > 2" and the
// constraint is "a = 1", the expression is simplified to "b > 2".
//
// Note that applyConstraints currently only handles simple cases.
func applyConstraints(expr parser.Expr, constraints indexConstraints) parser.Expr {
v := &applyConstraintsVisitor{}
for _, c := range constraints {
v.constraint = c
expr = parser.WalkExpr(v, expr)
}
if expr == parser.DBool(true) {
return nil
}
return expr
}
示例12: isAggregate
func (p *planner) isAggregate(n *parser.Select) bool {
if n.Having != nil || len(n.GroupBy) > 0 {
return true
}
for _, target := range n.Exprs {
_ = parser.WalkExpr(&p.isAggregateVisitor, target.Expr)
if p.isAggregateVisitor.aggregated {
return true
}
}
return false
}
示例13: resolveQNames
func resolveQNames(table *tableInfo, qvals qvalMap, expr parser.Expr) (parser.Expr, error) {
if expr == nil {
return expr, nil
}
v := qnameVisitor{
qt: qvalResolver{
table: table,
qvals: qvals,
},
}
expr = parser.WalkExpr(&v, expr)
return expr, v.err
}
示例14: isAggregateExprs
func isAggregateExprs(n *parser.Select) bool {
if n.Having != nil || len(n.GroupBy) > 0 {
return true
}
v := isAggregateVisitor{}
for _, target := range n.Exprs {
_ = parser.WalkExpr(&v, target.Expr)
if v.aggregated {
return true
}
}
return false
}
示例15: resolveQNames
// resolveQNames walks the provided expression and resolves all qualified
// names using the tableInfo and qvalMap. The function takes an optional
// qnameVisitor to provide the caller the option of avoiding an allocation.
func resolveQNames(expr parser.Expr, table *tableInfo, qvals qvalMap, v *qnameVisitor) (parser.Expr, error) {
if expr == nil {
return expr, nil
}
if v == nil {
v = new(qnameVisitor)
}
*v = qnameVisitor{
qt: qvalResolver{
table: table,
qvals: qvals,
},
}
expr, _ = parser.WalkExpr(v, expr)
return expr, v.err
}