From: Frédéric Buclin Date: Mon, 15 Oct 2012 14:01:09 +0000 (+0200) Subject: Bug 801569: Require DBD::Pg 2.7.0 to correctly work with PostgreSQL 8.3 X-Git-Tag: bugzilla-4.4rc1~31 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5da18621c3e03726f7fed93b36c601172f228e78;p=thirdparty%2Fbugzilla.git Bug 801569: Require DBD::Pg 2.7.0 to correctly work with PostgreSQL 8.3 r=glob a=LpSolit --- diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 39dfc6f5b2..674421a176 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -487,7 +487,9 @@ use constant DB_MODULE => { dbd => { package => 'DBD-Pg', module => 'DBD::Pg', - version => '1.45', + # 2.7.0 fixes a problem with quoting strings + # containing backslashes in them. + version => '2.7.0', }, name => 'PostgreSQL'}, 'oracle'=> {db => 'Bugzilla::DB::Oracle', db_version => '10.02.0',