aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas Munro <tmunro@postgresql.org>2019-10-16 17:55:51 +1300
committerThomas Munro <tmunro@postgresql.org>2019-10-16 18:02:23 +1300
commitcce95a2f029e546dc461d7ec1760e2c3a247b0e7 (patch)
tree2529c504993b4bc758e915aa49334297b160395d /src
parentd5ac14f9ccdda036358c9059d4a29836ebc0c440 (diff)
downloadpostgresql-cce95a2f029e546dc461d7ec1760e2c3a247b0e7.tar.gz
postgresql-cce95a2f029e546dc461d7ec1760e2c3a247b0e7.zip
Remove obsolete collation test.
The previous commit forgot to remove this test, which no longer holds on all systems.
Diffstat (limited to 'src')
-rw-r--r--src/test/regress/expected/collate.linux.utf8.out2
-rw-r--r--src/test/regress/sql/collate.linux.utf8.sql1
2 files changed, 0 insertions, 3 deletions
diff --git a/src/test/regress/expected/collate.linux.utf8.out b/src/test/regress/expected/collate.linux.utf8.out
index ad56ff9caa3..37c6add5b51 100644
--- a/src/test/regress/expected/collate.linux.utf8.out
+++ b/src/test/regress/expected/collate.linux.utf8.out
@@ -1033,8 +1033,6 @@ ERROR: parameter "lc_ctype" must be specified
CREATE COLLATION testx (locale = 'nonsense'); -- fail
ERROR: could not create locale "nonsense": No such file or directory
DETAIL: The operating system could not find any locale data for the locale name "nonsense".
-CREATE COLLATION testy (locale = 'en_US.utf8', version = 'foo'); -- fail, no versions for libc
-ERROR: collation "testy" has no actual version, but a version was specified
CREATE COLLATION test4 FROM nonsense;
ERROR: collation "nonsense" for encoding "UTF8" does not exist
CREATE COLLATION test5 FROM test0;
diff --git a/src/test/regress/sql/collate.linux.utf8.sql b/src/test/regress/sql/collate.linux.utf8.sql
index eac2f900142..8c26f16f5d5 100644
--- a/src/test/regress/sql/collate.linux.utf8.sql
+++ b/src/test/regress/sql/collate.linux.utf8.sql
@@ -369,7 +369,6 @@ END
$$;
CREATE COLLATION test3 (lc_collate = 'en_US.utf8'); -- fail, need lc_ctype
CREATE COLLATION testx (locale = 'nonsense'); -- fail
-CREATE COLLATION testy (locale = 'en_US.utf8', version = 'foo'); -- fail, no versions for libc
CREATE COLLATION test4 FROM nonsense;
CREATE COLLATION test5 FROM test0;