forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
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
85442: sql/colexec: specialize RangeStats operator to achieve parallelism r=ajwerner a=ajwerner Release justification: This is needed to make new observability features reasonably performant, also sneaking it in under the deadline. Release note (performance improvement): The crdb_internal.range_statistics function now uses a vectorized implementation which allows the lookup of range metadata to occur in parallel. 85762: partitionccl: remove unused functions r=ajwerner a=yuzefovich This commit removes a couple of functions that are only used in tests. Release note: None 86114: sql: deflake TestSchemaChangeRetry r=ajwerner a=ajwerner Now that GC happens eagerly in the GC job, we need to hold off the GC job to make sure that key counts match the test's expectations. Fixes flakes like [this one](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_BazelEssentialCi/6093943) Release justification: Testing only change. Release note: None Co-authored-by: Andrew Werner <[email protected]> Co-authored-by: Yahor Yuzefovich <[email protected]>
- Loading branch information
Showing
23 changed files
with
264 additions
and
318 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
load("//build/bazelutil/unused_checker:unused.bzl", "get_x_data") | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||
|
||
go_library( | ||
name = "rangestats", | ||
srcs = ["fetcher.go"], | ||
importpath = "github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangestats", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//pkg/kv", | ||
"//pkg/roachpb", | ||
"//pkg/sql/sem/eval", | ||
], | ||
) | ||
|
||
get_x_data(name = "get_x_data") |
Oops, something went wrong.