mirror of
https://github.com/postgres/postgres.git
synced 2025-05-18 17:41:14 +03:00
alter_table test sometimes failed in parallel mode, because of transient
table name conflict against rangefuncs test.
This commit is contained in:
parent
9c6063890b
commit
d30c69bc63
@ -733,8 +733,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);
|
||||||
|
@ -576,7 +576,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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user