-
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.
56694: packer: tweak timeouts r=jlinder a=otan Tweak timeouts for slower connections and the abundance of more tests. Release note: None 56783: colexec: make hash joiner more dynamic r=yuzefovich a=yuzefovich **colexec: clean up the hash joiner a bit** When we have unmatched tuples from the left in case of left/full outer hash joins, we still copy the whole vectors according to `buildIdx` selection vector from the right side and then set nulls only for the tuples that didn't have a match. Such approach is a lot more performant then if we were to check for each tuple whether it had a match and copy only the matched ones. This works ok since we assume that `buildIdx` value for unmatched tuples is left as 0 which we didn't explicitly do in distinctCollect variation. Note that it still worked correctly in all cases (both in in-memory hash joiner and external hash joiner) because we're zeroing out the slice when resetting (which is important for the external hash joiner). Given the observation that we're now always setting the correct values in `buildIdx`, `probeIdx`, `probeRowUnmatched`, this commit additionally removes zeroing out of those slices during resetting. Release note: None **colexec: make hash joiner more dynamic** This commit refactors the hash joiner slightly in order to avoid allocating slices with big fixed size which makes the algorithm more dynamic. Release note: None 56837: sql: cleanup SURVIVE ... FAILURE syntax r=ajstorm a=otan sql: remove SURVIVE DEFAULT; rename Survive to SurvivalGoal We still need a concept of "default" for tree.SurviveDefault so that we do not display it syntactically, but the value will be transformed before it is persisted. Release note: None sql: rename SURVIVE AVAILABILITY ZONE FAILURE to SURVIVE ZONE FAILURE Release note (sql change): SURVIVE AVAILABILITY ZONE FAILURE is now SURVIVE ZONE FAILURE. 56854: backupccl: skip TestRestoreMidSchemaChange under race r=adityamaru a=pbardea This test is intended to verify that the particular set of backups taken of descriptors during a schema change. Not much is gained running these under race, but they are very slow so they should be skipped. Fixes #56584. Release note: None Co-authored-by: Oliver Tan <otan@cockroachlabs.com> Co-authored-by: Yahor Yuzefovich <yahor@cockroachlabs.com> Co-authored-by: Paul Bardea <pbardea@gmail.com>
- Loading branch information
Showing
22 changed files
with
262 additions
and
212 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.