]> 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 13:59:32 +0000 (15:59 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Mon, 15 Oct 2012 13:59:32 +0000 (15:59 +0200)
r=glob a=LpSolit

Bugzilla/Constants.pm

index 1ec92183534d8384b419c3f8031d789d9f58c1c7..514c81143a7328ec41d0eae337311e6400260bf2 100644 (file)
@@ -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',