From 6bf3b53cc894d13896455fecb3249be7a3ce931f Mon Sep 17 00:00:00 2001 From: Kexiang Wang Date: Fri, 20 Sep 2024 16:16:38 -0400 Subject: [PATCH] fix --- e2e_test/source/cdc/cdc.share_stream.slt | 32 ++++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/e2e_test/source/cdc/cdc.share_stream.slt b/e2e_test/source/cdc/cdc.share_stream.slt index 6b259fdf7bc1..6c83069f76a0 100644 --- a/e2e_test/source/cdc/cdc.share_stream.slt +++ b/e2e_test/source/cdc/cdc.share_stream.slt @@ -112,22 +112,6 @@ create table orders_test ( PRIMARY KEY (order_id) ) from mysql_mytest table 'mytest.orders'; -statement ok -CREATE TABLE partitioned_timestamp_table_shared( - c_int int, - c_boolean boolean, - c_timestamp timestamp, - PRIMARY KEY (c_int, c_timestamp) -) from pg_source table 'public.partitioned_timestamp_table'; - -statement ok -CREATE TABLE partitioned_timestamp_table_2023_shared( - c_int int, - c_boolean boolean, - c_timestamp timestamp, - PRIMARY KEY (c_int, c_timestamp) -) from pg_source table 'public.partitioned_timestamp_table_2023_shared'; - statement ok create materialized view products_test_cnt as select count(*) as cnt from rw.products_test; @@ -304,6 +288,22 @@ INCLUDE SCHEMA_NAME as schema_name INCLUDE TABLE_NAME as table_name FROM pg_source TABLE 'public.person'; +statement ok +CREATE TABLE partitioned_timestamp_table_shared( + c_int int, + c_boolean boolean, + c_timestamp timestamp, + PRIMARY KEY (c_int, c_timestamp) +) from pg_source table 'public.partitioned_timestamp_table'; + +statement ok +CREATE TABLE partitioned_timestamp_table_2023_shared( + c_int int, + c_boolean boolean, + c_timestamp timestamp, + PRIMARY KEY (c_int, c_timestamp) +) from pg_source table 'public.partitioned_timestamp_table_2023_shared'; + statement ok CREATE MATERIALIZED VIEW person_new_cnt AS SELECT COUNT(*) AS cnt FROM person_new;