File tree Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Expand file tree Collapse file tree 2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -627,9 +627,6 @@ CREATE COLLATION mycoll1 FROM "C";
627
627
CREATE COLLATION mycoll2 ( LC_COLLATE = "POSIX", LC_CTYPE = "POSIX" );
628
628
CREATE COLLATION mycoll3 FROM "default"; -- intentionally unsupported
629
629
ERROR: collation "default" cannot be copied
630
- CREATE COLLATION mycoll4 ( LOCALE = "no_such_locale" ); -- fail
631
- ERROR: could not create locale "no_such_locale": No such file or directory
632
- DETAIL: The operating system could not find any locale data for the locale name "no_such_locale".
633
630
DROP COLLATION mycoll1;
634
631
CREATE TABLE collate_test23 (f1 text collate mycoll2);
635
632
DROP COLLATION mycoll2; -- fail
Original file line number Diff line number Diff line change @@ -234,7 +234,6 @@ EXPLAIN (COSTS OFF)
234
234
CREATE COLLATION mycoll1 FROM " C" ;
235
235
CREATE COLLATION mycoll2 ( LC_COLLATE = " POSIX" , LC_CTYPE = " POSIX" );
236
236
CREATE COLLATION mycoll3 FROM " default" ; -- intentionally unsupported
237
- CREATE COLLATION mycoll4 ( LOCALE = " no_such_locale" ); -- fail
238
237
239
238
DROP COLLATION mycoll1;
240
239
CREATE TABLE collate_test23 (f1 text collate mycoll2);
You can’t perform that action at this time.
0 commit comments