!6587 修复创建抽象类型不支持逻辑解码导致发布订阅check失败的问题
Merge pull request !6587 from chenxiaobin/fixSubObjectType
This commit is contained in:
@ -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;
|
||||
@ -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;
|
||||
|
||||
@ -1,2 +1 @@
|
||||
create type atype as (id int, name text);
|
||||
create type btype as object (id int, name text);
|
||||
create type atype as (id int, name text);
|
||||
@ -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;
|
||||
|
||||
Reference in New Issue
Block a user