-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/risingwavelabs/risingwave i…
…nto li0k/storage_max_sub_compaction_config
- Loading branch information
Showing
142 changed files
with
3,964 additions
and
1,691 deletions.
There are no files selected for viewing
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
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,40 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Exits as soon as any line fails. | ||
set -euo pipefail | ||
|
||
while getopts 'p:m:' opt; do | ||
case ${opt} in | ||
p ) | ||
profile=$OPTARG | ||
;; | ||
m ) | ||
mode=$OPTARG | ||
;; | ||
\? ) | ||
echo "Invalid Option: -$OPTARG" 1>&2 | ||
exit 1 | ||
;; | ||
: ) | ||
echo "Invalid option: $OPTARG requires an argument" 1>&2 | ||
;; | ||
esac | ||
done | ||
shift $((OPTIND -1)) | ||
|
||
source ci/scripts/common.sh | ||
|
||
download_and_prepare_rw "$profile" common | ||
|
||
|
||
echo "--- Download artifacts" | ||
mkdir -p e2e_test/udf/wasm/target/wasm32-wasi/release/ | ||
buildkite-agent artifact download udf.wasm e2e_test/udf/wasm/target/wasm32-wasi/release/ | ||
buildkite-agent artifact download udf.jar ./ | ||
|
||
echo "--- e2e, $mode, slow-udf-tests" | ||
python3 -m pip install --break-system-packages arrow-udf==0.2.1 | ||
RUST_LOG="info" \ | ||
risedev ci-start "$mode" | ||
sqllogictest -p 4566 -d dev './e2e_test_slow/udf/always_retry_python.slt' | ||
sqllogictest -p 4566 -d dev './e2e_test_slow/backfill/rate_limit/slow-udf.slt' |
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,23 @@ | ||
statement error secret backend "fake-backend" is not supported | ||
create secret secret_1 with ( | ||
backend = 'fake-backend' | ||
) as 'demo_secret'; | ||
|
||
statement ok | ||
create secret secret_1 with ( | ||
backend = 'meta' | ||
) as 'demo_secret'; | ||
|
||
# wait for support for hashicorp_vault backend | ||
# statement ok | ||
# create secret secret_2 with ( | ||
# backend = 'hashicorp_vault' | ||
# ); | ||
|
||
query T | ||
show secrets; | ||
---- | ||
secret_1 | ||
|
||
statement ok | ||
drop secret secret_1; |
Oops, something went wrong.