From 1bc36178c6eeb62ca5b80c3f3dd11e9d652b9a52 Mon Sep 17 00:00:00 2001 From: sayantan dutta Date: Thu, 12 Dec 2013 12:20:57 +0530 Subject: [PATCH] Bug #17827378 - MTR DOES NOT REPORT IF A TEST FAILS TO DROP CREATED EVENTS --- mysql-test/include/mtr_check.sql | 7 +++++++ 1 file changed, 7 insertions(+) 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|| --