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

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