-
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.
68398: sql: fix comment reparse error r=rafiss a=e-mbrown Related to: #60722 Comment statement was dealing with reparse issues due to string syntax. This change alters the comment statements format function. Release note: None 68405: dev: munge PATH to remove ccache entries when calling into Bazel r=rickystewart a=rail Previously, if `ccache` is setup on a developer computer and the `ccache` directory was at the head of `PATH`, it lead to compile errors, because `ccache` tried to write to a directory which is outside of bazel's sandbox. This patch detects if a compiler is symlinked to `ccache` and removes the detected directory from `PATH`. Release note: None 68422: sql: fix create database re-parse issue r=rafiss a=e-mbrown Related to: #60722 The create database test were having re-parse issues due to a type error. This change replaces the underscore with an integer. Release note: None 68424: sql: fix show syntax re-parse issue r=rafiss a=e-mbrown Related to: #60722 Show test were having re-parse issues due to a type error. This change replaces the underscore with a string value. Release note: None Co-authored-by: e-mbrown <[email protected]> Co-authored-by: Rail Aliiev <[email protected]>
- Loading branch information
Showing
22 changed files
with
532 additions
and
28 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
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,9 +1,17 @@ | ||
dev bench pkg/util/... | ||
---- | ||
getenv PATH | ||
which cc | ||
readlink /usr/local/opt/ccache/libexec/cc | ||
export PATH=/usr/local/opt/make/libexec/gnubin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin | ||
git grep -l ^func Benchmark -- pkg/util/*_test.go | ||
bazel run --color=yes --experimental_convenience_symlinks=ignore --config=test --config=dev //pkg/util:util_test -- -test.bench=. | ||
bazel run --color=yes --experimental_convenience_symlinks=ignore --config=test --config=dev //pkg/util/uuid:uuid_test -- -test.bench=. | ||
|
||
dev bench pkg/sql/parser --filter=BenchmarkParse | ||
---- | ||
getenv PATH | ||
which cc | ||
readlink /usr/local/opt/ccache/libexec/cc | ||
export PATH=/usr/local/opt/make/libexec/gnubin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin | ||
bazel run --color=yes --experimental_convenience_symlinks=ignore --config=test --config=dev //pkg/sql/parser:parser_test -- -test.bench=BenchmarkParse |
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,4 +1,8 @@ | ||
dev gen bazel | ||
---- | ||
getenv PATH | ||
which cc | ||
readlink /usr/local/opt/ccache/libexec/cc | ||
export PATH=/usr/local/opt/make/libexec/gnubin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/go/bin:/Library/Apple/usr/bin | ||
bazel info workspace --color=no --config=dev | ||
go/src/github.com/cockroachdb/cockroach/build/bazelutil/bazel-generate.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
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.