diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2022-09-19 15:22:43 -0400 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2022-09-19 15:39:49 -0400 |
commit | 7fbf9b1b07dcfb656d9c389c76ae74dd35542c21 (patch) | |
tree | 0389d922bc274c2346ea8f9c195176c7090e5097 /src | |
parent | c403f97b4eabbfec90ab195a664b7aec3ad58004 (diff) | |
download | postgresql-7fbf9b1b07dcfb656d9c389c76ae74dd35542c21.tar.gz postgresql-7fbf9b1b07dcfb656d9c389c76ae74dd35542c21.zip |
Fix icu tests with C locale
Similar to 1e08576691bf1a25c0e28745e5e800c44f2a1c76, but for the icu
test suite.
Reported-by: Christoph Berg <myon@debian.org>
Discussion: https://www.postgresql.org/message-id/YyWeU61YMFwjVdxE@msg.df7cb.de
Diffstat (limited to 'src')
-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 7035ff3c209..3ddc5d878dd 100644 --- a/src/test/icu/t/010_database.pl +++ b/src/test/icu/t/010_database.pl @@ -54,7 +54,7 @@ b), # Test error cases in CREATE DATABASE involving locale-related options my ($ret, $stdout, $stderr) = $node1->psql('postgres', - q{CREATE DATABASE dbicu LOCALE_PROVIDER icu TEMPLATE template0}); + q{CREATE DATABASE dbicu LOCALE_PROVIDER icu TEMPLATE template0 ENCODING UTF8}); isnt($ret, 0, "ICU locale must be specified for ICU provider: exit code not 0"); like( |