summaryrefslogtreecommitdiff
path: root/sql/sql_cmd.h
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2019-03-17 13:06:41 +0100
committerSergei Golubchik <serg@mariadb.org>2019-03-17 13:06:41 +0100
commitb64fde8f38515dc39e019de26db7624cc0ea7046 (patch)
tree0478ea4c3ddeee290f6d381a47efa4f9aded9c0b /sql/sql_cmd.h
parenta89ee3cd154a67df2231f034fd8339f9225dbe64 (diff)
parent1f020299f816263e347c852eb2a494b5ef1cbf0d (diff)
downloadmariadb-git-b64fde8f38515dc39e019de26db7624cc0ea7046.tar.gz
Merge branch '10.2' into 10.3
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 83dd1b1da4f..017dbca3e5e 100644
--- a/sql/sql_cmd.h
+++ b/sql/sql_cmd.h
@@ -160,8 +160,6 @@ public:
*/
virtual bool execute(THD *thd) = 0;
- virtual bool log_slow_enabled_statement(const THD *thd) const;
-
protected:
Sql_cmd()
{}
@@ -179,17 +177,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.
*/
@@ -219,5 +206,4 @@ public:
}
};
-
#endif // SQL_CMD_INCLUDED