From: glyn Date: Mon, 24 Oct 2016 15:53:12 +0000 (+0100) Subject: Fix mapping for max_wal_size: introduced in 9.5 not 9.3 X-Git-Url: https://git.8kb.co.uk/?p=postgresql%2Fpg_upgrade_conf;a=commitdiff_plain;h=HEAD Fix mapping for max_wal_size: introduced in 9.5 not 9.3 --- diff --git a/pg_upgrade_conf.pl b/pg_upgrade_conf.pl index e16e5dd..f04f19c 100755 --- a/pg_upgrade_conf.pl +++ b/pg_upgrade_conf.pl @@ -49,7 +49,7 @@ my %g_gucs_map = (max_wal_size => [ split(' ', "check my %g_gucs_obs = (max_fsm_pages => [ qw(8.3) ], max_fsm_relations => [ qw(8.3) ], ssl_renegotiation_limit => [ qw(9.3) ], - checkpoint_segments => [ qw(9.3 max_wal_size) ]); + checkpoint_segments => [ qw(9.5 max_wal_size) ]); my $g_non_default_count = 0; my $g_change_count = 0;