diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-10-15 15:59:32 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-10-15 15:59:32 +0200 |
commit | fa48b7a2e8a395b84076d20a0965a31ce6d130ee (patch) | |
tree | 900fefc400a03a3ab862d1c05f36d1d80b36409f | |
parent | 9048c371060791a46e117a580bd53a2db2602145 (diff) | |
download | bugzilla-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
-rw-r--r-- | Bugzilla/Constants.pm | 4 |
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', |