mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +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
@@ -154,15 +154,15 @@ public:
|
||||
static PFS_engine_table* create();
|
||||
static ha_rows get_row_count();
|
||||
|
||||
virtual int rnd_next();
|
||||
virtual int rnd_pos(const void *pos);
|
||||
virtual void reset_position(void);
|
||||
int rnd_next() override;
|
||||
int rnd_pos(const void *pos) override;
|
||||
void reset_position(void) override;
|
||||
|
||||
protected:
|
||||
virtual int read_row_values(TABLE *table,
|
||||
unsigned char *buf,
|
||||
Field **fields,
|
||||
bool read_all);
|
||||
int read_row_values(TABLE *table,
|
||||
unsigned char *buf,
|
||||
Field **fields,
|
||||
bool read_all) override;
|
||||
|
||||
table_uvar_by_thread();
|
||||
|
||||
|
Reference in New Issue
Block a user