diff options
author | unknown <serg@sergbook.mysql.com> | 2007-04-30 07:45:56 -0700 |
---|---|---|
committer | unknown <serg@sergbook.mysql.com> | 2007-04-30 07:45:56 -0700 |
commit | c156d675f47849c932277aa5a79d9f1560164c31 (patch) | |
tree | a62f9eee79015c377e86ca87adefa24c61a2b9b6 /scripts | |
parent | c63e7c3e69f7dc1d3a2dbd531c20587237816277 (diff) | |
download | mariadb-git-c156d675f47849c932277aa5a79d9f1560164c31.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
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')
-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" |