summaryrefslogtreecommitdiff
path: root/sql/sql_cmd.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_cmd.h')
-rw-r--r--sql/sql_cmd.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/sql/sql_cmd.h b/sql/sql_cmd.h
index cbd7513e29f..8ff26b09015 100644
--- a/sql/sql_cmd.h
+++ b/sql/sql_cmd.h
@@ -161,8 +161,6 @@ public:
*/
virtual bool execute(THD *thd) = 0;
- virtual bool log_slow_enabled_statement(const THD *thd) const;
-
protected:
Sql_cmd()
{}
@@ -180,17 +178,6 @@ protected:
};
-class Sql_cmd_admin: public Sql_cmd
-{
-public:
- Sql_cmd_admin()
- {}
- ~Sql_cmd_admin()
- {}
- bool log_slow_enabled_statement(const THD *thd) const;
-};
-
-
/**
Sql_cmd_call represents the CALL statement.
*/
@@ -220,5 +207,4 @@ public:
}
};
-
#endif // SQL_CMD_INCLUDED