Commit cce95a2f authored by Thomas Munro's avatar Thomas Munro

Remove obsolete collation test.

The previous commit forgot to remove this test, which no longer
holds on all systems.
parent d5ac14f9
...@@ -1033,8 +1033,6 @@ ERROR: parameter "lc_ctype" must be specified ...@@ -1033,8 +1033,6 @@ ERROR: parameter "lc_ctype" must be specified
CREATE COLLATION testx (locale = 'nonsense'); -- fail CREATE COLLATION testx (locale = 'nonsense'); -- fail
ERROR: could not create locale "nonsense": No such file or directory 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". 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; CREATE COLLATION test4 FROM nonsense;
ERROR: collation "nonsense" for encoding "UTF8" does not exist ERROR: collation "nonsense" for encoding "UTF8" does not exist
CREATE COLLATION test5 FROM test0; CREATE COLLATION test5 FROM test0;
......
...@@ -369,7 +369,6 @@ END ...@@ -369,7 +369,6 @@ END
$$; $$;
CREATE COLLATION test3 (lc_collate = 'en_US.utf8'); -- fail, need lc_ctype CREATE COLLATION test3 (lc_collate = 'en_US.utf8'); -- fail, need lc_ctype
CREATE COLLATION testx (locale = 'nonsense'); -- fail 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 test4 FROM nonsense;
CREATE COLLATION test5 FROM test0; CREATE COLLATION test5 FROM test0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment