-
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.
Browse files
Browse the repository at this point in the history
100678: cli: unskip TestUnavailableZip r=aadityasondhi a=aadityasondhi cli: make debug zip resilient to single failures This fixes a regression in debug zip where a timeout failure in calls to the status server would fail the entire collection of debug zip. We instead want to continue trying all endpoints instead. ---- cli: unskip TestUnavailableZip Fixes: #53306 Release note: None 101892: colexecjoin: minor cleanup of the hash joiner r=yuzefovich a=yuzefovich This commit adds the missing memory accounting for the `buildRowMatched` slice used by the hash joiner for FULL OUTER, RIGHT OUTER, RIGHT SEMI, and RIGHT ANTI joins. Unlike other slices in `probeState` struct, this slice is the only one that is of non-constant size (i.e. it's not limited by `coldata.BatchSize()`), so we should be including it into the accounting. It also removes the redundant allocation of `Visited` slice for LEFT ANTI joins since that slice isn't used by that join type. Additionally, this commit makes a few minor adjustments to the comments and to reusing a utility method for slice allocation. Epic: None Release note: None 101920: logictest: remove a couple of redundant rowsort directives r=yuzefovich a=yuzefovich Two queries have ORDER BY which should provide unique ordering. Noticed when reviewing another change. Epic: None Release note: None 101928: sql: cap the tenant IDs that can be allocated via create_tenant r=yuzefovich a=knz Requested by `@yuzefovich` [here](#101845 (review)). This patch introduces a limit (MaxUint32) to the fixed IDs that can be selected by `crdb_internal.create_tenant`. This ensures that there are always IDs remaining available for CREATE TENANT after the maximum value has been selected via `create_tenant`. Release note: None Epic: CRDB-23559 Co-authored-by: Aaditya Sondhi <[email protected]> Co-authored-by: Yahor Yuzefovich <[email protected]> Co-authored-by: Raphael 'kena' Poss <[email protected]>
- Loading branch information
Showing
9 changed files
with
199 additions
and
149 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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