diff --git a/.circleci/run_tests.sh b/.circleci/run_tests.sh index 2b752ab..1150862 100644 --- a/.circleci/run_tests.sh +++ b/.circleci/run_tests.sh @@ -7,7 +7,7 @@ set -o xtrace sleep 1 -psql -h 127.0.0.1 -p 5432 -U postgres -f tests/sharding/query_routing_setup.sql +psql -e -h 127.0.0.1 -p 5432 -U postgres -f tests/sharding/query_routing_setup.sql # Setup PgBench pgbench -i -h 127.0.0.1 -p 6432 @@ -15,10 +15,10 @@ pgbench -i -h 127.0.0.1 -p 6432 # Run it pgbench -h 127.0.0.1 -p 6432 -t 500 -c 2 -psql -h 127.0.0.1 -p 6432 -f tests/sharding/query_routing_test_insert.sql +psql -e -h 127.0.0.1 -p 6432 -f tests/sharding/query_routing_test_insert.sql -psql -h 127.0.0.1 -p 6432 -f tests/sharding/query_routing_test_select.sql +psql -e -h 127.0.0.1 -p 6432 -f tests/sharding/query_routing_test_select.sql # psql -f tests/sharding/query_routing_test_validate.sql -psql -h 127.0.0.1 -p 6432 -f tests/sharding/query_routing_test_primary_replica.sql \ No newline at end of file +psql -e -h 127.0.0.1 -p 6432 -f tests/sharding/query_routing_test_primary_replica.sql \ No newline at end of file