本文整理匯總了Golang中github.com/pingcap/tidb/plan.Selection類的典型用法代碼示例。如果您正苦於以下問題:Golang Selection類的具體用法?Golang Selection怎麽用?Golang Selection使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了Selection類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: buildSelection
func (b *executorBuilder) buildSelection(v *plan.Selection) Executor {
child := v.GetChildByIndex(0)
oldConditions := v.Conditions
var src Executor
switch x := child.(type) {
case *plan.PhysicalTableScan:
if x.LimitCount == nil {
src = b.buildNewTableScan(x, v)
} else {
src = b.buildNewTableScan(x, nil)
}
case *plan.PhysicalIndexScan:
if x.LimitCount == nil {
src = b.buildNewIndexScan(x, v)
} else {
src = b.buildNewIndexScan(x, nil)
}
default:
src = b.build(x)
}
if len(v.Conditions) == 0 {
v.Conditions = oldConditions
return src
}
exec := &SelectionExec{
Src: src,
Condition: expression.ComposeCNFCondition(v.Conditions),
schema: v.GetSchema(),
ctx: b.ctx,
}
copy(v.Conditions, oldConditions)
return exec
}
示例2: buildSelection
func (b *executorBuilder) buildSelection(v *plan.Selection) Executor {
exec := &SelectionExec{
Src: b.build(v.GetChildByIndex(0)),
Condition: expression.ComposeCNFCondition(v.Conditions),
schema: v.GetSchema(),
ctx: b.ctx,
}
return exec
}
示例3: buildSelection
func (b *executorBuilder) buildSelection(v *plan.Selection) Executor {
exec := b.build(v.GetChildByIndex(0))
switch exec.(type) {
case *NewTableScanExec:
tableScan := exec.(*NewTableScanExec)
tableScan.where, v.Conditions = b.toPBExpr(v.Conditions, tableScan.tableInfo)
// TODO: Implement NewIndexScan
}
if len(v.Conditions) == 0 {
return exec
}
return &SelectionExec{
Src: exec.(NewExecutor),
Condition: composeCondition(v.Conditions),
schema: v.GetSchema(),
ctx: b.ctx,
}
}
示例4: buildSelection
func (b *executorBuilder) buildSelection(v *plan.Selection) Executor {
child := v.GetChildByIndex(0)
var src Executor
switch x := child.(type) {
case *plan.PhysicalTableScan:
src = b.buildNewTableScan(x, v)
case *plan.PhysicalIndexScan:
src = b.buildNewIndexScan(x, v)
default:
src = b.build(x)
}
if len(v.Conditions) == 0 {
return src
}
return &SelectionExec{
Src: src,
Condition: expression.ComposeCNFCondition(v.Conditions),
schema: v.GetSchema(),
ctx: b.ctx,
}
}
示例5: buildSelection
func (b *executorBuilder) buildSelection(v *plan.Selection) Executor {
ts, ok := v.GetChildByIndex(0).(*plan.NewTableScan)
var src Executor
if ok {
src = b.buildNewTableScan(ts, v)
} else {
src = b.build(v.GetChildByIndex(0))
}
if len(v.Conditions) == 0 {
return src
}
return &SelectionExec{
Src: src,
Condition: expression.ComposeCNFCondition(v.Conditions),
schema: v.GetSchema(),
ctx: b.ctx,
}
}