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|| --