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


Golang distinct.CreateDistinctChecker函數代碼示例

本文整理匯總了Golang中github.com/pingcap/tidb/util/distinct.CreateDistinctChecker函數的典型用法代碼示例。如果您正苦於以下問題:Golang CreateDistinctChecker函數的具體用法?Golang CreateDistinctChecker怎麽用?Golang CreateDistinctChecker使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了CreateDistinctChecker函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: getStreamedContext

func (af *aggFunction) getStreamedContext() *ast.AggEvaluateContext {
	if af.streamCtx == nil {
		af.streamCtx = &ast.AggEvaluateContext{}
		if af.Distinct {
			af.streamCtx.DistinctChecker = distinct.CreateDistinctChecker()
		}
	}
	return af.streamCtx
}
開發者ID:pingcap,項目名稱:tidb,代碼行數:9,代碼來源:aggregation.go

示例2: getContext

func (af *aggFunction) getContext(groupKey []byte) *ast.AggEvaluateContext {
	ctx, ok := af.resultMapper[string(groupKey)]
	if !ok {
		ctx = &ast.AggEvaluateContext{}
		if af.Distinct {
			ctx.DistinctChecker = distinct.CreateDistinctChecker()
		}
		af.resultMapper[string(groupKey)] = ctx
	}
	return ctx
}
開發者ID:yangxuanjia,項目名稱:tidb,代碼行數:11,代碼來源:aggregation.go

示例3: GetContext

// GetContext gets aggregate evaluation context for the current group.
// If it is nil, add a new context into contextPerGroupMap.
func (n *AggregateFuncExpr) GetContext() *AggEvaluateContext {
	if n.contextPerGroupMap == nil {
		n.contextPerGroupMap = make(map[string](*AggEvaluateContext))
	}
	if _, ok := n.contextPerGroupMap[n.CurrentGroup]; !ok {
		c := &AggEvaluateContext{}
		if n.Distinct {
			c.distinctChecker = distinct.CreateDistinctChecker()
		}
		n.contextPerGroupMap[n.CurrentGroup] = c
	}
	return n.contextPerGroupMap[n.CurrentGroup]
}
開發者ID:52Jolynn,項目名稱:tidb,代碼行數:15,代碼來源:functions.go

示例4: Next

// Next implements Executor Next interface.
func (e *DistinctExec) Next() (*Row, error) {
	if e.checker == nil {
		e.checker = distinct.CreateDistinctChecker()
	}
	for {
		row, err := e.Src.Next()
		if err != nil {
			return nil, errors.Trace(err)
		}
		if row == nil {
			return nil, nil
		}
		ok, err := e.checker.Check(types.DatumsToInterfaces(row.Data))
		if err != nil {
			return nil, errors.Trace(err)
		}
		if !ok {
			continue
		}
		return row, nil
	}
}
開發者ID:XuHuaiyu,項目名稱:tidb,代碼行數:23,代碼來源:executor.go


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