mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fix missing test cleanup
This commit is contained in:
@ -63,7 +63,9 @@ connection master;
|
||||
# Let's cleanup
|
||||
|
||||
DROP PROCEDURE test.p1;
|
||||
DROP FUNCTION test.fn1;
|
||||
DROP TABLE test.t1;
|
||||
DROP TABLE test.t2;
|
||||
|
||||
# Let's compare. Note: If they match test will pass, if they do not match
|
||||
# the test will show that the diff statement failed and not reject file
|
||||
|
@ -35,4 +35,6 @@ t1 CREATE TABLE `t1` (
|
||||
PRIMARY KEY (`a`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
||||
DROP PROCEDURE test.p1;
|
||||
DROP FUNCTION test.fn1;
|
||||
DROP TABLE test.t1;
|
||||
DROP TABLE test.t2;
|
||||
|
@ -22,6 +22,7 @@ END//
|
||||
<End test section 2 (Tiggers & SP)>
|
||||
-----------------------------------
|
||||
DROP PROCEDURE test.p2;
|
||||
DROP PROCEDURE test.p3;
|
||||
DROP TRIGGER test.t2_ai;
|
||||
DROP TRIGGER test.t3_bi_t2;
|
||||
DROP TABLE test.t1;
|
||||
|
@ -81,6 +81,7 @@ let $message=<End test section 2 (Tiggers & SP)>;
|
||||
# First lets cleanup
|
||||
|
||||
DROP PROCEDURE test.p2;
|
||||
DROP PROCEDURE test.p3;
|
||||
DROP TRIGGER test.t2_ai;
|
||||
DROP TRIGGER test.t3_bi_t2;
|
||||
DROP TABLE test.t1;
|
||||
|
Reference in New Issue
Block a user