diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-12-17 11:00:39 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-12-17 11:00:39 +0100 |
commit | cb7f5948ecedaaaf68de5bdbfab78f1c2e934453 (patch) | |
tree | 7204e1cd0161875fca1faaa420e13b25fc01eb18 /storage/heap | |
parent | a058974440f7df7832f4bb9bf5d2783ca040fa66 (diff) | |
download | mariadb-git-cb7f5948ecedaaaf68de5bdbfab78f1c2e934453.tar.gz |
simplify the handler api - table_type() is no longer abstract, not even virtual
Diffstat (limited to 'storage/heap')
-rw-r--r-- | storage/heap/ha_heap.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/storage/heap/ha_heap.h b/storage/heap/ha_heap.h index c5b8a09b216..30ad06e2c06 100644 --- a/storage/heap/ha_heap.h +++ b/storage/heap/ha_heap.h @@ -38,11 +38,6 @@ public: ha_heap(handlerton *hton, TABLE_SHARE *table); ~ha_heap() {} handler *clone(const char *name, MEM_ROOT *mem_root); - const char *table_type() const - { - return (table->in_use->variables.sql_mode & MODE_MYSQL323) ? - "HEAP" : "MEMORY"; - } const char *index_type(uint inx) { return ((table_share->key_info[inx].algorithm == HA_KEY_ALG_BTREE) ? |