From: Greg Date: Fri, 29 May 2009 01:06:14 +0000 (-0400) Subject: Fix for better logging of tests. X-Git-Tag: 2.9.0~2 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=b42697277d7d8d4c597d0a3a5424fda292d1ce57;p=check_postgres.git Fix for better logging of tests. --- diff --git a/t/CP_Testing.pm b/t/CP_Testing.pm index b77783e96..2bd345040 100644 --- a/t/CP_Testing.pm +++ b/t/CP_Testing.pm @@ -105,6 +105,11 @@ sub test_database_handle { print $cfh qq{max_prepared_transactions = 5\n}; } + ## ## >= 8.2 + if ($imaj > 8 or ($imaj==8 and $imin >= 2)) { + print $cfh qq{logging_collector = off\n}; + } + ## ## <= 8.2 if ($imaj < 8 or ($imaj==8 and $imin <= 2)) { print $cfh qq{stats_block_level = on\n};