Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed May 15, 2024
1 parent 18c7c5b commit 2d01811
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e_test/sink/recovery/pg.slt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ statement ok
create table t as select generate_series as v1 from generate_series(1, 1000000);

system ok
PGPASSWORD=connector psql -d test -h localhost -p 5432 -U test -c "drop table if exists t;"
PGPASSWORD=connector psql -d test -h db -p 5432 -U test -c "drop table if exists t;"

system ok
PGPASSWORD=connector psql -d test -h localhost -p 5432 -U test -c "create table t(v1 int primary key);"
PGPASSWORD=connector psql -d test -h db -p 5432 -U test -c "create table t(v1 int primary key);"

system ok
PGPASSWORD=connector psql -d test -h localhost -p 5432 -U test -c "GRANT SELECT, INSERT, UPDATE, DELETE ON t TO test;"
PGPASSWORD=connector psql -d test -h db -p 5432 -U test -c "GRANT SELECT, INSERT, UPDATE, DELETE ON t TO test;"

statement ok
set background_ddl=true;
Expand Down

0 comments on commit 2d01811

Please sign in to comment.