mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-19653 Add class Sql_cmd_create_table
This commit is contained in:
@ -385,7 +385,8 @@ protected:
|
||||
Sql_cmd_alter_table represents the generic ALTER TABLE statement.
|
||||
@todo move Alter_info and other ALTER specific structures from Lex here.
|
||||
*/
|
||||
class Sql_cmd_alter_table : public Sql_cmd_common_alter_table
|
||||
class Sql_cmd_alter_table : public Sql_cmd_common_alter_table,
|
||||
public Storage_engine_name
|
||||
{
|
||||
public:
|
||||
/**
|
||||
@ -397,6 +398,8 @@ public:
|
||||
~Sql_cmd_alter_table()
|
||||
{}
|
||||
|
||||
Storage_engine_name *option_storage_engine_name() { return this; }
|
||||
|
||||
bool execute(THD *thd);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user