-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
117292: schemachanger: Implement CREATE DATABASE in declarative schema changer r=Xiang-Gu a=Xiang-Gu This PR implements CREATE DATABASE in declarative schema changer. It falls back to legacy schema changer if the database is requested to be multi-region. Epic: [CRDB-25312](https://cockroachlabs.atlassian.net/browse/CRDB-25312) Fix: #103324 Inform: #103607 Release note: None Co-authored-by: Xiang Gu <[email protected]>
- Loading branch information
Showing
54 changed files
with
3,508 additions
and
25 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
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,122 @@ | ||
# This is a YAML file mapping team aliases from GitHub to | ||
# metadata about the team. | ||
# Expected structure is available in pkg/internal/team/team.go. | ||
|
||
# Finding triage_column_id: | ||
# TriageColumnID is the column id of the project column the team uses to | ||
# triage issues. To get it, open the project, click the "..." on top of | ||
# the project column, and click "Copy column link". That link contains | ||
# the ID as the `#column-<ID>` fragment. | ||
# | ||
# You can also use: | ||
# https://github.com/cockroachlabs/github-find-triage-column-id using | ||
# `go install github.com/cockroachlabs/github-find-triage-column-id@latest`. | ||
# | ||
# Then to retrieve triage_column_id from a repo-based project, run: | ||
# github-get-column-id --repo "cockroach" --project "Bazel" --column "To do" | ||
# Or retrieve the triage_column_id from a organization-based project, run: | ||
# github-get-column-id --project "Spatial" --column "Backlog" | ||
|
||
cockroachdb/docs: | ||
triage_column_id: 3971225 | ||
aliases: | ||
cockroachdb/docs-infra-prs: other | ||
cockroachdb/sql-foundations: | ||
aliases: | ||
cockroachdb/sql-syntax-prs: other | ||
cockroachdb/sqlproxy-prs: other | ||
cockroachdb/sql-api-prs: other | ||
triage_column_id: 19467489 | ||
label: T-sql-foundations | ||
cockroachdb/sql-queries: | ||
aliases: | ||
cockroachdb/sql-queries-prs: other | ||
cockroachdb/sql-optimizer: other | ||
cockroachdb/sql-opt-prs: other | ||
# SQL Queries team uses GH projects v2, which doesn't have a REST API, so | ||
# there is no triage column ID. | ||
# See .github/workflows/add-issues-to-project.yml. | ||
label: T-sql-queries | ||
cockroachdb/cluster-observability: | ||
triage_column_id: 12618343 | ||
label: T-cluster-observability | ||
cockroachdb/kv: | ||
aliases: | ||
cockroachdb/kv-triage: roachtest | ||
cockroachdb/kv-prs: other | ||
triage_column_id: 14242655 | ||
label: T-kv | ||
cockroachdb/replication: | ||
aliases: | ||
cockroachdb/repl-prs: other | ||
label: T-kv-replication | ||
cockroachdb/spatial: | ||
triage_column_id: 9487269 | ||
label: T-spatial | ||
cockroachdb/dev-inf: | ||
triage_column_id: 10210759 | ||
label: T-dev-inf | ||
cockroachdb/multiregion: | ||
triage_column_id: 11926170 | ||
label: T-multiregion | ||
cockroachdb/storage: | ||
aliases: | ||
cockroachdb/admission-control: other | ||
triage_column_id: 6668367 | ||
label: T-storage | ||
cockroachdb/test-eng: | ||
triage_column_id: 14041337 | ||
label: T-testeng | ||
cockroachdb/test-eng-prs: | ||
triage_column_id: 14041337 | ||
label: T-testeng | ||
cockroachdb/security: | ||
label: T-cross-product-security | ||
cockroachdb/prodsec: | ||
label: T-cross-product-security | ||
cockroachdb/disaster-recovery: | ||
triage_column_id: 3097123 | ||
label: T-disaster-recovery | ||
cockroachdb/cdc: | ||
aliases: | ||
cockroachdb/cdc-prs: other | ||
# CDC team uses GH projects v2, which doesn't have a REST API, so no triage column ID | ||
# see .github/workflows/add-issues-to-project.yml | ||
label: T-cdc | ||
cockroachdb/server: | ||
aliases: | ||
cockroachdb/cli-prs: other | ||
cockroachdb/server-prs: other | ||
triage_column_id: 2521812 | ||
cockroachdb/admin-ui: | ||
aliases: | ||
cockroachdb/admin-ui-prs: other | ||
triage_column_id: 6598672 | ||
label: T-observability-inf | ||
cockroachdb/obs-inf-prs: | ||
aliases: | ||
cockroachdb/http-api-prs: other | ||
triage_column_id: 14196277 | ||
label: T-observability-inf | ||
cockroachdb/multi-tenant: | ||
# Multi-tenant team uses GH projects v2, which doesn't have a REST API, so no triage column ID | ||
# see .github/workflows/add-issues-to-project.yml | ||
label: T-multitenant | ||
cockroachdb/jobs: | ||
aliases: | ||
cockroachdb/jobs-prs: other | ||
# Jobs uses GH projects v2, which doesn't have a REST API, so no triage column ID | ||
# see .github/workflows/add-issues-to-project.yml | ||
label: T-jobs | ||
cockroachdb/cloud-identity: | ||
triage_column_id: 18588697 | ||
cockroachdb/unowned: | ||
aliases: | ||
cockroachdb/rfc-prs: other | ||
triage_column_id: 0 # TODO | ||
cockroachdb/migrations: | ||
label: T-migrations | ||
triage_column_id: 18330909 | ||
cockroachdb/release-eng: | ||
label: T-release | ||
triage_column_id: 9149730 |
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.