-
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
60512: backupccl: update backup detached tests with retry execution under transaction r=pbardea a=Elliebababa update backup and restore detached tests with retry execution under transaction Previously, backup and restore detached tests do not retry if transactions fail. They could be flaky tests and fail in CI check. With this PR, backup and restore detached tests under transaction will not be aborted by retry errors. Release notes: None. 60594: build: explicitly add unzip as a dependency r=rickystewart a=ulfjack The `unzip` package is not installed by default in Ubuntu. It's currently pulled in as an implicit dependency of the Bazel package, but that breaks if Bazel ever removes that dependency (or when changing the Dockerfile to not install Bazel). 60648: distsql: improve test harness for processors against operators r=yuzefovich a=yuzefovich Previously, when comparing the output of processors and operators, if any order is allowed, we would perform a quadratic search. This is suboptimal, and this commit improves the situation by sorting both outputs first and then using the ordered comparison. Additionally, this commit fixes a rare flake when seemingly the same outputs would result in a mismatch. I could somewhat reliably reproduce it before the patch and cannot reproduce it after the patch. It is likely to do something with the float comparison, but I didn't get to the bottom of the flake, yet I don't think it's worth it given that this commit improves the situation anyway. Fixes: #60608. Release note: None 60666: util/tracing: re-key activeSpans map on span ID r=irfansharif a=angelapwen Note that the changes in this PR should be used in #60616 to more easily retrieve a span given its span ID, without having to visit all spans and check for a match on span ID. Whichever PR lands later should update the sections of code marked as #TODOs in #60616. Previously, a tracer's activeSpans map was keyed on the memory address of the span itself. This commit keys the map on the span ID (which is deterministically unique) and sets the corresponding value in the map to be the memory address of the span itself. This allows us to continue to visit all active spans via the map, but also easily retrieve a span from its ID using the map. Release note: None 60679: licenses: Update CCL text r=petermattis a=bdarnell Remove a dead link and clarify related text Release note: None 60681: sql: fix spacing for comments around virtual schema r=irfansharif a=irfansharif Release note: None Co-authored-by: elliebababa <[email protected]> Co-authored-by: Ulf Adams <[email protected]> Co-authored-by: Yahor Yuzefovich <[email protected]> Co-authored-by: angelapwen <[email protected]> Co-authored-by: Ben Darnell <[email protected]> Co-authored-by: irfan sharif <[email protected]>
- Loading branch information
Showing
7 changed files
with
88 additions
and
103 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