From: Frédéric Buclin Date: Mon, 15 Oct 2012 13:59:32 +0000 (+0200) Subject: Bug 801569: Require DBD::Pg 2.7.0 to correctly work with PostgreSQL 8.3 X-Git-Tag: bugzilla-4.5.1~347 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa48b7a2e8a395b84076d20a0965a31ce6d130ee;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 1ec9218353..514c81143a 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -490,7 +490,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',