1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

fixes in mysqltest and mysqlbinlog

trying to understand why --bootstrap option does not create tables
on disk, hope the problem will be fixed when I pull, if not will
debug, but need to commit in order to pull
This commit is contained in:
sasha@mysql.sashanet.com
2001-08-20 11:20:47 -06:00
parent 6b45a297ee
commit 845fc9e0c6
3 changed files with 31 additions and 19 deletions

View File

@ -190,8 +190,11 @@ then
c_c="$c_c comment='Column privileges';"
fi
if $execdir/mysqld --no-defaults --bootstrap --skip-grant-tables \
--basedir=$basedir --datadir=$ldata --skip-innodb --skip-bdb --skip-gemini $EXTRA_ARG << END_OF_DATA
mysqld_boot=" $execdir/mysqld --no-defaults --bootstrap --skip-grant-tables \
--basedir=$basedir --datadir=$ldata --skip-innodb --skip-bdb --skip-gemini $EXTRA_ARG"
echo "running $mysqld_boot"
if $mysqld_boot << END_OF_DATA
use mysql;
$c_d
$i_d
@ -211,5 +214,6 @@ END_OF_DATA
then
exit 0
else
echo "Error executing mysqld --boostrap"
exit 1
fi