We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36a8881 commit f2dcf1aCopy full SHA for f2dcf1a
src/bin/pg_dump/t/002_pg_dump.pl
@@ -3881,6 +3881,10 @@
3881
my $supports_lz4 = check_pg_config("#define USE_LZ4 1");
3882
my $supports_gzip = check_pg_config("#define HAVE_LIBZ 1");
3883
3884
+# ICU doesn't work with some encodings
3885
+my $encoding = $node->safe_psql('postgres', 'show server_encoding');
3886
+$supports_icu = 0 if $encoding eq 'SQL_ASCII';
3887
+
3888
# Create additional databases for mutations of schema public
3889
$node->psql('postgres', 'create database regress_pg_dump_test;');
3890
$node->psql('postgres', 'create database regress_public_owner;');
0 commit comments