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

MDEV-28883 fixup: clang -Winconsistent-missing-override

This commit is contained in:
Marko Mäkelä
2023-03-24 15:12:08 +02:00
parent 9aa098c46b
commit e371b1e264
3 changed files with 5 additions and 5 deletions

View File

@@ -53,14 +53,14 @@ public:
return orig_multitable ? SQLCOM_DELETE_MULTI : SQLCOM_DELETE;
}
DML_prelocking_strategy *get_dml_prelocking_strategy()
DML_prelocking_strategy *get_dml_prelocking_strategy() override
{
return &dml_prelocking_strategy;
}
bool processing_as_multitable_delete_prohibited(THD *thd);
bool is_multitable() { return multitable; }
bool is_multitable() const { return multitable; }
void set_as_multitable() { multitable= true; }

View File

@@ -54,14 +54,14 @@ public:
return orig_multitable ? SQLCOM_UPDATE_MULTI : SQLCOM_UPDATE;
}
DML_prelocking_strategy *get_dml_prelocking_strategy()
DML_prelocking_strategy *get_dml_prelocking_strategy() override
{
return &multiupdate_prelocking_strategy;
}
bool processing_as_multitable_update_prohibited(THD *thd);
bool is_multitable() { return multitable; }
bool is_multitable() const { return multitable; }
void set_as_multitable() { multitable= true; }