Set default progress report time to 5 seconds

(Had accidently been set to 56 seconds in some merge)


sql/sys_vars.cc:
  Set default progress report time to 5 seconds
This commit is contained in:
Michael Widenius 2014-02-11 16:56:38 +02:00
commit 67e8e926e9
3 changed files with 8 additions and 8 deletions

View file

@ -3833,7 +3833,7 @@ static Sys_var_ulong Sys_progress_report_time(
"Seconds between sending progress reports to the client for "
"time-consuming statements. Set to 0 to disable progress reporting.",
SESSION_VAR(progress_report_time), CMD_LINE(REQUIRED_ARG),
VALID_RANGE(0, UINT_MAX), DEFAULT(56), BLOCK_SIZE(1));
VALID_RANGE(0, UINT_MAX), DEFAULT(5), BLOCK_SIZE(1));
static Sys_var_mybool Sys_no_thread_alarm(
"debug_no_thread_alarm",