diff options
author | serg@sergbook.mysql.com <> | 2007-04-30 07:45:56 -0700 |
---|---|---|
committer | serg@sergbook.mysql.com <> | 2007-04-30 07:45:56 -0700 |
commit | dbd683a7d902d5e1712b616adee45a20ea3c8887 (patch) | |
tree | a62f9eee79015c377e86ca87adefa24c61a2b9b6 /scripts/mysql_install_db.sh | |
parent | 1bd2953c024e0c4189c797df1cb06d35515ebd71 (diff) | |
download | mariadb-git-dbd683a7d902d5e1712b616adee45a20ea3c8887.tar.gz |
mysql-test/mysql-test-run.pl: another mysqld --help fix
scripts/mysql_install_db.sh: don't fail if --skip-XXX is not recognized
Diffstat (limited to 'scripts/mysql_install_db.sh')
-rw-r--r-- | scripts/mysql_install_db.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mysql_install_db.sh b/scripts/mysql_install_db.sh index 8ff7a9c11e1..506f1e58cbf 100644 --- a/scripts/mysql_install_db.sh +++ b/scripts/mysql_install_db.sh @@ -270,8 +270,8 @@ fi # Peform the install of system tables mysqld_bootstrap="${MYSQLD_BOOTSTRAP-$mysqld}" mysqld_install_cmd_line="$mysqld_bootstrap $defaults $mysqld_opt --bootstrap \ ---basedir=$basedir --datadir=$ldata --skip-innodb \ ---skip-ndbcluster $args --max_allowed_packet=8M \ +--basedir=$basedir --datadir=$ldata --loose-skip-innodb \ +--loose-skip-ndbcluster $args --max_allowed_packet=8M \ --net_buffer_length=16K" # Pipe mysql_system_tables.sql to "mysqld --bootstrap" |