-
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.
Merge branch 'master' into add-alter-table-not-exists
- Loading branch information
Showing
9,252 changed files
with
1,771,770 additions
and
1,211,186 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
artifacts | ||
bin | ||
build/builder_home | ||
lib | ||
pkg/ui/node_modules | ||
vendor |
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,49 @@ | ||
try-import %workspace%/.bazelrc.user | ||
|
||
build --symlink_prefix=_bazel/ --ui_event_filters=-DEBUG --define gotags=bazel,crdb_test_off,gss --experimental_proto_descriptor_sets_include_source_info | ||
test --config=test | ||
build:with_ui --define cockroach_with_ui=y | ||
build:test --define gotags=bazel,crdb_test,gss | ||
build:race --@io_bazel_rules_go//go/config:race --test_env=GORACE=halt_on_error=1 --test_sharding_strategy=disabled | ||
test:test --test_env=TZ= | ||
query --ui_event_filters=-DEBUG | ||
|
||
# CI should always run with `--config=ci`. | ||
build:ci --experimental_convenience_symlinks=ignore | ||
build:ci --stamp | ||
build:ci --host_crosstool_top=@toolchain_cross_x86_64-unknown-linux-gnu//:suite | ||
# Set `-test.v` in Go tests. | ||
# Ref: https://github.com/bazelbuild/rules_go/pull/2456 | ||
test:ci --test_env=GO_TEST_WRAP_TESTV=1 | ||
# Dump all output for failed tests to the build log. | ||
test:ci --test_output=errors | ||
# Put all tmp artifacts in /artifacts/tmp. | ||
test:ci --test_tmpdir=/artifacts/tmp | ||
|
||
# cross-compilation configurations. Add e.g. --config=crosslinux to turn these on | ||
# TODO(ricky): Having to specify both the `platform` and the `crosstool_top` is | ||
# weird, but I think `rules_foreign_cc` doesn't play too nicely with `--platforms`? | ||
build:crosslinux --platforms=//build/toolchains:cross_linux | ||
build:crosslinux --crosstool_top=@toolchain_cross_x86_64-unknown-linux-gnu//:suite | ||
build:crosslinux '--workspace_status_command=./build/bazelutil/stamp.sh x86_64-pc-linux-gnu' | ||
build:crosslinux --config=ci | ||
build:crosswindows --platforms=//build/toolchains:cross_windows | ||
build:crosswindows --crosstool_top=@toolchain_cross_x86_64-w64-mingw32//:suite | ||
build:crosswindows '--workspace_status_command=./build/bazelutil/stamp.sh x86_64-w64-mingw32' | ||
build:crosswindows --config=ci | ||
build:crossmacos --platforms=//build/toolchains:cross_macos | ||
build:crossmacos --crosstool_top=@toolchain_cross_x86_64-apple-darwin19//:suite | ||
build:crossmacos '--workspace_status_command=./build/bazelutil/stamp.sh x86_64-apple-darwin19' | ||
build:crossmacos --config=ci | ||
build:crosslinuxarm --platforms=//build/toolchains:cross_linux_arm | ||
build:crosslinuxarm --crosstool_top=@toolchain_cross_aarch64-unknown-linux-gnu//:suite | ||
build:crosslinuxarm '--workspace_status_command=./build/bazelutil/stamp.sh aarch64-unknown-linux-gnu' | ||
build:crosslinuxarm --config=ci | ||
|
||
# developer configurations. Add e.g. --config=devdarwinx86_64 to turn these on. | ||
build:devdarwinx86_64 --crosstool_top=@toolchain_dev_darwin_x86-64//:suite | ||
# NOTE(ricky): This is consumed in `BUILD` files (see | ||
# `build/toolchains/BUILD.bazel`). | ||
build:devdarwinx86_64 --config=dev | ||
build:dev --define cockroach_bazel_dev=y | ||
build:dev --stamp --workspace_status_command=./build/bazelutil/stamp.sh |
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.0.0 |
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,2 +1,3 @@ | ||
*.pb.* -diff | ||
*.eg.go -diff | ||
pkg/BUILD.bazel -diff |
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,3 @@ | ||
exports_files([ | ||
"CODEOWNERS", | ||
]) |
Validating CODEOWNERS rules …
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,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Security Vulnerabilities | ||
url: https://www.cockroachlabs.com/security/responsible-disclosure-policy/ | ||
about: "Report a security vulnerability or security-related bug in CockroachDB or Cockroach Cloud" | ||
- name: CockroachDB Community Forum | ||
url: https://forum.cockroachlabs.com/ | ||
about: "For general questions about CockroachDB" | ||
- name: Enterprise Support | ||
url: https://support.cockroachlabs.com | ||
about: "Enterprise Support" |
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.