summaryrefslogtreecommitdiff
path: root/mysql-test
diff options
context:
space:
mode:
authorunknown <pem@mysql.com>2006-01-20 08:32:22 +0100
committerunknown <pem@mysql.com>2006-01-20 08:32:22 +0100
commit1fe1288417285cc6f5c95388bcc3305cfcebc0be (patch)
treeefac721672b4cb241f315b64d3c3215b6edc2cc7 /mysql-test
parent7fc2604cd78dee435805cb79b9a51dd88a1e3c61 (diff)
downloadmariadb-git-1fe1288417285cc6f5c95388bcc3305cfcebc0be.tar.gz
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!)
Diffstat (limited to 'mysql-test')
-rw-r--r--mysql-test/r/sp.result12
-rw-r--r--mysql-test/t/sp.test2
2 files changed, 2 insertions, 12 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result
index 63ab2098d5f..904cd7d8642 100644
--- a/mysql-test/r/sp.result
+++ b/mysql-test/r/sp.result
@@ -1357,7 +1357,7 @@ f
2
delete from t3|
insert into t3 values (0), (1)|
-call fib(20)|
+call fib(10)|
select * from t3 order by f asc|
f
0
@@ -1371,16 +1371,6 @@ f
21
34
55
-89
-144
-233
-377
-610
-987
-1597
-2584
-4181
-6765
drop table t3|
drop procedure fib|
set @@max_sp_recursion_depth= 0|
diff --git a/mysql-test/t/sp.test b/mysql-test/t/sp.test
index f9b218967dd..8235686a74a 100644
--- a/mysql-test/t/sp.test
+++ b/mysql-test/t/sp.test
@@ -1601,7 +1601,7 @@ delete from t3|
insert into t3 values (0), (1)|
-call fib(20)|
+call fib(10)|
select * from t3 order by f asc|
drop table t3|