-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
93364: diagnosticccl: minor test clean r=andreimatei a=andreimatei This test was using a storage node's Stopper in conjunction with a tenant server's component (the Reporter). That's not kosher - we were creating a trace having a parent span created with the storage node's Tracer, and a child created with the tenant's Tracer. Combining Tracers like that in a single trace is not allowed. The test is getting away with it because the parent span happened to be created with the "sterile" option, and sterile spans were allowed to be combined with children created with other Tracers as an exception for arcane reasons, but that's going away. Release note: None Epic: None 93450: vendor: bump Pebble to 0893071d8a52 r=jbowens a=jbowens ``` 6e8d3bb3 db: add NextPrefix to Iterator 6311f7a9 db: add RangeKeyIteratorStats 06047857 db: refactor merging iterator's prefix handling for TrySeekUsingNext e0f0de89 bench: add --max-size flag 88c8fbcc *: use golang.org/x/sys package ``` Epic: None Release note: None 93543: descs: refactor GetAll* methods r=postamar a=postamar This commit refactors the descs.Collection's GetAll* methods, which return descriptors and other catalog metadata in bulk, to share a common access path in which the descriptor's layers are properly aggregated. This is non-trivial as there are numerous edge cases: - virtual schemas and objects exist for all databases and their descriptors don't reference the parent database at all, - descriptorless public schemas and temporary schemas only exist as namespace entries, - functions don't have namespace entries, - and so forth. These new methods are delegated to by the existing methods which are now deprecated. Informs #64089. Release note: None Co-authored-by: Andrei Matei <[email protected]> Co-authored-by: Jackson Owens <[email protected]> Co-authored-by: Marius Posta <[email protected]>
- Loading branch information
Showing
44 changed files
with
648 additions
and
389 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 |
---|---|---|
|
@@ -1485,10 +1485,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "76575b5e3c38334308d006475c1ec3cdf714ceaa4ae3baef8945046f943fab75", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20221207223118-463b049c1dd1", | ||
sha256 = "0401364025128ab1d3d592293d0c3e1109eb6b50f6c30bb948c5743e7200e9e1", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20221212215000-0893071d8a52", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20221207223118-463b049c1dd1.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20221212215000-0893071d8a52.zip", | ||
], | ||
) | ||
go_repository( | ||
|
@@ -9614,10 +9614,10 @@ def go_deps(): | |
name = "org_golang_x_sys", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "golang.org/x/sys", | ||
sha256 = "5ebd34faf34cfb7824ed6d12e95e793c8564ccc989af9f9c7998422c36ec9838", | ||
strip_prefix = "golang.org/x/sys@v0.0.0-20220811171246-fbc7d0a398ab", | ||
sha256 = "cbdf18e3be9f211ca962684ac19d41d4be24042898ec0cc664bf8d1c2955d384", | ||
strip_prefix = "golang.org/x/sys@v0.3.0", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/sys/org_golang_x_sys-v0.0.0-20220811171246-fbc7d0a398ab.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/golang.org/x/sys/org_golang_x_sys-v0.3.0.zip", | ||
], | ||
) | ||
go_repository( | ||
|
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
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.