mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
MDEV-33746 Supply missing override markings
Find and fix missing virtual override markings. Updates cmake maintainer flags to include -Wsuggest-override and -Winconsistent-missing-override.
This commit is contained in:
committed by
Dave Gosselin
parent
ab448d4b34
commit
db0c28eff8
@ -117,7 +117,7 @@ public:
|
||||
virtual ~Event_queue_element();
|
||||
|
||||
virtual bool
|
||||
load_from_row(THD *thd, TABLE *table);
|
||||
load_from_row(THD *thd, TABLE *table) override;
|
||||
|
||||
bool
|
||||
compute_next_execution_time();
|
||||
@ -155,7 +155,7 @@ public:
|
||||
init();
|
||||
|
||||
virtual bool
|
||||
load_from_row(THD *thd, TABLE *table);
|
||||
load_from_row(THD *thd, TABLE *table) override;
|
||||
|
||||
int
|
||||
get_create_event(THD *thd, String *buf);
|
||||
@ -176,7 +176,7 @@ public:
|
||||
Event_job_data();
|
||||
|
||||
virtual bool
|
||||
load_from_row(THD *thd, TABLE *table);
|
||||
load_from_row(THD *thd, TABLE *table) override;
|
||||
|
||||
bool
|
||||
execute(THD *thd, bool drop);
|
||||
|
Reference in New Issue
Block a user