aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-12-23 20:17:55 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-12-23 20:17:55 +0000
commitd30c69bc635f5c4709a3e28b07821bbf926b879a (patch)
tree4cade51a8014b3420e82c3967a9a41091351b199 /src
parent9c6063890ba7298f171fb54fa9d3d346a014cf47 (diff)
downloadpostgresql-d30c69bc635f5c4709a3e28b07821bbf926b879a.tar.gz
postgresql-d30c69bc635f5c4709a3e28b07821bbf926b879a.zip
alter_table test sometimes failed in parallel mode, because of transient
table name conflict against rangefuncs test.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/alter_table.out4
-rw-r--r--src/test/regress/sql/alter_table.sql2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/test/regress/expected/alter_table.out b/src/test/regress/expected/alter_table.out
index 61a3965fe59..250f6a77c6a 100644
--- a/src/test/regress/expected/alter_table.out
+++ b/src/test/regress/expected/alter_table.out
@@ -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);
diff --git a/src/test/regress/sql/alter_table.sql b/src/test/regress/sql/alter_table.sql
index 9bdc8cd1eaf..ef91f02b511 100644
--- a/src/test/regress/sql/alter_table.sql
+++ b/src/test/regress/sql/alter_table.sql
@@ -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);