mirror of
https://github.com/postgresml/pgcat.git
synced 2026-03-23 01:16:30 +00:00
tests
This commit is contained in:
23
.circleci/run_tests.sh
Normal file
23
.circleci/run_tests.sh
Normal file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
./target/debug/pgcat &
|
||||
|
||||
sleep 1
|
||||
|
||||
psql -f tests/sharding/query_routing_setup.sql
|
||||
|
||||
# Setup PgBench
|
||||
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 -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
|
||||
Reference in New Issue
Block a user