Commit ceb1bd19 authored by Sergei Golubchik's avatar Sergei Golubchik

remove a test that became meaningless in 2009

after fb175a1b
parent 52a0cd3c
...@@ -1608,15 +1608,6 @@ CALL p1((SELECT * FROM t1))| ...@@ -1608,15 +1608,6 @@ CALL p1((SELECT * FROM t1))|
ERROR 21000: Subquery returns more than 1 row ERROR 21000: Subquery returns more than 1 row
DROP PROCEDURE IF EXISTS p1| DROP PROCEDURE IF EXISTS p1|
DROP TABLE t1| DROP TABLE t1|
drop procedure if exists p1;
create procedure p1()
begin
create table t1 (a int) engine=MyISAM;
drop table t1;
end|
call p1();
call p1();
drop procedure p1;
drop procedure if exists proc_8759; drop procedure if exists proc_8759;
create procedure proc_8759() create procedure proc_8759()
begin begin
......
...@@ -2349,24 +2349,6 @@ DROP TABLE t1| ...@@ -2349,24 +2349,6 @@ DROP TABLE t1|
delimiter ;| delimiter ;|
#
# Bug#21801: SQL exception handlers and warnings
#
--disable_warnings
drop procedure if exists p1;
--enable_warnings
delimiter |;
create procedure p1()
begin
create table t1 (a int) engine=MyISAM;
drop table t1;
end|
delimiter ;|
call p1();
call p1();
drop procedure p1;
# #
# Bug#8759 (Stored Procedures: SQLSTATE '00000' should be illegal) # Bug#8759 (Stored Procedures: SQLSTATE '00000' should be illegal)
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment