代码拉取完成,页面将自动刷新
// Copyright 2017 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 distsqlrun
import (
"sync"
"golang.org/x/net/context"
"github.com/cockroachdb/cockroach/pkg/sql/sqlbase"
"github.com/cockroachdb/cockroach/pkg/util/tracing"
)
// valuesProcessor is a processor that has no inputs and generates "pre-canned"
// rows.
type valuesProcessor struct {
processorBase
flowCtx *FlowCtx
columns []DatumInfo
data [][]byte
}
var _ Processor = &valuesProcessor{}
func newValuesProcessor(
flowCtx *FlowCtx, spec *ValuesCoreSpec, post *PostProcessSpec, output RowReceiver,
) (*valuesProcessor, error) {
v := &valuesProcessor{
flowCtx: flowCtx,
columns: spec.Columns,
data: spec.RawBytes,
}
types := make([]sqlbase.ColumnType, len(v.columns))
for i := range v.columns {
types[i] = v.columns[i].Type
}
if err := v.out.Init(post, types, &flowCtx.EvalCtx, output); err != nil {
return nil, err
}
return v, nil
}
// Run is part of the processor interface.
func (v *valuesProcessor) Run(ctx context.Context, wg *sync.WaitGroup) {
if wg != nil {
defer wg.Done()
}
ctx, span := processorSpan(ctx, "values")
defer tracing.FinishSpan(span)
// We reuse the code in StreamDecoder for decoding the raw data. We just need
// to manufacture ProducerMessages.
var sd StreamDecoder
m := ProducerMessage{
Typing: v.columns,
// Add a bogus header to apease the StreamDecoder, which wants to receive a
// header before any data.
Header: &ProducerHeader{}}
if err := sd.AddMessage(&m); err != nil {
DrainAndClose(ctx, v.out.output, err)
return
}
m = ProducerMessage{}
rowBuf := make(sqlbase.EncDatumRow, len(v.columns))
for len(v.data) > 0 {
// Push a chunk of data.
m.Data.RawBytes = v.data[0]
if err := sd.AddMessage(&m); err != nil {
DrainAndClose(ctx, v.out.output, err)
return
}
v.data = v.data[1:]
for {
row, meta, err := sd.GetRow(rowBuf)
if err != nil {
// If we got a decoding error, pass it along.
meta.Err = err
}
if row == nil && meta.Empty() {
break
}
if !emitHelper(ctx, &v.out, row, meta) {
return
}
}
}
sendTraceData(ctx, v.out.output)
v.out.Close()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。