diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2018-07-03 14:54:40 +0200 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2018-07-03 14:56:14 +0200 |
commit | 1b981b9edb419e2ac3be1d6e007192a827504185 (patch) | |
tree | 2f8c9f08563527e7b81388a8412084a152932a9b /mysql-test/main/sp-bugs.test | |
parent | efba0b1df5abe1ac972181a01bcbd208693639ae (diff) | |
download | mariadb-git-1b981b9edb419e2ac3be1d6e007192a827504185.tar.gz |
Removed duplicate copy of the test
Diffstat (limited to 'mysql-test/main/sp-bugs.test')
-rw-r--r-- | mysql-test/main/sp-bugs.test | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/mysql-test/main/sp-bugs.test b/mysql-test/main/sp-bugs.test index 2dd70d28249..6695b05b72d 100644 --- a/mysql-test/main/sp-bugs.test +++ b/mysql-test/main/sp-bugs.test @@ -81,27 +81,6 @@ DROP TABLE t1; DROP PROCEDURE p1; --echo # ---echo # Bug#50423: Crash on second call of a procedure dropping a trigger ---echo # - ---disable_warnings -DROP TABLE IF EXISTS t1; -DROP TRIGGER IF EXISTS tr1; -DROP PROCEDURE IF EXISTS p1; ---enable_warnings - -CREATE TABLE t1 (f1 INTEGER); -CREATE TRIGGER tr1 BEFORE INSERT ON t1 FOR EACH ROW SET @aux = 1; -CREATE PROCEDURE p1 () DROP TRIGGER tr1; - -CALL p1 (); ---error ER_TRG_DOES_NOT_EXIST -CALL p1 (); - -DROP TABLE t1; -DROP PROCEDURE p1; - ---echo # --echo # Bug#54375: Error in stored procedure leaves connection --echo # in different default schema --echo # |