]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 801569: Require DBD::Pg 2.7.0 to correctly work with PostgreSQL 8.3
authorFrédéric Buclin <LpSolit@gmail.com>
Mon, 15 Oct 2012 14:01:09 +0000 (16:01 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Mon, 15 Oct 2012 14:01:09 +0000 (16:01 +0200)
r=glob a=LpSolit

Bugzilla/Constants.pm

index 39dfc6f5b2641981f32cc9acc329a7a37bee4768..674421a176ced8fc07dd1ac5775f68937ee97b5a 100644 (file)
@@ -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',