2 Star 2 Fork 1

cockroachdb / cockroach

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
generator.go 3.06 KB
一键复制 编辑 原始数据 按行查看 历史
Tobias Schottdorf 提交于 2017-07-31 17:15 . *: remove // Author: comments
// Copyright 2016 The Cockroach Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package sql
import (
"fmt"
"github.com/pkg/errors"
"golang.org/x/net/context"
"github.com/cockroachdb/cockroach/pkg/sql/parser"
"github.com/cockroachdb/cockroach/pkg/sql/sqlbase"
)
// valueGenerator represents a node that produces rows
// computationally, by means of a "generator function" (called
// "set-generating function" in PostgreSQL).
type valueGenerator struct {
// expr holds the function call that needs to be performed,
// including its arguments that need evaluation, to obtain the
// generator object.
expr parser.TypedExpr
// gen is a reference to the generator object that produces the row
// for this planNode.
gen parser.ValueGenerator
// columns is the signature of this generator.
columns sqlbase.ResultColumns
}
// makeGenerator creates a valueGenerator instance that wraps a call to a
// generator function.
func (p *planner) makeGenerator(ctx context.Context, t *parser.FuncExpr) (planNode, error) {
origName := t.Func.String()
if err := p.parser.AssertNoAggregationOrWindowing(t, "FROM", p.session.SearchPath); err != nil {
return nil, err
}
normalized, err := p.analyzeExpr(
ctx, t, multiSourceInfo{}, parser.IndexedVarHelper{}, parser.TypeAny, false, "FROM",
)
if err != nil {
return nil, err
}
tType, ok := normalized.ResolvedType().(parser.TTable)
if !ok {
return nil, errors.Errorf("FROM expression is not a generator: %s", t)
}
var columns sqlbase.ResultColumns
if len(tType.Cols) == 1 {
columns = sqlbase.ResultColumns{sqlbase.ResultColumn{Name: origName, Typ: tType.Cols[0]}}
} else {
columns = make(sqlbase.ResultColumns, len(tType.Cols))
for i, t := range tType.Cols {
columns[i] = sqlbase.ResultColumn{
Name: fmt.Sprintf("column%d", i+1),
Typ: t,
}
}
}
return &valueGenerator{
expr: normalized,
columns: columns,
}, nil
}
func (n *valueGenerator) Start(params runParams) error {
expr, err := n.expr.Eval(&params.p.evalCtx)
if err != nil {
return err
}
var tb *parser.DTable
if expr == parser.DNull {
tb = parser.EmptyDTable()
} else {
tb = expr.(*parser.DTable)
}
gen := tb.ValueGenerator
if err := gen.Start(); err != nil {
return err
}
n.gen = gen
return nil
}
func (n *valueGenerator) Next(params runParams) (bool, error) {
if err := params.p.cancelChecker.Check(); err != nil {
return false, err
}
return n.gen.Next()
}
func (n *valueGenerator) Values() parser.Datums { return n.gen.Values() }
func (n *valueGenerator) Close(context.Context) {
if n.gen != nil {
n.gen.Close()
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_cockroachdb/cockroach.git
git@gitee.com:mirrors_cockroachdb/cockroach.git
mirrors_cockroachdb
cockroach
cockroach
v1.1.1

搜索帮助

344bd9b3 5694891 D2dac590 5694891