From f01440d9810e1d1909ed53e77baa13dce9bb9c89 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 8 Jan 2008 06:30:20 +0000 Subject: [PATCH] OK, one more try to see if *any* value works. --- mysql-stack.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql-stack.patch b/mysql-stack.patch index 3a37afa..0d4a5ed 100644 --- a/mysql-stack.patch +++ b/mysql-stack.patch @@ -4,7 +4,7 @@ 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. As of 5.0.45 and F9, it seems 16384 isn't enough anymore (ppc fails); -while 32768 is too much as it makes other regression tests fail. +while 24576 is too much as it makes other regression tests fail. diff -Naur mysql-5.0.38.orig/sql/mysql_priv.h mysql-5.0.38/sql/mysql_priv.h @@ -15,7 +15,7 @@ diff -Naur mysql-5.0.38.orig/sql/mysql_priv.h mysql-5.0.38/sql/mysql_priv.h "execution_constants" test to pass. */ -#define STACK_MIN_SIZE 12000 // Abort if less stack during eval. -+#define STACK_MIN_SIZE 24576 // Abort if less stack during eval. ++#define STACK_MIN_SIZE 20000 // Abort if less stack during eval. #define STACK_MIN_SIZE_FOR_OPEN 1024*80 #define STACK_BUFF_ALLOC 256 // For stack overrun checks