From 647b7158953b7db7ebab61f54796669561470351 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Fri, 10 Apr 2015 13:29:22 +0200 Subject: Bug 1152862: Require PostgreSQL 9.0 r/a=glob --- Bugzilla/Constants.pm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'Bugzilla/Constants.pm') diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 323fb151c..ec2b03c05 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -527,15 +527,12 @@ use constant DB_MODULE => { version => '4.001', }, name => 'MySQL'}, - # Also see Bugzilla::DB::Pg::bz_check_server_version, which has special - # code to require DBD::Pg 2.17.2 for PostgreSQL 9 and above. - 'pg' => {db => 'Bugzilla::DB::Pg', db_version => '8.03.0000', + 'pg' => {db => 'Bugzilla::DB::Pg', db_version => '9.00.0000', dbd => { package => 'DBD-Pg', module => 'DBD::Pg', - # 2.7.0 fixes a problem with quoting strings - # containing backslashes in them. - version => '2.7.0', + # Pg 9.2 requires 2.19.3 as spclocation no longer exists. + version => '2.19.3', }, name => 'PostgreSQL'}, 'oracle'=> {db => 'Bugzilla::DB::Oracle', db_version => '10.02.0', -- cgit v1.2.3-24-g4f1b