summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2017-10-31 13:42:57 +0200
committerMonty <monty@mariadb.org>2017-10-31 13:42:57 +0200
commit157f2b25512c898bf9ac20556d9e7b06b0256e49 (patch)
tree732f0770e2639a3c4044b73717347a3192cb6a8a /sql
parentb25808012992207eb75b910d8c5768c49ab15cd7 (diff)
downloadmariadb-git-157f2b25512c898bf9ac20556d9e7b06b0256e49.tar.gz
Updated help message for long_query_time
Diffstat (limited to 'sql')
-rw-r--r--sql/sys_vars.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/sys_vars.cc b/sql/sys_vars.cc
index 2bbd0c14f55..a32bc3fce8e 100644
--- a/sql/sys_vars.cc
+++ b/sql/sys_vars.cc
@@ -1255,8 +1255,8 @@ static bool update_cached_long_query_time(sys_var *self, THD *thd,
static Sys_var_double Sys_long_query_time(
"long_query_time",
"Log all queries that have taken more than long_query_time seconds "
- "to execute to file. The argument will be treated as a decimal value "
- "with microsecond precision",
+ "to execute to the slow query log file. The argument will be treated "
+ "as a decimal value with microsecond precision",
SESSION_VAR(long_query_time_double),
CMD_LINE(REQUIRED_ARG), VALID_RANGE(0, LONG_TIMEOUT), DEFAULT(10),
NO_MUTEX_GUARD, NOT_IN_BINLOG, ON_CHECK(0),