-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
38557: exec: protect against unset syncFlowConsumer r=jordanlewis a=asubiotto This should never happen since it implies that the receiver isn't connected correctly. These happen when a node sends a SetupFlow request to a remote node where the spec specifies that the response is on that remote node. We don't see panics in the row execution engine due to wrapping the syncFlowConsumer with a copyingRowReceiver, but this state can cause setupVectorized to panic. This commit protects against this state pending further investigation. Release note: None 38613: exec: Add support for projection of the IN operator r=rohany a=rohany vectorized execution now supports statements of the form ``` select x, x IN (1,2,3) from t; ``` Co-authored-by: Alfonso Subiotto Marqués <alfonso@cockroachlabs.com> Co-authored-by: Rohan Yadav <rohany@alumni.cmu.edu>
- Loading branch information
Showing
3 changed files
with
217 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters