diff options
author | unknown <monty@mysql.com> | 2004-04-07 04:33:58 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-04-07 04:33:58 +0300 |
commit | e9447881eb13378b06f0939091ab4e258a83ad51 (patch) | |
tree | e2be01ea44891cc2fa4d0a64da4e14538f119f32 /sql/init.cc | |
parent | 2d5635e3c8cfc6cc74f182b849813df909e4ec1d (diff) | |
download | mariadb-git-e9447881eb13378b06f0939091ab4e258a83ad51.tar.gz |
Portability fixes
Fixed problems with group_concat() and HAVING
Updated crash-me values
sql-bench/limits/mysql-4.0.cfg:
Rename: sql-bench/limits/mysql.cfg -> sql-bench/limits/mysql-4.0.cfg
include/my_global.h:
Safety fix
libmysqld/Makefile.am:
Portability fix (For AIX 64 bit)
mysql-test/r/func_gconcat.result:
More tests
mysql-test/t/func_gconcat.test:
More tests
sql/field.cc:
Cleanups
sql/init.cc:
moved thread_stack_min to right place
sql/item_sum.cc:
Fixed problems with group_concat() and HAVING
Removed some not needed variables
sql/item_sum.h:
Fixed problems with group_concat() and HAVING
Removed some not needed variables
sql/mysqld.cc:
Moved thread_stack_min to right place to handle case where we didn't get as much stack space as we asked for
sql/sql_parse.cc:
More debugging
sql/sql_select.cc:
Cleanup
sql/sql_yacc.yy:
Fixed handling of Item_group_concat() in having. (Arguments should not be handled as refs)
Diffstat (limited to 'sql/init.cc')
-rw-r--r-- | sql/init.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sql/init.cc b/sql/init.cc index 084db57f8aa..4beb8db0c6f 100644 --- a/sql/init.cc +++ b/sql/init.cc @@ -46,7 +46,5 @@ void unireg_init(ulong options) log_10[i]= nr ; nr*= 10.0; } specialflag|=options; /* Set options from argv */ - - thread_stack_min=thread_stack - STACK_MIN_SIZE; DBUG_VOID_RETURN; } |