diff options
author | monty@mashka.mysql.fi <> | 2003-10-13 15:50:30 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-10-13 15:50:30 +0300 |
commit | 461d1627b3323935345b13fe523f93dc74de9f36 (patch) | |
tree | 9b5d0d5098c97ae49c22be860572ba78e7471faa /sql/sql_udf.cc | |
parent | c60a75e9ba08cd1937e73a42ca065b992a4f47d2 (diff) | |
parent | c95d142f8f602b717c6c10d13e37b2b3ecf069d4 (diff) | |
download | mariadb-git-461d1627b3323935345b13fe523f93dc74de9f36.tar.gz |
merge with 4.0 for more memory allocation variables.
Diffstat (limited to 'sql/sql_udf.cc')
-rw-r--r-- | sql/sql_udf.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_udf.cc b/sql/sql_udf.cc index c237b023e7b..337f2540a39 100644 --- a/sql/sql_udf.cc +++ b/sql/sql_udf.cc @@ -128,7 +128,7 @@ void udf_init() my_rwlock_init(&THR_LOCK_udf,NULL); - init_sql_alloc(&mem, 1024,0); + init_sql_alloc(&mem, UDF_ALLOC_BLOCK_SIZE, 0); THD *new_thd = new THD; if (!new_thd || hash_init(&udf_hash,system_charset_info,32,0,0,get_hash_key, NULL, 0)) |