mirror of https://github.com/citusdata/citus.git
Merge pull request #4097 from citusdata/fix-case-insensitive-test-on-old-icu
Fix non deterministic collation test to work with ancient libicu versionspull/4098/head
commit
7d5c85657e
|
@ -389,7 +389,7 @@ SELECT DISTINCT y FROM test;
|
||||||
-- non deterministic collations
|
-- non deterministic collations
|
||||||
CREATE COLLATION test_pg12.case_insensitive (
|
CREATE COLLATION test_pg12.case_insensitive (
|
||||||
provider = icu,
|
provider = icu,
|
||||||
locale = 'und-u-ks-level2',
|
locale = '@colStrength=secondary',
|
||||||
deterministic = false
|
deterministic = false
|
||||||
);
|
);
|
||||||
CREATE TABLE col_test (
|
CREATE TABLE col_test (
|
||||||
|
|
|
@ -263,7 +263,7 @@ SELECT DISTINCT y FROM test;
|
||||||
-- non deterministic collations
|
-- non deterministic collations
|
||||||
CREATE COLLATION test_pg12.case_insensitive (
|
CREATE COLLATION test_pg12.case_insensitive (
|
||||||
provider = icu,
|
provider = icu,
|
||||||
locale = 'und-u-ks-level2',
|
locale = '@colStrength=secondary',
|
||||||
deterministic = false
|
deterministic = false
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue