diff options
author | brian@zim.(none) <> | 2005-10-02 19:44:28 -0700 |
---|---|---|
committer | brian@zim.(none) <> | 2005-10-02 19:44:28 -0700 |
commit | 54a958993ced2a53b85448e1840cf45f4bd56d95 (patch) | |
tree | 72eb47c02b43069ea929c5d757efd985ed319a7b /sql/ha_heap.cc | |
parent | acdc193a45a7f2952867a3d3f2373dd42e887ef2 (diff) | |
download | mariadb-git-54a958993ced2a53b85448e1840cf45f4bd56d95.tar.gz |
Next big patch for loadable storage engines!
Handlerton array is now created instead of using sys_table_types_st. All storage engines can now have inits and giant ifdef's are now gone for startup. No compeltely clean yet, handlertons will next be merged with sys_table_types. Federated and archive now have real cleanup if their inits fail.
Diffstat (limited to 'sql/ha_heap.cc')
-rw-r--r-- | sql/ha_heap.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sql/ha_heap.cc b/sql/ha_heap.cc index fafd597e858..e6826fddb51 100644 --- a/sql/ha_heap.cc +++ b/sql/ha_heap.cc @@ -25,6 +25,10 @@ handlerton heap_hton= { "MEMORY", + SHOW_OPTION_YES, + "Hash based, stored in memory, useful for temporary tables", + DB_TYPE_HEAP, + NULL, 0, /* slot */ 0, /* savepoint size. */ NULL, /* close_connection */ |