Blame SOURCES/DBD-Pg-3.7.4-Don-t-try-to-silence-ERRORs-in-test.patch

810534
From 5c5269ef7e9c3db2d6090c411e5aa71fffdc4c04 Mon Sep 17 00:00:00 2001
810534
From: Dagfinn Ilmari Mannsaker <ilmari@sid.internal>
810534
Date: Tue, 9 Apr 2019 17:49:10 +0100
810534
Subject: [PATCH] Don't try to silence ERRORs in test
810534
MIME-Version: 1.0
810534
Content-Type: text/plain; charset=UTF-8
810534
Content-Transfer-Encoding: 8bit
810534
810534
PostrgreSQL 12 no longer allows setting client_min_messages='FATAL',
810534
and ERROR is sufficient in this case anyway.
810534
810534
Signed-off-by: Petr Písař <ppisar@redhat.com>
810534
---
810534
 t/04misc.t | 2 +-
810534
 1 file changed, 1 insertion(+), 1 deletion(-)
810534
810534
diff --git a/t/04misc.t b/t/04misc.t
810534
index f739f8a..21b9261 100644
810534
--- a/t/04misc.t
810534
+++ b/t/04misc.t
810534
@@ -113,7 +113,7 @@ $BC$
810534
 
810534
 	is( $sth->err, undef, q{Statement attribute 'err' is initially undef});
810534
 
810534
-	$dbh->do(q{SET client_min_messages = 'FATAL'});
810534
+	$dbh->do(q{SET client_min_messages = 'ERROR'});
810534
 
810534
   TODO: {
810534
 		local $TODO = q{Known bug: notice and warnings should set err to 6};
810534
-- 
810534
2.21.0
810534