Revert test case added by commit 1e165d05fe06a9072867607886f818bc255507db.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 2 Aug 2017 00:15:10 +0000 (20:15 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 2 Aug 2017 00:15:10 +0000 (20:15 -0400)
The buildfarm is still showing at least three distinct behaviors for
a bad locale name in CREATE COLLATION.  Although this test was helpful
for getting the error reporting code into some usable shape, it doesn't
seem worth carrying multiple expected-files in order to support the
test in perpetuity.  So pull it back out.

Discussion: https://postgr.es/m/CAKKotZS-wcDcofXDCH=sidiuajE+nqHn2CGjLLX78anyDmi3gQ@mail.gmail.com

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

index 70866df000b92dce7dc23950b6c2350268b0f20d..b0025c0a87e80b07a35bf1fa64de29e619d9937e 100644 (file)
@@ -627,9 +627,6 @@ CREATE COLLATION mycoll1 FROM "C";
 CREATE COLLATION mycoll2 ( LC_COLLATE = "POSIX", LC_CTYPE = "POSIX" );
 CREATE COLLATION mycoll3 FROM "default";  -- intentionally unsupported
 ERROR:  collation "default" cannot be copied
-CREATE COLLATION mycoll4 ( LOCALE = "no_such_locale" );  -- fail
-ERROR:  could not create locale "no_such_locale": No such file or directory
-DETAIL:  The operating system could not find any locale data for the locale name "no_such_locale".
 DROP COLLATION mycoll1;
 CREATE TABLE collate_test23 (f1 text collate mycoll2);
 DROP COLLATION mycoll2;  -- fail
index f095ae08be777b03afc5ab56fd7e1f0b3906be97..698f57749068ba8b05f5c0647010ab46a4d4b86c 100644 (file)
@@ -234,7 +234,6 @@ EXPLAIN (COSTS OFF)
 CREATE COLLATION mycoll1 FROM "C";
 CREATE COLLATION mycoll2 ( LC_COLLATE = "POSIX", LC_CTYPE = "POSIX" );
 CREATE COLLATION mycoll3 FROM "default";  -- intentionally unsupported
-CREATE COLLATION mycoll4 ( LOCALE = "no_such_locale" );  -- fail
 
 DROP COLLATION mycoll1;
 CREATE TABLE collate_test23 (f1 text collate mycoll2);