summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Constants.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2015-04-10 13:29:22 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2015-04-10 13:29:22 +0200
commit647b7158953b7db7ebab61f54796669561470351 (patch)
tree307525c1b640ec6f432424bbf5bba8843a2c928c /Bugzilla/Constants.pm
parent8a1de002259e31702ba278778f4e0ed2026666af (diff)
downloadbugzilla-647b7158953b7db7ebab61f54796669561470351.tar.gz
bugzilla-647b7158953b7db7ebab61f54796669561470351.tar.xz
Bug 1152862: Require PostgreSQL 9.0
r/a=glob
Diffstat (limited to 'Bugzilla/Constants.pm')
-rw-r--r--Bugzilla/Constants.pm9
1 files changed, 3 insertions, 6 deletions
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',