Skip to content

Commit

Permalink
Merge pull request cockroachdb#86628 from cockroachdb/blathers/backpo…
Browse files Browse the repository at this point in the history
…rt-release-21.2-86600

release-21.2: colexec: make sure to init child op chains in AND and OR operators
  • Loading branch information
yuzefovich authored Aug 24, 2022
2 parents c32478f + eeee919 commit 2326e63
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions pkg/sql/colexec/and_or_projection.eg.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pkg/sql/colexec/and_or_projection_tmpl.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ func (o *_OP_LOWERProjOp) Init(ctx context.Context) {
return
}
o.input.Init(o.Ctx)
o.leftProjOpChain.Init(o.Ctx)
o.rightProjOpChain.Init(o.Ctx)
}

// Next is part of the colexecop.Operator interface.
Expand Down

0 comments on commit 2326e63

Please sign in to comment.