summaryrefslogtreecommitdiff
path: root/storage/rocksdb
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2021-10-28 07:50:05 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2021-10-28 07:50:05 +0300
commit657bcf928eb1c6a80ee2c82f0dcdd59ab02927e4 (patch)
treec692f1600c06da934cf44240228516eed88c868f /storage/rocksdb
parente97b785d764f85009412947600195001be01a706 (diff)
parent563daec123728f69dc56d898d1d8b198e9e2d411 (diff)
downloadmariadb-git-657bcf928eb1c6a80ee2c82f0dcdd59ab02927e4.tar.gz
Merge 10.2 into 10.3
Diffstat (limited to 'storage/rocksdb')
-rw-r--r--storage/rocksdb/ha_rocksdb.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/storage/rocksdb/ha_rocksdb.h b/storage/rocksdb/ha_rocksdb.h
index cadbd9abfe9..56111c7dfb9 100644
--- a/storage/rocksdb/ha_rocksdb.h
+++ b/storage/rocksdb/ha_rocksdb.h
@@ -448,15 +448,13 @@ class ha_rocksdb : public my_core::handler {
}
}
- /** @brief
- The name that will be used for display purposes.
- */
- const char *table_type() const /*override*/ {
- DBUG_ENTER_FUNC();
- // MariaDB: this function is not virtual, however ha_innodb
- // declares it (and then never uses!) psergey-merge-todo:.
- DBUG_RETURN(rocksdb_hton_name);
- }
+ /*
+ MariaDB: this function:
+
+ const char *table_type() const
+
+ is non-virtual in class handler, so there's no point to override it.
+ */
/* The following is only used by SHOW KEYS: */
const char *index_type(uint inx) override {