-
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.
136820: cliccl: use latest version for the TestList r=RaduBerinde a=RaduBerinde We were using `MakeClusterSettings()` which initializes the cluster at the minimum supported version. Switching to `MakeTestingClusterSettings()` which initializes at the latest version. It makes more sense for the test to change when the latest version changes. Epic: none Release note: None 136911: sql: use crtime.Mono for phase times r=RaduBerinde a=RaduBerinde #### go.mod: update crlib dependency Epic: none Release note: None #### sql/sessionphase: separate SessionInit time The `SessionInit` is not really a phase, it is set just once. This change separates it out from the phase times (which are used to measure elapsed times). Epic: none Release note: None #### sql: use crtime.Mono for phase times Using just the monotonic timer is faster. When we need to convert to a real `time.Time`, we use `now` as the reference time. Informs: #133315 Release note: None Co-authored-by: Radu Berinde <[email protected]>
- Loading branch information
Showing
22 changed files
with
131 additions
and
112 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 |
---|---|---|
|
@@ -1765,10 +1765,10 @@ def go_deps(): | |
name = "com_github_cockroachdb_crlib", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/cockroachdb/crlib", | ||
sha256 = "4e55a6088c146af4bda503535b067a9c5c980449e0f185a48b5e1e06606d0ef8", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20241112164430-1264a2edc35b", | ||
sha256 = "1afc910b4ff270de79eecb42ab7bd5e6404e6128666c6c55e96db9e27d28e69e", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20241205160938-4a90b184f49c", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/crlib/com_github_cockroachdb_crlib-v0.0.0-20241112164430-1264a2edc35b.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/crlib/com_github_cockroachdb_crlib-v0.0.0-20241205160938-4a90b184f49c.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
Oops, something went wrong.