forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 1
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
…db#89293 86251: ui, obsservice: add feature flags to db console r=maryliag,abarganier a=dhartunian This commit adds feature flags to the initial data that DB Console loads from the backend server. The purpose of this is to enable development on `master` of features that can be deployed prior to the release of a DB version, and to allow for the UI to run against various backends (primarily: obs service) with different capabilities and be able to selectively enable UI components to match. The feature flags are defined in `admin.proto` using the same pattern that's implemented in our managed service, and are available via a Typescript interface from the compiled protobuf. This couples us a little bit to the relevant backend via the protobuf. However, if we treat the flag list as append-only the UI should always remain backwards compatible with this payload. Resolves cockroachdb#84299 Release note: None 89237: sql: require `CREATE` privilege on a schema to create udf r=chengxiong-ruan a=chengxiong-ruan A user must have `CREATE` privilege on a schema to create a user-defined function. Funny that I took it for granted while reviewing the udf doc PR :( Release note: None Release justification: necessary bug fix and low risk. 89248: vendor: bump Pebble to 518ead0d41bb r=jbowens a=nicktrav ``` 518ead0d build: remove vendor directory dea76ba4 db: add IteratorStats.Merge ``` Release note: None. 89293: logictestccl: fix flakey test r=ajwerner a=ajwerner We cannot query the lease table for its entries -- they are affected by background work. Release note: None Co-authored-by: David Hartunian <[email protected]> Co-authored-by: Chengxiong Ruan <[email protected]> Co-authored-by: Nick Travers <[email protected]> Co-authored-by: Andrew Werner <[email protected]>
- Loading branch information
Showing
17 changed files
with
72 additions
and
30 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 |
---|---|---|
|
@@ -1425,10 +1425,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "ef378b3bd97f3a9a69dba1f1228af97cf28c1e1bd0a9818da19c7638bd08bed9", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20220930163150-781ebeecebd2", | ||
sha256 = "387907b742706c699ae4e1eecbb8afe576004cb5460da2fe30b7f4d7d77503ed", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20221003221406-518ead0d41bb", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20220930163150-781ebeecebd2.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20221003221406-518ead0d41bb.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
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
Submodule vendor
updated
3 files
+3 −4 | github.com/cockroachdb/pebble/Makefile | |
+12 −0 | github.com/cockroachdb/pebble/iterator.go | |
+1 −1 | modules.txt |