summaryrefslogtreecommitdiff
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
commit2dc95d5940b724167029edec9267d8e60e3a1b6d (patch)
tree1c88e5de92ff6af670307ac95bc4cc41ed11f259
parentc90cdf5d494e0caef9d694c75c739c188df1a512 (diff)
downloadmariadb-git-2dc95d5940b724167029edec9267d8e60e3a1b6d.tar.gz
Bug #17827378 - MTR DOES NOT REPORT IF A TEST FAILS TO DROP CREATED EVENTS
-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||
--