diff options
author | unknown <msvensson@pilot.mysql.com> | 2007-11-26 18:46:05 +0100 |
---|---|---|
committer | unknown <msvensson@pilot.mysql.com> | 2007-11-26 18:46:05 +0100 |
commit | 47063462ddd4672fd75b9a4d2667fab8cb46201c (patch) | |
tree | 31faf1a441b80f99011e7b5bd2c4e3b5e960cdd6 /scripts | |
parent | 061abeeb72ca916ee8c54bc01f35d5c7dbacb19c (diff) | |
download | mariadb-git-47063462ddd4672fd75b9a4d2667fab8cb46201c.tar.gz |
Use myisam as default storage engine when running mysqld in --bootstrap
mode
scripts/mysql_install_db.sh:
Bug#31315 mysql_install_db fails if a default table type of NDB is set in my.cnf
- Use myisam as default storage engine when running mysqld in --bootstrap
mode
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysql_install_db.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh index 260c372c802..0a816cef493 100644 --- a/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh @@ -314,6 +314,7 @@ mysqld_bootstrap="${MYSQLD_BOOTSTRAP-$mysqld}" mysqld_install_cmd_line="$mysqld_bootstrap $defaults $mysqld_opt --bootstrap \ --basedir=$basedir --datadir=$ldata --log-warnings=0 --loose-skip-innodb \ --loose-skip-ndbcluster $args --max_allowed_packet=8M \ + --default-storage-engine=myisam \ --net_buffer_length=16K" # Create the system and help tables by passing them to "mysqld --bootstrap" |