1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

perform explicit cleanup

add missing opt file
This commit is contained in:
acurtis/antony@xiphis.org/ltamd64.xiphis.org
2007-09-08 11:56:55 -07:00
parent d8d199c469
commit 5558f69d62
5 changed files with 24 additions and 6 deletions

View File

@@ -145,7 +145,12 @@ SELECT count(*) "Slave norm" FROM test.regular_tbl;
SELECT count(*) "Slave bykey" FROM test.bykey_tbl;
SELECT count(*) "Slave byrange" FROM test.byrange_tbl;
--source include/master-slave-end.inc
connection master;
DROP DATABASE IF EXISTS test;
CREATE DATABASE test;
DROP PROCEDURE test.proc_norm;
DROP PROCEDURE test.proc_bykey;
DROP PROCEDURE test.proc_byrange;
DROP TABLE test.regular_tbl;
DROP TABLE test.bykey_tbl;
DROP TABLE test.byrange_tbl;
--source include/master-slave-end.inc