Commit 1fe12884 authored by unknown's avatar unknown

Fix of fix for BUG#15866. (Actually change the fib() call in sp.test)


mysql-test/r/sp.result:
  Updated results.
mysql-test/t/sp.test:
  Actually change the fib(20) into fib(10).  (Doh!)
parent 7fc2604c
...@@ -1357,7 +1357,7 @@ f ...@@ -1357,7 +1357,7 @@ f
2 2
delete from t3| delete from t3|
insert into t3 values (0), (1)| insert into t3 values (0), (1)|
call fib(20)| call fib(10)|
select * from t3 order by f asc| select * from t3 order by f asc|
f f
0 0
...@@ -1371,16 +1371,6 @@ f ...@@ -1371,16 +1371,6 @@ f
21 21
34 34
55 55
89
144
233
377
610
987
1597
2584
4181
6765
drop table t3| drop table t3|
drop procedure fib| drop procedure fib|
set @@max_sp_recursion_depth= 0| set @@max_sp_recursion_depth= 0|
......
...@@ -1601,7 +1601,7 @@ delete from t3| ...@@ -1601,7 +1601,7 @@ delete from t3|
insert into t3 values (0), (1)| insert into t3 values (0), (1)|
call fib(20)| call fib(10)|
select * from t3 order by f asc| select * from t3 order by f asc|
drop table t3| drop table t3|
......
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