1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge 10.4 into 10.5

This commit is contained in:
Marko Mäkelä
2023-02-10 12:02:11 +02:00
277 changed files with 2048 additions and 1500 deletions

View File

@ -355,11 +355,9 @@ protected:
/**
Constructor.
*/
Sql_cmd_common_alter_table()
{}
Sql_cmd_common_alter_table() = default;
virtual ~Sql_cmd_common_alter_table()
{}
virtual ~Sql_cmd_common_alter_table() = default;
virtual enum_sql_command sql_command_code() const
{
@ -378,11 +376,9 @@ public:
/**
Constructor, used to represent a ALTER TABLE statement.
*/
Sql_cmd_alter_table()
{}
Sql_cmd_alter_table() = default;
~Sql_cmd_alter_table()
{}
~Sql_cmd_alter_table() = default;
Storage_engine_name *option_storage_engine_name() { return this; }
@ -404,8 +400,7 @@ public:
:DDL_options(options)
{}
~Sql_cmd_alter_sequence()
{}
~Sql_cmd_alter_sequence() = default;
enum_sql_command sql_command_code() const
{