alter_table test sometimes failed in parallel mode, because of transient
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 23 Dec 2003 20:17:47 +0000 (20:17 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 23 Dec 2003 20:17:47 +0000 (20:17 +0000)
table name conflict against rangefuncs test.

src/test/regress/expected/alter_table.out
src/test/regress/sql/alter_table.sql

index cc50cb86daea95f312708e9bb1dd462c20ba2187..dfdf0601c4fa6db1d7d670d36d406fad2e76d7c6 100644 (file)
@@ -737,8 +737,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);
index 33187c8352672096fb38fe466013714502228685..fc6a2b307562d593fc128abff83d7f9c0fea5ec7 100644 (file)
@@ -580,7 +580,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);