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 9172c38 commit 0313c75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions e2e_test/sink/recovery/pg.slt
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ select count(*) from t;
statement ok
create table t2 (v1 int primary key) with (
connector = 'postgres-cdc',
hostname = '${PGHOST:localhost}',
port = '${PGPORT:5432}',
username = '${PGUSER:$USER}',
password = '${PGPASSWORD:}',
database.name = '${PGDATABASE:postgres}',
hostname = 'db'
port = '5432',
username = 'postgres'
password = 'postgres',
database.name = 'postgres'.
table.name = 't',
slot.name = 'pg_recovery_test_slot'
);
Expand Down

0 comments on commit 0313c75

Please sign in to comment.