diff options
author | Bjorn Munch <bjorn.munch@oracle.com> | 2011-08-17 14:42:18 +0200 |
---|---|---|
committer | Bjorn Munch <bjorn.munch@oracle.com> | 2011-08-17 14:42:18 +0200 |
commit | 91235d422934583658b5fb5b78aa9c07dc1fdefe (patch) | |
tree | f821bf8e0d7a3307e932486495462dc29e1d4a5c /mysql-test | |
parent | 10f8e406adfec177cd25db9fc25335f977e7cbfb (diff) | |
download | mariadb-git-91235d422934583658b5fb5b78aa9c07dc1fdefe.tar.gz |
Bug #11766654 59811: RE-INSTATE PROCEDURE MTR.FORCE_RESTART IN MTR, REMOVED BY 49978
Just put it back in where it was.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/include/mtr_check.sql | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/include/mtr_check.sql b/mysql-test/include/mtr_check.sql index 55e346c2007..699a35a1831 100644 --- a/mysql-test/include/mtr_check.sql +++ b/mysql-test/include/mtr_check.sql @@ -72,3 +72,13 @@ BEGIN mysql.user; END|| + +-- +-- Procedure used by test case used to force all +-- servers to restart after testcase and thus skipping +-- check test case after test +-- +CREATE DEFINER=root@localhost PROCEDURE force_restart() +BEGIN + SELECT 1 INTO OUTFILE 'force_restart'; +END|| |