Remove a few of the new DROP-IF-EXISTS regression tests.
authorRobert Haas <rhaas@postgresql.org>
Thu, 20 Oct 2011 03:38:06 +0000 (23:38 -0400)
committerRobert Haas <rhaas@postgresql.org>
Thu, 20 Oct 2011 03:38:06 +0000 (23:38 -0400)
Commit 3301c83536e9da1e573e24ded2e610062dbf9cdc broke the build farm.
Let's try to fix that.

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

index 4a500e6b766fa0b66dff5997849d2fda75a8f43e..dab73aaba6016d4b6796569be59296be35a2bfa7 100644 (file)
@@ -86,12 +86,8 @@ NOTICE:  role "tg2" does not exist, skipping
 DROP GROUP tg1;
 ERROR:  role "tg1" does not exist
 -- collation
-DROP COLLATION test_collation_exists;
-ERROR:  collation "test_collation_exists" for encoding "UTF8" does not exist
 DROP COLLATION IF EXISTS test_collation_exists;
 NOTICE:  collation "test_collation_exists" does not exist, skipping
-CREATE COLLATION test_collation_exists FROM "POSIX";
-DROP COLLATION test_collation_exists;
 -- conversion
 DROP CONVERSION test_conversion_exists;
 ERROR:  conversion "test_conversion_exists" does not exist
index f4a0ab16cbd28803a5a5a82bb7b5212e2c098f16..633056619aa7158ee05fcea3ffd5b18f1f10c247 100644 (file)
@@ -109,10 +109,7 @@ DROP GROUP IF EXISTS tg1, tg2;
 DROP GROUP tg1;
 
 -- collation
-DROP COLLATION test_collation_exists;
 DROP COLLATION IF EXISTS test_collation_exists;
-CREATE COLLATION test_collation_exists FROM "POSIX";
-DROP COLLATION test_collation_exists;
 
 -- conversion
 DROP CONVERSION test_conversion_exists;