Commit 9b224e91 authored by unknown's avatar unknown

Ensure that all privilege tables are created in MyISAM

parent 0327d05c
...@@ -629,6 +629,7 @@ fi ...@@ -629,6 +629,7 @@ fi
cat << END_OF_DATA cat << END_OF_DATA
use mysql; use mysql;
set table_type=myisam;
$c_d $c_d
$i_d $i_d
......
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
-- this sql script. -- this sql script.
-- On windows you should do 'mysql --force mysql < mysql_fix_privilege_tables.sql' -- On windows you should do 'mysql --force mysql < mysql_fix_privilege_tables.sql'
set table_type=MyISAM;
CREATE TABLE IF NOT EXISTS func ( CREATE TABLE IF NOT EXISTS func (
name char(64) binary DEFAULT '' NOT NULL, name char(64) binary DEFAULT '' NOT NULL,
ret tinyint(1) DEFAULT '0' NOT NULL, ret tinyint(1) DEFAULT '0' NOT NULL,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment