1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

Merge 10.5 into 10.6

This commit is contained in:
Marko Mäkelä
2024-06-24 13:09:47 +03:00
333 changed files with 6721 additions and 6118 deletions

View File

@@ -38,9 +38,9 @@ public:
~Sql_cmd_analyze_table() = default;
bool execute(THD *thd);
bool execute(THD *thd) override;
virtual enum_sql_command sql_command_code() const
enum_sql_command sql_command_code() const override
{
return SQLCOM_ANALYZE;
}
@@ -61,9 +61,9 @@ public:
~Sql_cmd_check_table() = default;
bool execute(THD *thd);
bool execute(THD *thd) override;
virtual enum_sql_command sql_command_code() const
enum_sql_command sql_command_code() const override
{
return SQLCOM_CHECK;
}
@@ -83,9 +83,9 @@ public:
~Sql_cmd_optimize_table() = default;
bool execute(THD *thd);
bool execute(THD *thd) override;
virtual enum_sql_command sql_command_code() const
enum_sql_command sql_command_code() const override
{
return SQLCOM_OPTIMIZE;
}
@@ -106,9 +106,9 @@ public:
~Sql_cmd_repair_table() = default;
bool execute(THD *thd);
bool execute(THD *thd) override;
virtual enum_sql_command sql_command_code() const
enum_sql_command sql_command_code() const override
{
return SQLCOM_REPAIR;
}