mirror of https://github.com/citusdata/citus.git
Fix non deterministic collation test to work with ancient libicu versions
CentOS 7's libicu is too old for und-u-ks-level2 @colStrength=secondary works with both older & newer versions of libicupull/4097/head
parent
320a840b3f
commit
212ae7163f
|
@ -389,7 +389,7 @@ SELECT DISTINCT y FROM test;
|
|||
-- non deterministic collations
|
||||
CREATE COLLATION test_pg12.case_insensitive (
|
||||
provider = icu,
|
||||
locale = 'und-u-ks-level2',
|
||||
locale = '@colStrength=secondary',
|
||||
deterministic = false
|
||||
);
|
||||
CREATE TABLE col_test (
|
||||
|
|
|
@ -263,7 +263,7 @@ SELECT DISTINCT y FROM test;
|
|||
-- non deterministic collations
|
||||
CREATE COLLATION test_pg12.case_insensitive (
|
||||
provider = icu,
|
||||
locale = 'und-u-ks-level2',
|
||||
locale = '@colStrength=secondary',
|
||||
deterministic = false
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in New Issue