mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
MDEV-23162: Fix clang -Winconsistent-missing-override
This commit is contained in:
parent
48cbb2c021
commit
1bf77cde5c
1 changed files with 2 additions and 2 deletions
|
@ -258,7 +258,7 @@ public:
|
|||
bool store_longlong(longlong from, bool unsigned_flag) override;
|
||||
bool store_decimal(const my_decimal *) override;
|
||||
bool store_str(const char *from, size_t length,
|
||||
CHARSET_INFO *fromcs, CHARSET_INFO *tocs);
|
||||
CHARSET_INFO *fromcs, CHARSET_INFO *tocs) override;
|
||||
bool store(MYSQL_TIME *time, int decimals) override;
|
||||
bool store_date(MYSQL_TIME *time) override;
|
||||
bool store_time(MYSQL_TIME *time, int decimals) override;
|
||||
|
@ -306,7 +306,7 @@ public:
|
|||
bool store_long(longlong) override { return false; }
|
||||
bool store_longlong(longlong, bool) override { return false; }
|
||||
bool store_decimal(const my_decimal *) override { return false; }
|
||||
bool store_str(const char *, size_t, CHARSET_INFO *, CHARSET_INFO *)
|
||||
bool store_str(const char *, size_t, CHARSET_INFO *, CHARSET_INFO *) override
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue