-
Notifications
You must be signed in to change notification settings - Fork 220
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No warning on unsupported statements #621
base: main
Are you sure you want to change the base?
Changes from all commits
31596ea
5c7fcdc
a442b31
9fba9a0
eaf1ea9
2af5169
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ set -o xtrace | |
# for inspection. | ||
function start_pgcat() { | ||
kill -s SIGINT $(pgrep pgcat) || true | ||
RUST_LOG=${1} ./target/debug/pgcat .circleci/pgcat.toml & | ||
./target/debug/pgcat .circleci/pgcat.toml --log-level ${1} & | ||
sleep 1 | ||
} | ||
|
||
|
@@ -29,6 +29,9 @@ PGPASSWORD=sharding_user pgbench -h 127.0.0.1 -U sharding_user shard2 -i | |
LOG_LEVEL=error toxiproxy-server & | ||
sleep 1 | ||
|
||
# Remove toxiproxy if it exists. | ||
toxiproxy-cli delete postgres_replica || true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is needed for local development, if you're going to run the tests multiple times. |
||
|
||
# Create a database at port 5433, forward it to Postgres | ||
toxiproxy-cli create -l 127.0.0.1:5433 -u 127.0.0.1:5432 postgres_replica | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,18 @@ | ||
#!/bin/bash | ||
|
||
rm -rf /app/target/ || true | ||
set -e | ||
|
||
CLEAN_BUILD=true | ||
|
||
if [ $1 = "no-clean" ]; then | ||
echo "INFO: clean build is NOT going to be performed." | ||
CLEAN_BUILD=false | ||
find /app/target/debug/deps -name *.gcda -exec rm {} \; | ||
fi | ||
|
||
if $CLEAN_BUILD ; then | ||
rm -rf /app/target/ || true | ||
fi | ||
Comment on lines
+3
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This helps if you want to run the tests multiple times, without waiting for a clean build. You'd just pass |
||
rm /app/*.profraw || true | ||
rm /app/pgcat.profdata || true | ||
rm -rf /app/cov || true | ||
|
@@ -12,7 +24,9 @@ export RUSTFLAGS="-Zprofile -Ccodegen-units=1 -Copt-level=0 -Clink-dead-code -Co | |
export RUSTDOCFLAGS="-Cpanic=abort" | ||
|
||
cd /app/ | ||
cargo clean | ||
if $CLEAN_BUILD ; then | ||
cargo clean | ||
fi | ||
cargo build | ||
cargo test --tests | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ UPDATE pgbench_branches SET bbalance = bbalance + :delta WHERE bid = :bid; | |
|
||
INSERT INTO pgbench_history (tid, bid, aid, delta, mtime) VALUES (:tid, :bid, :aid, :delta, CURRENT_TIMESTAMP); | ||
|
||
END; | ||
COMMIT; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
SET SHARDING KEY TO :aid; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without this change, the log-level is not respected.