19 lines
910 B
Diff
19 lines
910 B
Diff
Talk about silly byte-shaving ... the "stock" value does not work on s390x,
|
|
and probably not on some other platforms either. Knock it up to twice the
|
|
pre-5.0.33 value to have some margin for future changes in compiler, glibc,
|
|
etc. Suspect this number if "execution_constants" regression test fails.
|
|
|
|
|
|
diff -Naur mysql-5.0.33.orig/sql/mysql_priv.h mysql-5.0.33/sql/mysql_priv.h
|
|
--- mysql-5.0.33.orig/sql/mysql_priv.h 2007-01-09 07:51:48.000000000 -0500
|
|
+++ mysql-5.0.33/sql/mysql_priv.h 2007-02-09 19:06:51.000000000 -0500
|
|
@@ -154,7 +154,7 @@
|
|
Feel free to raise this by the smallest amount you can to get the
|
|
"execution_constants" test to pass.
|
|
*/
|
|
-#define STACK_MIN_SIZE 10788 // Abort if less stack during eval.
|
|
+#define STACK_MIN_SIZE 16384 // Abort if less stack during eval.
|
|
|
|
#define STACK_MIN_SIZE_FOR_OPEN 1024*80
|
|
#define STACK_BUFF_ALLOC 256 // For stack overrun checks
|