Commit 2379a9d2 authored by unknown's avatar unknown

postreview changes

(used t3, moved after last bug, renamed)

parent 72c32d13
...@@ -2379,18 +2379,17 @@ ERROR 42000: Can't find any matching row in the user table ...@@ -2379,18 +2379,17 @@ ERROR 42000: Can't find any matching row in the user table
select bug5278()| select bug5278()|
ERROR 42000: Can't find any matching row in the user table ERROR 42000: Can't find any matching row in the user table
drop function bug5278| drop function bug5278|
drop table t1; drop procedure if exists p1|
drop table t2; create table t3(id int)|
drop procedure if exists p1; insert into t3 values(1)|
create table t1(id int); create procedure bug7992()
insert into t1 values(1);
create procedure p1()
begin begin
declare i int; declare i int;
select max(id)+1 into i from t1; select max(id)+1 into i from t3;
end end|
// call bug7992()|
call p1()// call bug7992()|
call p1()// drop procedure bug7992|
drop procedure p1; drop table t3|
drop table t1; drop table t1;
drop table t2;
...@@ -2849,28 +2849,26 @@ select bug5278()| ...@@ -2849,28 +2849,26 @@ select bug5278()|
select bug5278()| select bug5278()|
drop function bug5278| drop function bug5278|
delimiter ;|
drop table t1;
drop table t2;
# #
# rolling back temporary Item tree changes in SP # BUG#7992: rolling back temporary Item tree changes in SP
# #
--disable_warnings --disable_warnings
drop procedure if exists p1; drop procedure if exists p1|
--enable_warnings --enable_warnings
create table t1(id int); create table t3(id int)|
insert into t1 values(1); insert into t3 values(1)|
delimiter //; create procedure bug7992()
create procedure p1()
begin begin
declare i int; declare i int;
select max(id)+1 into i from t1; select max(id)+1 into i from t3;
end end|
//
call p1()// call bug7992()|
call p1()// call bug7992()|
delimiter ;// drop procedure bug7992|
drop procedure p1; drop table t3|
delimiter ;|
drop table t1; drop table t1;
drop table t2;
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