Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang committed Jul 23, 2024
1 parent c20713b commit 20976e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e_test/source/cdc/cdc.share_stream.slt
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ CREATE TABLE person_new (
statement ok
CREATE TABLE orders_shared (
id int PRIMARY KEY,
name varchar,
name varchar
) FROM pg_source TABLE 'public.Orders';

statement ok
Expand Down
2 changes: 1 addition & 1 deletion e2e_test/source/cdc/postgres_cdc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ INSERT INTO list_with_null VALUES (5, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

CREATE TABLE "Orders" (
id int PRIMARY KEY,
name varchar,
name varchar
);
INSERT INTO "Orders" VALUES (1, 'happy');

0 comments on commit 20976e3

Please sign in to comment.