代码拉取完成,页面将自动刷新
// 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 distsqlrun
import (
"errors"
"sync"
"golang.org/x/net/context"
"github.com/cockroachdb/cockroach/pkg/sql/sqlbase"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/cockroachdb/cockroach/pkg/util/tracing"
)
// mergeJoiner performs merge join, it has two input row sources with the same
// ordering on the columns that have equality constraints.
//
// It is guaranteed that the results preserve this ordering.
type mergeJoiner struct {
joinerBase
streamMerger streamMerger
}
var _ Processor = &mergeJoiner{}
func newMergeJoiner(
flowCtx *FlowCtx,
spec *MergeJoinerSpec,
leftSource RowSource,
rightSource RowSource,
post *PostProcessSpec,
output RowReceiver,
) (*mergeJoiner, error) {
for i, c := range spec.LeftOrdering.Columns {
if spec.RightOrdering.Columns[i].Direction != c.Direction {
return nil, errors.New("Unmatched column orderings")
}
}
m := &mergeJoiner{}
// TODO: Adapt MergeJoiner to new joinerBase constructor.
err := m.joinerBase.init(flowCtx, leftSource, rightSource, spec.Type, spec.OnExpr, nil, nil, 0, post, output)
if err != nil {
return nil, err
}
m.streamMerger, err = makeStreamMerger(
leftSource,
convertToColumnOrdering(spec.LeftOrdering),
rightSource,
convertToColumnOrdering(spec.RightOrdering),
output, /*metadataSync*/
)
if err != nil {
return nil, err
}
return m, nil
}
// Run is part of the processor interface.
func (m *mergeJoiner) Run(ctx context.Context, wg *sync.WaitGroup) {
if wg != nil {
defer wg.Done()
}
ctx = log.WithLogTag(ctx, "MergeJoiner", nil)
ctx, span := processorSpan(ctx, "merge joiner")
defer tracing.FinishSpan(span)
log.VEventf(ctx, 2, "starting merge joiner run")
cancelChecker := sqlbase.NewCancelChecker(ctx)
for {
moreBatches, err := m.outputBatch(ctx, cancelChecker)
if err != nil || !moreBatches {
DrainAndClose(
ctx, m.out.output, err, m.leftSource, m.rightSource)
break
}
}
log.VEventf(ctx, 2, "exiting merge joiner run")
}
// outputBatch outputs all the rows corresponding to a streamMerger batch (the
// cross-product of two groups of matching rows).
//
// Returns true if more batches are available and needed. If false is returned,
// the caller should drain the inputs (as the termination condition might have
// been dictated by the consumer saying that no more rows are needed) and close
// the output.
func (m *mergeJoiner) outputBatch(
ctx context.Context, cancelChecker *sqlbase.CancelChecker,
) (bool, error) {
leftRows, rightRows, err := m.streamMerger.NextBatch()
if err != nil {
return false, err
}
if leftRows == nil && rightRows == nil {
return false, nil
}
var matchedRight []bool
if m.joinType == fullOuter || m.joinType == rightOuter {
matchedRight = make([]bool, len(rightRows))
}
for _, lrow := range leftRows {
matched := false
for rIdx, rrow := range rightRows {
if err := cancelChecker.Check(); err != nil {
return false, err
}
renderedRow, err := m.render(lrow, rrow)
if err != nil {
return false, err
}
if renderedRow != nil {
matched = true
if matchedRight != nil {
matchedRight[rIdx] = true
}
consumerStatus, err := m.out.EmitRow(ctx, renderedRow)
if err != nil || consumerStatus != NeedMoreRows {
return false, err
}
}
}
if !matched && !m.maybeEmitUnmatchedRow(ctx, lrow, leftSide) {
return false, nil
}
}
if matchedRight != nil {
// Produce results for unmatched right rows (for RIGHT OUTER or FULL OUTER).
for rIdx, rrow := range rightRows {
if !matchedRight[rIdx] && !m.maybeEmitUnmatchedRow(ctx, rrow, rightSide) {
return false, nil
}
}
}
return true, nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。