-
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.
45704: colexec: add distinct mode to hashTable r=Azhng a=Azhng Previously hashTable will buffer all tuples before building `head` and `same` vector. Now hashTable supports distinct mode where it only buffers the distinct tuples from upstream operator. This removes the need of traversing through the `head` and `same` vectors. Instead, now user of the hashTable can directly build hashTable in distinct mode and copy the buffered tuples. Closes #44404 Release note: None 45727: cli: allow for `cockroach demo` to start in secure mode r=knz a=rohany Fixes #45607. Release note (cli change): This PR adds support for `cockroach demo` to start in secure mode using the flag `--insecure=false`. 45759: storage: Do not create nil data pointers in rocksdb slices r=miretskiy a=miretskiy Fixes #45524 Libroach's DBSlice data type gets converted to the rocksdb::Slice whenever we need to access underlying rocksdb (iterators, get/set, etc). However, internally, rocksdb::Slice asserts that the underlying data pointer may not be null in the rocksdb::Slice::compare as observed in #45524 This change modifies our rocksdb bridge code to never generate DBSlices with nullptr data. Release notes: None Co-authored-by: Azhng <archer.xn@gmail.com> Co-authored-by: Rohan Yadav <rohany@alumni.cmu.edu> Co-authored-by: Yevgeniy Miretskiy <yevgeniy@cockroachlabs.com>
- Loading branch information
Showing
16 changed files
with
776 additions
and
324 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
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
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.