mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
MDEV-28883 fixup: clang -Winconsistent-missing-override
This commit is contained in:
parent
9aa098c46b
commit
e371b1e264
3 changed files with 5 additions and 5 deletions
|
@ -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; }
|
||||
|
||||
|
|
|
@ -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; }
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 58da5eea954dbbce8c954c323dd2c8247e54303e
|
||||
Subproject commit b989238ff79969f86ffee66620495d57c8c00691
|
Loading…
Reference in a new issue