summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2022-03-11 13:02:53 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2022-03-11 13:02:53 +0200
commitfc8da6591958c0f7415ab40160881a9a54b281ad (patch)
tree9bd0d893e915f088c13ace3c38e90944c9240f82
parent22d2df8c6bd00c5f232b959197da95c9eba3120e (diff)
downloadmariadb-git-fc8da6591958c0f7415ab40160881a9a54b281ad.tar.gz
After-merge fix: clang -Winconsistent-missing-override
The virtual member function that was added in commit 1766a18e06a056155031dabefb88ce7f201ad921 needs to be declared "override".
-rw-r--r--storage/innobase/handler/ha_innodb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innobase/handler/ha_innodb.h b/storage/innobase/handler/ha_innodb.h
index 04e128b1590..29f7902b477 100644
--- a/storage/innobase/handler/ha_innodb.h
+++ b/storage/innobase/handler/ha_innodb.h
@@ -459,7 +459,7 @@ protected:
/* @return true if it's necessary to switch current statement log
format from STATEMENT to ROW if binary log format is MIXED and
autoincrement values are changed in the statement */
- bool autoinc_lock_mode_stmt_unsafe() const;
+ bool autoinc_lock_mode_stmt_unsafe() const override;
dict_index_t* innobase_get_index(uint keynr);
#ifdef WITH_WSREP