~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Monty Taylor
  • Date: 2009-04-10 22:18:10 UTC
  • mto: (992.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: mordred@inaugust.com-20090410221810-06j7dfgl1iso0dab
Did the finalizers. Renamed plugin_registry.

Show diffs side-by-side

added added

removed removed

Lines of Context:
683
683
}
684
684
 
685
685
 
686
 
int storage_engine_finalizer(st_plugin_int *)
687
 
{
688
 
 
689
 
  //remove_storage_engine(engine);
690
 
 
691
 
/*  if (engine && plugin->plugin->deinit)
692
 
    (void)plugin->plugin->deinit(NULL);
693
 
*/
694
 
  return(0);
695
 
}
696
 
 
697
 
 
698
686
const string ha_resolve_storage_engine_name(const StorageEngine *engine)
699
687
{
700
688
  return engine == NULL ? string("UNKNOWN") : engine->getName();