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 9d92915
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion e2e_test/source/cdc/cdc.check.slt
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,6 @@ select * from enum_to_varchar order by id;
2 ok

query II
select * from orders order by id;
select * from upper_orders order by id;
----
1 happy
2 changes: 1 addition & 1 deletion e2e_test/source/cdc/cdc.load.slt
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ create table enum_to_varchar (
);

statement ok
create table orders (
create table upper_orders (
id int,
name varchar,
PRIMARY KEY (id)
Expand Down
6 changes: 3 additions & 3 deletions e2e_test/source/cdc/cdc.share_stream.slt
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,9 @@ CREATE TABLE person_new (
) FROM pg_source TABLE 'person';

statement ok
CREATE TABLE orders_shared (
CREATE TABLE upper_orders_shared (
id int PRIMARY KEY,
name varchar,
name varchar
) FROM pg_source TABLE 'public.Orders';

statement ok
Expand Down Expand Up @@ -517,6 +517,6 @@ select * from enum_to_varchar_shared order by id;
2 ok

query II
select * from orders_shared order by id;
select * from upper_orders_shared order by id;
----
1 happy
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 9d92915

Please sign in to comment.