diff options
author | Sergei Golubchik <sergii@pisem.net> | 2015-01-10 14:07:46 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2015-01-10 14:07:46 +0100 |
commit | 2ab49689c689b1c1daeb080ea568c268c5256952 (patch) | |
tree | f02bb21457a23082e54ad0df80cc3753a96f2fd7 /sql | |
parent | 00649525ee8a37336221f1918943eca78f5453df (diff) | |
download | mariadb-git-2ab49689c689b1c1daeb080ea568c268c5256952.tar.gz |
MDEV-7410 Temporary table name conflict between sessions
workaround for missing SP auto-reparse.
allow the user to disable stored_program_cache_size, if he wants
Diffstat (limited to 'sql')
-rw-r--r-- | sql/sys_vars.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sys_vars.cc b/sql/sys_vars.cc index 7cad362f6f2..47bf6baa46b 100644 --- a/sql/sys_vars.cc +++ b/sql/sys_vars.cc @@ -3679,7 +3679,7 @@ static Sys_var_ulong Sys_sp_cache_size( "The soft upper limit for number of cached stored routines for " "one connection.", GLOBAL_VAR(stored_program_cache_size), CMD_LINE(REQUIRED_ARG), - VALID_RANGE(256, 512 * 1024), DEFAULT(256), BLOCK_SIZE(1)); + VALID_RANGE(0, 512 * 1024), DEFAULT(256), BLOCK_SIZE(1)); export const char *plugin_maturity_names[]= { "unknown", "experimental", "alpha", "beta", "gamma", "stable", 0 }; |