Closed
Bug 852560
Opened 12 years ago
Closed 12 years ago
Bugzilla cannot be installed with MySQL 5.6, because the have_innodb variable no longer exists ("InnoDB is disabled in your MySQL installation")
Categories
(Bugzilla :: Database, defect)
Tracking
()
RESOLVED
FIXED
Bugzilla 4.0
People
(Reporter: glob, Assigned: LpSolit)
Details
Attachments
(1 file)
914 bytes,
patch
|
glob
:
review+
|
Details | Diff | Splinter Review |
from http://stackoverflow.com/q/15359467/953 we do: > my ($innodb_on) = @{$self->selectcol_arrayref( > q{SHOW VARIABLES LIKE '%have_innodb%'}, {Columns=>[2]})}; > if ($innodb_on ne 'YES') { > die install_string('mysql_innodb_disabled'); > } according to http://bugs.mysql.com/bug.php?id=63383 have_innodb was removed in mysql 5.6, and we should be using SHOW ENGINES instead.
Assignee | ||
Comment 1•12 years ago
|
||
This syntax is supported by all versions of MySQL 5.x.
Assignee | ||
Comment 2•12 years ago
|
||
We will take it for 4.0 despite it's not a security bug, because 4.0 is still far from EOL and MySQL 5.6 already reached GA.
Flags: blocking4.4+
Flags: blocking4.2.6+
Flags: blocking4.0.11+
Summary: unable to install bugzilla with mysql 5.6 - "InnoDB is disabled in your MySQL installation" → Bugzilla cannot be installed with MySQL 5.6, because the have_innodb variable no longer exists ("InnoDB is disabled in your MySQL installation")
Target Milestone: --- → Bugzilla 4.0
Comment on attachment 726803 [details] [diff] [review] patch, v1 r=glob
Attachment #726803 -
Flags: review?(glob) → review+
Flags: approval?
Flags: approval4.4?
Flags: approval4.2?
Flags: approval4.0?
Assignee | ||
Updated•12 years ago
|
Flags: approval?
Flags: approval4.4?
Flags: approval4.4+
Flags: approval4.2?
Flags: approval4.2+
Flags: approval4.0?
Flags: approval4.0+
Flags: approval+
Assignee | ||
Comment 4•12 years ago
|
||
On checkin, I replaced /^YES|DEFAULT$/ by /^(YES|DEFAULT)$/. Committing to: bzr+ssh://lpsolit%40gmail.com@bzr.mozilla.org/bugzilla/trunk/ modified Bugzilla/DB/Mysql.pm Committed revision 8597. Committing to: bzr+ssh://lpsolit%40gmail.com@bzr.mozilla.org/bugzilla/4.4/ modified Bugzilla/DB/Mysql.pm Committed revision 8536. Committing to: bzr+ssh://lpsolit%40gmail.com@bzr.mozilla.org/bugzilla/4.2/ modified Bugzilla/DB/Mysql.pm Committed revision 8198. Committing to: bzr+ssh://lpsolit%40gmail.com@bzr.mozilla.org/bugzilla/4.0/ modified Bugzilla/DB/Mysql.pm Committed revision 7748.
Status: ASSIGNED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•