~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/ha_heap.cc

edit

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
#include <drizzled/table.h>
19
19
#include <drizzled/session.h>
20
20
#include <drizzled/field/varstring.h>
21
 
#include <drizzled/plugin/daemon.h>
22
 
#include <drizzled/plugin/storage_engine.h>
 
21
#include "drizzled/plugin/daemon.h"
23
22
 
24
23
#include <boost/thread/mutex.hpp>
25
24
 
840
839
  "Hash based, stored in memory, useful for temporary tables",
841
840
  PLUGIN_LICENSE_GPL,
842
841
  heap_init,
843
 
  NULL,                       /* depends */
 
842
  NULL,                       /* system variables                */
844
843
  NULL                        /* config options                  */
845
844
}
846
845
DRIZZLE_DECLARE_PLUGIN_END;