-
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
111846: backupccl: delete old-style split and scatter processor r=dt a=adityamaru This processor has not been used since 23.1, there is little value in keeping it around. We now have the generative split and scatter processor. Epic: none Release note: None 111961: sql: implement ALTER PROCEDURE r=mgartner a=mgartner #### sql/parser: parse ALTER PROCEDURE This commit updates the parser so that it can parse `ALTER PROCEDURE` statements. Release note: None #### sql/sem/tree: rename AlterFunction[Rename|SetSchema|SetOwner] This commit renames some structs to be more general: * `AlterFunctionRename` => `AlterRoutineRename` * `AlterFunctionSetSchema` => `AlterRoutineSetSchema` * `AlterFunctionSetOwner` => `AlterRoutineSetOwner` Release note: None #### sql: implement ALTER PROCEDURE...RENAME TO This commit implements the `ALTER PROCEDURE...RENAME TO` statement. Release note: None #### sql: implement ALTER PROCEDURE...SET SCHEMA This commit implements the `ALTER PROCEDURE...SET SCHEMA` statement. Release note: None #### sql: implement ALTER PROCEDURE...OWNER TO This commit implements the `ALTER PROCEDURE...OWNER TO` statement. Epic: CRDB-25388 Release note: None 112001: server: use tenant capability watcher in orchestrator r=knz a=stevendanna This changes over from polling to using the capability watcher to observe virtual cluster service mode changes. On the surface, it may seem like this make us less responsive since our poll interval was 1 seconds and by default we will only see an update every 3 seconds from the watcher. However, when we were using the polling approach, what was likely to happen is that the server would fail to start up until the tenant watcher caught up anyway, since the tenant server does a service-mode check using the capability watcher. Fixes #107827. Epic: CRDB-26691 Release note: None 112025: gcjob_test: fix logging in TestGCJobRetry r=rafiss a=andyyang890 This patch fixes the logging in `TestGCJobRetry` to handle NULL values being returned by a query. Fixes: #111839 Fixes: #111974 Fixes: #111990 Release note: None 112043: go.mod: bump Pebble to a678d0968383 r=RaduBerinde a=jbowens ``` a678d096 go.mod: revert change to require go 1.21 803507a7 go.mod: upgrade cockroachdb/errors to v1.11.1 d0ac26c3 metamorphic: use require.Equal in TestParserRandom 470a93d0 db: convert adjustedOutputLevel into a function ``` Epic: none Release note: none 112056: release: released CockroachDB version 23.2.0-alpha.2. Next version: 23.2.0-alpha.3 r=celiala a=cockroach-teamcity Release note: None Epic: None Release justification: non-production (release infra) change. Co-authored-by: adityamaru <[email protected]> Co-authored-by: Marcus Gartner <[email protected]> Co-authored-by: Steven Danna <[email protected]> Co-authored-by: Andy Yang <[email protected]> Co-authored-by: Jackson Owens <[email protected]> Co-authored-by: Justin Beaver <[email protected]>
- Loading branch information
Showing
48 changed files
with
1,010 additions
and
967 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 |
---|---|---|
|
@@ -1599,10 +1599,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "404de9ad4b96376ef9a99725c72377c49f9377327d197cc89fee4a4d57f61c88", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20231006155544-4280b457af56", | ||
sha256 = "ad17adfa874889e8e1c43a3fe6c02ca1e4b6c67170ed37e2015e710aee5fdc7a", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20231009150004-a678d0968383", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20231006155544-4280b457af56.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20231009150004-a678d0968383.zip", | ||
], | ||
) | ||
go_repository( | ||
|
@@ -1625,16 +1625,6 @@ def go_deps(): | |
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/returncheck/com_github_cockroachdb_returncheck-v0.0.0-20200612231554-92cdbca611dd.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_cockroachdb_sentry_go", | ||
build_file_proto_mode = "disable_global", | ||
importpath = "github.com/cockroachdb/sentry-go", | ||
sha256 = "fbb2207d02aecfdd411b1357efe1192dbb827959e36b7cab7491731ac55935c9", | ||
strip_prefix = "github.com/cockroachdb/[email protected]", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/sentry-go/com_github_cockroachdb_sentry_go-v0.6.1-cockroachdb.2.zip", | ||
], | ||
) | ||
go_repository( | ||
name = "com_github_cockroachdb_stress", | ||
build_file_proto_mode = "disable_global", | ||
|
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,2 @@ | ||
alter_proc_owner_stmt ::= | ||
'ALTER' 'PROCEDURE' function_with_paramtypes 'OWNER' 'TO' role_spec |
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,2 @@ | ||
alter_proc_rename_stmt ::= | ||
'ALTER' 'PROCEDURE' function_with_paramtypes 'RENAME' 'TO' name |
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,2 @@ | ||
alter_proc_set_schema_stmt ::= | ||
'ALTER' 'PROCEDURE' function_with_paramtypes 'SET' 'SCHEMA' schema_name |
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,4 @@ | ||
alter_proc_stmt ::= | ||
alter_proc_rename_stmt | ||
| alter_proc_owner_stmt | ||
| alter_proc_set_schema_stmt |
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 @@ | ||
v23.2.0-alpha.2 | ||
v23.2.0-alpha.3 |
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.