-
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.
43851: colexec: use the same struct for buffering tuples r=yuzefovich a=yuzefovich Previously, all buffering components (allSpooler, chunker, merge joiner, hash table) were using custom ways to store the buffered tuples (as a slice of coldata.Vec's with uint64 length). However, the intention is the same, and this commit renames existing mjBufferedGroup to bufferedBatch. The latter is now used in all buffering components. Release note: None 43903: cli: remove the `cockroach user` sub-command r=knz a=knz Fixes #33594. Release note (backward-incompatible change): The `cockroach user` CLI command has been removed. It had been deprecated in CockroachDB 19.2. Note that a 19.2 client (supporting `cockroach user`) can still operate user accounts in a 20.1 server. Co-authored-by: Yahor Yuzefovich <yahor@cockroachlabs.com> Co-authored-by: Raphael 'kena' Poss <knz@thaumogen.net>
- Loading branch information
Showing
16 changed files
with
181 additions
and
603 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -196,7 +196,6 @@ func init() { | |
quitCmd, | ||
|
||
sqlShellCmd, | ||
userCmd, | ||
nodeCmd, | ||
dumpCmd, | ||
nodeLocalCmd, | ||
|
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
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
Oops, something went wrong.