~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_engine/plugin.cc

  • Committer: Brian Aker
  • Date: 2010-04-12 19:28:43 UTC
  • mfrom: (1455.5.1 bug561739)
  • Revision ID: brian@gaz-20100412192843-mu6gouk7pq74drts
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
static drizzled::plugin::StorageEngine *schema_plugin= NULL;
31
31
 
32
 
static int init(drizzled::module::Context &context)
 
32
static int init(drizzled::plugin::Context &context)
33
33
{
34
34
  schema_plugin= new(std::nothrow) Schema();
35
35
 
52
52
  "This implements the default file based Schema engine.",
53
53
  PLUGIN_LICENSE_GPL,
54
54
  init,     /* Plugin Init */
55
 
  "signal_handler",               /* depends */
 
55
  NULL,               /* system variables */
56
56
  NULL                /* config options   */
57
57
}
58
58
DRIZZLE_DECLARE_PLUGIN_END;