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:
@@ -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; }
|
||||
|
||||
|
Submodule storage/columnstore/columnstore updated: 58da5eea95...b989238ff7
Reference in New Issue
Block a user