~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/ha_heap.cc

MergingĀ fromĀ Mark.

Show diffs side-by-side

added added

removed removed

Lines of Context:
742
742
  return COMPATIBLE_DATA_YES;
743
743
}
744
744
 
745
 
struct st_mysql_storage_engine heap_storage_engine=
746
 
{ MYSQL_HANDLERTON_INTERFACE_VERSION };
747
 
 
748
745
mysql_declare_plugin(heap)
749
746
{
750
747
  MYSQL_STORAGE_ENGINE_PLUGIN,
751
 
  &heap_storage_engine,
752
748
  "MEMORY",
 
749
  "1.0",
753
750
  "MySQL AB",
754
751
  "Hash based, stored in memory, useful for temporary tables",
755
752
  PLUGIN_LICENSE_GPL,
756
753
  heap_init,
757
754
  NULL,
758
 
  0x0100, /* 1.0 */
759
755
  NULL,                       /* status variables                */
760
756
  NULL,                       /* system variables                */
761
757
  NULL                        /* config options                  */