diff options
author | unknown <monty@mysql.com> | 2003-12-09 16:21:23 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2003-12-09 16:21:23 +0200 |
commit | 589657539c6ce3acdbc579d6ba950655bdddae5f (patch) | |
tree | 36182bf94f8256b055ee9b2459b0fc4f122bdd97 /sql/mysqld.cc | |
parent | da3e63e1264290e8ea1a3f7c24224208156e4991 (diff) | |
download | mariadb-git-589657539c6ce3acdbc579d6ba950655bdddae5f.tar.gz |
Don't limit number of tables in table cache
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index daccfc52af4..751cfe7473c 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -4067,7 +4067,7 @@ this value; if zero (the default): when the size exceeds max_binlog_size. \ 1, 0}, {"table_cache", OPT_TABLE_CACHE, "The number of open tables for all threads.", (gptr*) &table_cache_size, - (gptr*) &table_cache_size, 0, GET_ULONG, REQUIRED_ARG, 64, 1, 16384, 0, 1, + (gptr*) &table_cache_size, 0, GET_ULONG, REQUIRED_ARG, 64, 1, ~0L, 0, 1, 0}, {"thread_concurrency", OPT_THREAD_CONCURRENCY, "Permits the application to give the threads system a hint for the desired number of threads that should be run at the same time.", |