!6587 修复创建抽象类型不支持逻辑解码导致发布订阅check失败的问题

Merge pull request !6587 from chenxiaobin/fixSubObjectType
This commit is contained in:
opengauss_bot
2024-10-30 08:09:04 +00:00
committed by Gitee
4 changed files with 1 additions and 9 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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);

View File

@ -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;