Skip to content

Commit

Permalink
remove a test that became meaningless in 2009
Browse files Browse the repository at this point in the history
after fb175a1
  • Loading branch information
vuvova committed Sep 30, 2023
1 parent 52a0cd3 commit ceb1bd1
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 27 deletions.
9 changes: 0 additions & 9 deletions mysql-test/main/sp-error.result
Original file line number Diff line number Diff line change
Expand Up @@ -1608,15 +1608,6 @@ CALL p1((SELECT * FROM t1))|
ERROR 21000: Subquery returns more than 1 row
DROP PROCEDURE IF EXISTS p1|
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;
create procedure proc_8759()
begin
Expand Down
18 changes: 0 additions & 18 deletions mysql-test/main/sp-error.test
Original file line number Diff line number Diff line change
Expand Up @@ -2349,24 +2349,6 @@ DROP TABLE t1|

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)
#
Expand Down

0 comments on commit ceb1bd1

Please sign in to comment.