mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
Fix compiler errors
This commit is contained in:
parent
25c6e3e4b7
commit
a4ef05d0d5
1 changed files with 2 additions and 2 deletions
|
@ -32,12 +32,12 @@ public:
|
|||
{}
|
||||
|
||||
/* 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;
|
||||
}
|
||||
|
||||
bool execute(THD *thd);
|
||||
bool execute(THD *thd) override;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue