summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Constants.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-10-15 15:59:32 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2012-10-15 15:59:32 +0200
commitfa48b7a2e8a395b84076d20a0965a31ce6d130ee (patch)
tree900fefc400a03a3ab862d1c05f36d1d80b36409f /Bugzilla/Constants.pm
parent9048c371060791a46e117a580bd53a2db2602145 (diff)
downloadbugzilla-fa48b7a2e8a395b84076d20a0965a31ce6d130ee.tar.gz
bugzilla-fa48b7a2e8a395b84076d20a0965a31ce6d130ee.tar.xz
Bug 801569: Require DBD::Pg 2.7.0 to correctly work with PostgreSQL 8.3
r=glob a=LpSolit
Diffstat (limited to 'Bugzilla/Constants.pm')
-rw-r--r--Bugzilla/Constants.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm
index 1ec921835..514c81143 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',