diff options
| author | Jeff Davis | 2023-03-09 18:52:41 +0000 |
|---|---|---|
| committer | Jeff Davis | 2023-03-09 18:52:41 +0000 |
| commit | 27b62377b47f9e7bf58613608bc718c86ea91e91 (patch) | |
| tree | 80ada6d59fac3df61ff41801d5fd3c1faf469470 /src/test | |
| parent | a7e584a7d68a9a2bcc7efaf442262771f9044248 (diff) | |
Use ICU by default at initdb time.
If the ICU locale is not specified, initialize the default collator
and retrieve the locale name from that.
Discussion: https://postgr.es/m/510d284759f6e943ce15096167760b2edcb2e700.camel@j-davis.com
Reviewed-by: Peter Eisentraut
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/icu/t/010_database.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/icu/t/010_database.pl b/src/test/icu/t/010_database.pl index 80ab1c7789..45d77c319a 100644 --- a/src/test/icu/t/010_database.pl +++ b/src/test/icu/t/010_database.pl @@ -12,7 +12,7 @@ if ($ENV{with_icu} ne 'yes') } my $node1 = PostgreSQL::Test::Cluster->new('node1'); -$node1->init; +$node1->init(extra => ['--locale-provider=libc']); $node1->start; $node1->safe_psql('postgres', |
