summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2020-08-05 18:28:53 +0400
committerAlexander Barkov <bar@mariadb.com>2020-08-05 18:28:53 +0400
commitbe974e56203c723b021a1a5e7719065298d7ceda (patch)
treebc7abde4c249941a14bbfecd1800f1e2a0d21dcc
parentbbd70fcc43cc889e4593594ee5ca436fe1433aac (diff)
downloadmariadb-git-bb-10.5-mdev22278.tar.gz
MDEV-22278 change temp-pool to be 0 by defaultbb-10.5-mdev22278
-rw-r--r--sql/mysqld.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc
index da86bbc3a37..ec641801300 100644
--- a/sql/mysqld.cc
+++ b/sql/mysqld.cc
@@ -6746,11 +6746,11 @@ struct my_option my_long_options[]=
{"temp-pool", 0,
#if (ENABLE_TEMP_POOL)
"Using this option will cause most temporary files created to use a small "
- "set of names, rather than a unique name for each new file.",
+ "set of names, rather than a unique name for each new file. Deprecated.",
#else
"This option is ignored on this OS.",
#endif
- &use_temp_pool, &use_temp_pool, 0, GET_BOOL, NO_ARG, 1,
+ &use_temp_pool, &use_temp_pool, 0, GET_BOOL, NO_ARG, 0,
0, 0, 0, 0, 0},
{"transaction-isolation", 0,
"Default transaction isolation level",