Commit a4ef05d0 authored by Oleksandr Byelkin's avatar Oleksandr Byelkin

Fix compiler errors

parent 25c6e3e4
...@@ -32,12 +32,12 @@ class Sql_cmd_partition_unsupported : public Sql_cmd ...@@ -32,12 +32,12 @@ class Sql_cmd_partition_unsupported : public Sql_cmd
{} {}
/* Override SQLCOM_*, since it is an ALTER command */ /* Override SQLCOM_*, since it is an ALTER command */
virtual enum_sql_command sql_command_code() const virtual enum_sql_command sql_command_code() const override
{ {
return SQLCOM_ALTER_TABLE; return SQLCOM_ALTER_TABLE;
} }
bool execute(THD *thd); bool execute(THD *thd) override;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment