diff options
Diffstat (limited to 'sql/sql_alter.h')
-rw-r--r-- | sql/sql_alter.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sql/sql_alter.h b/sql/sql_alter.h index a40c980b692..10aafe1ab37 100644 --- a/sql/sql_alter.h +++ b/sql/sql_alter.h @@ -355,7 +355,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: /** @@ -367,6 +368,8 @@ public: ~Sql_cmd_alter_table() {} + Storage_engine_name *option_storage_engine_name() { return this; } + bool execute(THD *thd); }; |