diff options
author | unknown <serg@serg.mylan> | 2005-12-03 15:02:09 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2005-12-03 15:02:09 +0100 |
commit | da8b9967a85ba2cbc96c144695ad9bed7e6aad53 (patch) | |
tree | 164169a3bb780c4b9e284ff34f5dc99cdc7bf6dc /mysql-test/t/backup.test | |
parent | 33b58ea123fa474c8ab6c73cea1ac6bd37671587 (diff) | |
download | mariadb-git-da8b9967a85ba2cbc96c144695ad9bed7e6aad53.tar.gz |
this has nothing to do with the bug#13012.
it's about mysql_admin_commands not being reexecution-safe
(and CHECK still isn't)
mysql-test/r/sp-error.result:
optimize is now allowed in SP
mysql-test/r/sp.result:
test repair/optimize/analyze in SP
mysql-test/t/backup.test:
clean up after itself
mysql-test/t/sp-error.test:
optimize is now allowed in SP
mysql-test/t/sp.test:
test repair/optimize/analyze in SP
sql/sp_head.cc:
all mysql_admin commands return result set
sql/sql_parse.cc:
all mysql_admin commands modify table list and we should restore it for SP
sql/sql_table.cc:
optimization - don't execute views when no view is expected/allowed
sql/sql_yacc.yy:
optimize is now allowed in SP
Diffstat (limited to 'mysql-test/t/backup.test')
-rw-r--r-- | mysql-test/t/backup.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/backup.test b/mysql-test/t/backup.test index 3034129ad4b..40a9fa73b60 100644 --- a/mysql-test/t/backup.test +++ b/mysql-test/t/backup.test @@ -52,5 +52,6 @@ unlock tables; connection con1; reap; drop table t5; +--system rm $MYSQL_TEST_DIR/var/tmp/t?.* # End of 4.1 tests |