diff options
Diffstat (limited to 'sql/ha_heap.cc')
-rw-r--r-- | sql/ha_heap.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sql/ha_heap.cc b/sql/ha_heap.cc index ddc6c1bfb8f..a83a95ac863 100644 --- a/sql/ha_heap.cc +++ b/sql/ha_heap.cc @@ -27,6 +27,7 @@ static handler *heap_create_handler(TABLE_SHARE *table); handlerton heap_hton= { + MYSQL_HANDLERTON_INTERFACE_VERSION, "MEMORY", SHOW_OPTION_YES, "Hash based, stored in memory, useful for temporary tables", @@ -50,12 +51,9 @@ handlerton heap_hton= { heap_create_handler, /* Create a new handler */ NULL, /* Drop a database */ heap_panic, /* Panic call */ - NULL, /* Release temporary latches */ - NULL, /* Update Statistics */ NULL, /* Start Consistent Snapshot */ NULL, /* Flush logs */ NULL, /* Show status */ - NULL, /* Replication Report Sent Binlog */ HTON_CAN_RECREATE }; |