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
128616: clusterversion: create 24.3 version r=RaduBerinde a=RaduBerinde - [x] Add version key constant for new release (e.g. `V24.2`), equal to `Latest` - [x] Update `PreviousRelease` constant - [x] Add start version (e.g. `V24.2Start` with version `24.1-2`) - [x] Update `pkg/build/version.txt` to the new version (e.g. `v24.2.0-alpha.00000000`) - [x] Add mixed version logictest config for the replaced version - [x] Update the `scplan` rules in `pkg/sql/schemachanger/scplan/internal/rules` - [x] Create new roachtest fixtures for the previous version - [x] Create new SQL bootstrap data - [x] Update releases file Epic: REL-1163 Release note: None Fixes cockroachdb#128747 128706: rac2: specify lock ordering, and add ReplicaSet r=kvoli a=sumeerbhola Informs cockroachdb#128308 Epic: CRDB-37515 Release note: None Co-authored-by: Radu Berinde <[email protected]> Co-authored-by: sumeerbhola <[email protected]>
- Loading branch information
Showing
56 changed files
with
5,283 additions
and
314 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v24.2.0-alpha.2 | ||
v24.3.0-alpha.00000000 |
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
2 changes: 1 addition & 1 deletion
2
pkg/ccl/logictestccl/tests/cockroach-go-testserver-24.1/generated_test.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_test") | ||
|
||
go_test( | ||
name = "local-mixed-24_2_test", | ||
size = "enormous", | ||
srcs = ["generated_test.go"], | ||
data = [ | ||
"//c-deps:libgeos", # keep | ||
"//pkg/ccl/logictestccl:testdata", # keep | ||
], | ||
exec_properties = {"test.Pool": "large"}, | ||
shard_count = 30, | ||
tags = ["cpu:1"], | ||
deps = [ | ||
"//pkg/base", | ||
"//pkg/build/bazel", | ||
"//pkg/ccl", | ||
"//pkg/security/securityassets", | ||
"//pkg/security/securitytest", | ||
"//pkg/server", | ||
"//pkg/sql/logictest", | ||
"//pkg/testutils/serverutils", | ||
"//pkg/testutils/skip", | ||
"//pkg/testutils/testcluster", | ||
"//pkg/util/leaktest", | ||
"//pkg/util/randutil", | ||
], | ||
) |
Oops, something went wrong.