当前位置: 首页>>代码示例>>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;未经允许,请勿转载。