Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
d6075db7
Commit
d6075db7
authored
Jul 12, 2005
by
mkanat%kerio.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 204217: require MySQL version 4.0+
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=joel, a=justdave
parent
7e546edc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
8 deletions
+2
-8
Mysql.pm
Bugzilla/DB/Mysql.pm
+1
-1
checksetup.pl
checksetup.pl
+0
-6
Bugzilla-Guide.xml
docs/xml/Bugzilla-Guide.xml
+1
-1
No files found.
Bugzilla/DB/Mysql.pm
View file @
d6075db7
...
...
@@ -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'
;
...
...
checksetup.pl
View file @
d6075db7
...
...
@@ -1499,12 +1499,6 @@ if ($my_db_check) {
" Bugzilla requires version $sql_want or later of $sql_server.\n"
.
" Please download and install a newer version.\n"
;
}
# This message is specific to MySQL.
if
(
$dbh
->
isa
(
'Bugzilla::DB::Mysql'
)
&&
(
$sql_vers
=~
/^4\.0\.(\d+)/
)
&&
(
$1
<
2
))
{
die
"\nYour MySQL server is incompatible with Bugzilla.\n"
.
" Bugzilla does not support versions 4.x.x below 4.0.2.\n"
.
" Please visit http://www.mysql.com/ and download a newer version.\n"
;
}
# See if we can connect to the database.
my
$conn_success
=
eval
{
...
...
docs/xml/Bugzilla-Guide.xml
View file @
d6075db7
...
...
@@ -42,7 +42,7 @@
<!ENTITY mysql "http://www.mysql.com/">
<!-- For minimum versions -->
<!ENTITY min-mysql-ver "
3.23.41
">
<!ENTITY min-mysql-ver "
4.0.14
">
<!ENTITY min-pg-ver "7.3.x">
<!ENTITY min-perl-ver "5.6.1">
<!ENTITY min-perl-ver-win "5.8.1">
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment