diff options
Diffstat (limited to 'mysql-test/suite/perfschema/include/program_nested_cleanup.inc')
-rw-r--r-- | mysql-test/suite/perfschema/include/program_nested_cleanup.inc | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/include/program_nested_cleanup.inc b/mysql-test/suite/perfschema/include/program_nested_cleanup.inc new file mode 100644 index 00000000..0f5b26f3 --- /dev/null +++ b/mysql-test/suite/perfschema/include/program_nested_cleanup.inc @@ -0,0 +1,21 @@ +# +# clean up if set-up created in +# suite/perfschema/include/program_nested_setup.inc +# + +DROP PROCEDURE c4; +DROP PROCEDURE c3; +DROP PROCEDURE c2; +DROP PROCEDURE c1; +DROP PROCEDURE inc; +DROP PROCEDURE inc2; +DROP PROCEDURE iotest; +DROP FUNCTION mul; +DROP FUNCTION inc; +DROP FUNCTION fac; +DROP FUNCTION fun; +DROP PROCEDURE ifac; +DROP TRIGGER trg; +DROP TABLE t1,t2; + +DROP DATABASE nested_sp; |