1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-17 06:41:24 +03:00

alter_table test sometimes failed in parallel mode, because of transient

table name conflict against rangefuncs test.
This commit is contained in:
Tom Lane 2003-12-23 20:17:55 +00:00
parent 9c6063890b
commit d30c69bc63
2 changed files with 3 additions and 3 deletions

View File

@ -733,8 +733,8 @@ drop table def_test;
alter table pg_class drop column relname;
ERROR: permission denied: "pg_class" is a system catalog
-- try altering non-existent table, should fail
alter table foo drop column bar;
ERROR: relation "foo" does not exist
alter table nosuchtable drop column bar;
ERROR: relation "nosuchtable" does not exist
-- test dropping columns
create table atacc1 (a int4 not null, b int4, c int4 not null, d int4);
insert into atacc1 values (1, 2, 3, 4);

View File

@ -576,7 +576,7 @@ drop table def_test;
alter table pg_class drop column relname;
-- try altering non-existent table, should fail
alter table foo drop column bar;
alter table nosuchtable drop column bar;
-- test dropping columns
create table atacc1 (a int4 not null, b int4, c int4 not null, d int4);