diff --git a/src/test/subscription/testcase/ddl_replication_sql/A/ddl_create_type.sql b/src/test/subscription/testcase/ddl_replication_sql/A/ddl_create_type.sql index 5e52956f8..bc85c999e 100644 --- a/src/test/subscription/testcase/ddl_replication_sql/A/ddl_create_type.sql +++ b/src/test/subscription/testcase/ddl_replication_sql/A/ddl_create_type.sql @@ -1,5 +1,4 @@ create type atype as (id int, name text); -create type btype as object (id int, name text); create type ctype as (id int, name text); alter type ctype rename to dtype; drop type dtype; \ No newline at end of file diff --git a/src/test/subscription/testcase/ddl_replication_sql/A/ddl_drop_type.sql b/src/test/subscription/testcase/ddl_replication_sql/A/ddl_drop_type.sql index 348f77685..06ed6c42b 100644 --- a/src/test/subscription/testcase/ddl_replication_sql/A/ddl_drop_type.sql +++ b/src/test/subscription/testcase/ddl_replication_sql/A/ddl_drop_type.sql @@ -3,9 +3,6 @@ create table atable (id int, age int); create type atype as (id int, name text); drop type atype; -create type btype as object (id int, name text); -drop type btype; - drop type typ_not_exit; drop type public.typ_not_exit; diff --git a/src/test/subscription/testcase/ddl_replication_sql/B/ddl_create_type.sql b/src/test/subscription/testcase/ddl_replication_sql/B/ddl_create_type.sql index 458bf97c1..ef1f58cc9 100644 --- a/src/test/subscription/testcase/ddl_replication_sql/B/ddl_create_type.sql +++ b/src/test/subscription/testcase/ddl_replication_sql/B/ddl_create_type.sql @@ -1,2 +1 @@ -create type atype as (id int, name text); -create type btype as object (id int, name text); \ No newline at end of file +create type atype as (id int, name text); \ No newline at end of file diff --git a/src/test/subscription/testcase/ddl_replication_sql/B/ddl_drop_type.sql b/src/test/subscription/testcase/ddl_replication_sql/B/ddl_drop_type.sql index 348f77685..06ed6c42b 100644 --- a/src/test/subscription/testcase/ddl_replication_sql/B/ddl_drop_type.sql +++ b/src/test/subscription/testcase/ddl_replication_sql/B/ddl_drop_type.sql @@ -3,9 +3,6 @@ create table atable (id int, age int); create type atype as (id int, name text); drop type atype; -create type btype as object (id int, name text); -drop type btype; - drop type typ_not_exit; drop type public.typ_not_exit;