當前位置: 首頁>>代碼示例>>Golang>>正文


Golang plan.Selection類代碼示例

本文整理匯總了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
}
開發者ID:c4pt0r,項目名稱:tidb,代碼行數:35,代碼來源:new_builder.go

示例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
}
開發者ID:jmptrader,項目名稱:tidb,代碼行數:9,代碼來源:builder.go

示例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,
	}
}
開發者ID:tangfeixiong,項目名稱:tidb,代碼行數:20,代碼來源:new_builder.go

示例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,
	}
}
開發者ID:yubobo,項目名稱:tidb,代碼行數:23,代碼來源:new_builder.go

示例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,
	}
}
開發者ID:xxwwbb3,項目名稱:tidb,代碼行數:20,代碼來源:new_builder.go


注:本文中的github.com/pingcap/tidb/plan.Selection類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。