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

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