Commit d53b69ee authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

[t:2618], set default number of locks per dict to 64*1024

git-svn-id: file:///svn/mysql/tokudb-engine/tokudb-engine@20312 c7de825b-a66e-492c-adef-691d508d4ae1
parent 8406f1dc
......@@ -1175,7 +1175,7 @@ static uint tokudb_alter_table_flags(uint flags)
static MYSQL_SYSVAR_ULONGLONG(cache_size, tokudb_cache_size, PLUGIN_VAR_READONLY, "TokuDB cache table size", NULL, NULL, 0, 0, ~0LL, 0);
static MYSQL_SYSVAR_ULONG(max_lock, tokudb_max_lock, PLUGIN_VAR_READONLY, "TokuDB Max Locks", NULL, NULL, 8 * 1024, 0, ~0L, 0);
static MYSQL_SYSVAR_ULONG(max_lock, tokudb_max_lock, PLUGIN_VAR_READONLY, "TokuDB Max Locks", NULL, NULL, 64 * 1024, 0, ~0L, 0);
static MYSQL_SYSVAR_ULONG(debug, tokudb_debug, PLUGIN_VAR_READONLY, "TokuDB Debug", NULL, NULL, 0, 0, ~0L, 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment