summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorsayantan dutta <sayantan.dutta@oracle.com>2013-12-12 12:20:57 +0530
committersayantan dutta <sayantan.dutta@oracle.com>2013-12-12 12:20:57 +0530
commit1bc36178c6eeb62ca5b80c3f3dd11e9d652b9a52 (patch)
tree1c88e5de92ff6af670307ac95bc4cc41ed11f259 /mysql-test
parent9418fea133656d4d2254d533d8d21151c8dbc10b (diff)
downloadmariadb-git-1bc36178c6eeb62ca5b80c3f3dd11e9d652b9a52.tar.gz
Bug #17827378 - MTR DOES NOT REPORT IF A TEST FAILS TO DROP CREATED EVENTS
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/include/mtr_check.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/include/mtr_check.sql b/mysql-test/include/mtr_check.sql
index 9c51b333ec6..8714e358372 100644
--- a/mysql-test/include/mtr_check.sql
+++ b/mysql-test/include/mtr_check.sql
@@ -74,6 +74,13 @@ BEGIN
show status like 'slave_open_temp_tables';
+ -- Dump all events, there should be none
+ SELECT * FROM INFORMATION_SCHEMA.EVENTS;
+ -- Dump all triggers, there should be none
+ SELECT * FROM INFORMATION_SCHEMA.TRIGGERS;
+ -- Dump all created procedures, there should be none
+ SELECT * FROM INFORMATION_SCHEMA.ROUTINES;
+
END||
--