mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
@ -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|
|
|||||||
|
|
||||||
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)
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user