From 11d64e1adb3deaffaf9f53a3f7d4ac79b9811124 Mon Sep 17 00:00:00 2001 From: chenxiaobin19 <1025221611@qq.com> Date: Tue, 29 Oct 2024 17:56:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=88=9B=E5=BB=BA=E6=8A=BD?= =?UTF-8?q?=E8=B1=A1=E7=B1=BB=E5=9E=8B=E4=B8=8D=E6=94=AF=E6=8C=81=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E8=A7=A3=E7=A0=81=E5=AF=BC=E8=87=B4=E5=8F=91=E5=B8=83?= =?UTF-8?q?=E8=AE=A2=E9=98=85check=E5=A4=B1=E8=B4=A5=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../testcase/ddl_replication_sql/A/ddl_create_type.sql | 1 - .../testcase/ddl_replication_sql/A/ddl_drop_type.sql | 3 --- .../testcase/ddl_replication_sql/B/ddl_create_type.sql | 3 +-- .../testcase/ddl_replication_sql/B/ddl_drop_type.sql | 3 --- 4 files changed, 1 insertion(+), 9 deletions(-) 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;