From b42697277d7d8d4c597d0a3a5424fda292d1ce57 Mon Sep 17 00:00:00 2001 From: Greg Date: Thu, 28 May 2009 21:06:14 -0400 Subject: [PATCH] Fix for better logging of tests. --- t/CP_Testing.pm | 5 +++++ 1 file changed, 5 insertions(+) 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}; -- 2.30.2