summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp_trans.result
diff options
context:
space:
mode:
authorunknown <pem@mysql.com>2006-01-19 17:55:54 +0100
committerunknown <pem@mysql.com>2006-01-19 17:55:54 +0100
commit7fc2604cd78dee435805cb79b9a51dd88a1e3c61 (patch)
tree8e43b1e2810c6ae56a49c2d95913ec138af9e858 /mysql-test/r/sp_trans.result
parent217d905537a97cc40edbf70c787c107d64081082 (diff)
downloadmariadb-git-7fc2604cd78dee435805cb79b9a51dd88a1e3c61.tar.gz
Fixed BUG#15866: Thread stack limit insufficient for recursive call "fib(20)"
Lowered the parameter to 10, and also renamed non-standard table names to t3. mysql-test/r/sp.result: Updated results. mysql-test/r/sp_trans.result: Updated results. mysql-test/t/sp.test: Renamed fac, primes and fib tables to t3. Lowered fib() test parameter to 10 (20 hit the stack overrun check on some machines). mysql-test/t/sp_trans.test: Added drop of t3 for safety. (Might be left from sp.test after certain test failures.)
Diffstat (limited to 'mysql-test/r/sp_trans.result')
-rw-r--r--mysql-test/r/sp_trans.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/sp_trans.result b/mysql-test/r/sp_trans.result
index 8f2bd9985fc..e9289cf01c7 100644
--- a/mysql-test/r/sp_trans.result
+++ b/mysql-test/r/sp_trans.result
@@ -1,4 +1,4 @@
-drop table if exists t1, t2;
+drop table if exists t1, t2, t3;
drop procedure if exists bug8850|
create table t1 (a int) engine=innodb|
create procedure bug8850()