Skip to content

Commit

Permalink
test out-of-order pg and rw table
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Nov 20, 2024
1 parent 1c4eb53 commit ea2d5bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e_test/sink/postgres_sink.slt
Original file line number Diff line number Diff line change
Expand Up @@ -36,18 +36,18 @@ CREATE TABLE rw_types_table (
id BIGINT PRIMARY KEY,
varchar_column VARCHAR,
text_column TEXT,
integer_column INTEGER,
smallint_column SMALLINT,
integer_column INTEGER,
bigint_column BIGINT,
decimal_column DECIMAL,
real_column REAL,
double_column DOUBLE PRECISION,
boolean_column BOOLEAN,
date_column DATE,
time_column TIME,
timestamp_column TIMESTAMP,
interval_column INTERVAL,
jsonb_column JSONB
jsonb_column JSONB,
timestamp_column TIMESTAMP
);

statement ok
Expand Down

0 comments on commit ea2d5bc

Please sign in to comment.