提交 e8a45156 编写于 作者: T Tom Lane

alter_table test sometimes failed in parallel mode, because of transient

table name conflict against rangefuncs test.
上级 baee5f75
...@@ -737,8 +737,8 @@ drop table def_test; ...@@ -737,8 +737,8 @@ drop table def_test;
alter table pg_class drop column relname; alter table pg_class drop column relname;
ERROR: permission denied: "pg_class" is a system catalog ERROR: permission denied: "pg_class" is a system catalog
-- try altering non-existent table, should fail -- try altering non-existent table, should fail
alter table foo drop column bar; alter table nosuchtable drop column bar;
ERROR: relation "foo" does not exist ERROR: relation "nosuchtable" does not exist
-- test dropping columns -- test dropping columns
create table atacc1 (a int4 not null, b int4, c int4 not null, d int4); create table atacc1 (a int4 not null, b int4, c int4 not null, d int4);
insert into atacc1 values (1, 2, 3, 4); insert into atacc1 values (1, 2, 3, 4);
......
...@@ -580,7 +580,7 @@ drop table def_test; ...@@ -580,7 +580,7 @@ drop table def_test;
alter table pg_class drop column relname; alter table pg_class drop column relname;
-- try altering non-existent table, should fail -- try altering non-existent table, should fail
alter table foo drop column bar; alter table nosuchtable drop column bar;
-- test dropping columns -- test dropping columns
create table atacc1 (a int4 not null, b int4, c int4 not null, d int4); create table atacc1 (a int4 not null, b int4, c int4 not null, d int4);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册