1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge 10.6 into 10.8

This commit is contained in:
Marko Mäkelä
2023-02-10 13:43:53 +02:00
299 changed files with 2528 additions and 1655 deletions

View File

@@ -372,11 +372,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
{
@@ -395,11 +393,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; }
@@ -421,8 +417,7 @@ public:
:DDL_options(options)
{}
~Sql_cmd_alter_sequence()
{}
~Sql_cmd_alter_sequence() = default;
enum_sql_command sql_command_code() const
{