summaryrefslogtreecommitdiff
path: root/sql/sql_admin.h
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2019-02-27 13:14:31 +0400
committerAlexander Barkov <bar@mariadb.com>2019-03-04 13:49:15 +0400
commit19df45a705a48f5c8c21af0814cb5be7d816977b (patch)
treef4c4f13df3ff1bad07639e2e1be2ddc386b796bc /sql/sql_admin.h
parentf2e1451740d417f1c9ea8626d937fbcacc91bb55 (diff)
downloadmariadb-git-19df45a705a48f5c8c21af0814cb5be7d816977b.tar.gz
MDEV-18333 Slow_queries count doesn't increase when slow_query_log is turned off
Diffstat (limited to 'sql/sql_admin.h')
-rw-r--r--sql/sql_admin.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/sql_admin.h b/sql/sql_admin.h
index 96594fad0cb..ce7308434c5 100644
--- a/sql/sql_admin.h
+++ b/sql/sql_admin.h
@@ -28,7 +28,7 @@ int reassign_keycache_tables(THD* thd, KEY_CACHE *src_cache,
/**
Sql_cmd_analyze_table represents the ANALYZE TABLE statement.
*/
-class Sql_cmd_analyze_table : public Sql_cmd
+class Sql_cmd_analyze_table : public Sql_cmd_admin
{
public:
/**
@@ -53,7 +53,7 @@ public:
/**
Sql_cmd_check_table represents the CHECK TABLE statement.
*/
-class Sql_cmd_check_table : public Sql_cmd
+class Sql_cmd_check_table : public Sql_cmd_admin
{
public:
/**
@@ -77,7 +77,7 @@ public:
/**
Sql_cmd_optimize_table represents the OPTIMIZE TABLE statement.
*/
-class Sql_cmd_optimize_table : public Sql_cmd
+class Sql_cmd_optimize_table : public Sql_cmd_admin
{
public:
/**
@@ -102,7 +102,7 @@ public:
/**
Sql_cmd_repair_table represents the REPAIR TABLE statement.
*/
-class Sql_cmd_repair_table : public Sql_cmd
+class Sql_cmd_repair_table : public Sql_cmd_admin
{
public:
/**