config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/sysschema/t/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/suite/sysschema/t/mysqldump.test

-- source include/not_embedded.inc

# Dump all databases
--exec $MYSQL_DUMP -uroot --all-databases > $MYSQLTEST_VARDIR/tmp/bug20902791.sql

# Save a copy of the user/tables_priv tables, to restore later
# Otherwise the final mysql_upgrade will REPLACE and update timestamps etc.
--let $backup=1
--source include/backup_tables_priv_and_users.inc

# Remove the sys schema
DROP DATABASE sys;

# Reload the dump
--exec $MYSQL < $MYSQLTEST_VARDIR/tmp/bug20902791.sql

# The sys schema should not exist
SHOW DATABASES;

# Finally reload the sys schema to return to normal
--exec $MYSQL_UPGRADE --skip-verbose --force
SHOW DATABASES;

# Restore the saved contents of mysql.user and mysql.tables_priv
--let $restore=1
--source include/backup_tables_priv_and_users.inc

FLUSH PRIVILEGES;

Man Man