diff options
author | mkanat%kerio.com <> | 2005-07-12 07:07:14 +0200 |
---|---|---|
committer | mkanat%kerio.com <> | 2005-07-12 07:07:14 +0200 |
commit | d6075db7e7080f8e37b4eba0986fdc462a341735 (patch) | |
tree | 8bc32a886a53ed819ffe87d880a2a6ada3e284c7 /Bugzilla | |
parent | 7e546edc8f6666bb4b7dc8bd502251b666bd60c0 (diff) | |
download | bugzilla-d6075db7e7080f8e37b4eba0986fdc462a341735.tar.gz bugzilla-d6075db7e7080f8e37b4eba0986fdc462a341735.tar.xz |
Bug 204217: require MySQL version 4.0+
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=joel, a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/DB/Mysql.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index 983cb3b06..77127630c 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -47,7 +47,7 @@ use Bugzilla::Error; # This module extends the DB interface via inheritance use base qw(Bugzilla::DB); -use constant REQUIRED_VERSION => '3.23.41'; +use constant REQUIRED_VERSION => '4.0.14'; use constant PROGRAM_NAME => 'MySQL'; use constant MODULE_NAME => 'Mysql'; use constant DBD_VERSION => '2.9003'; |