~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Brian Aker
  • Date: 2009-03-27 00:14:08 UTC
  • mto: This revision was merged to the branch mainline in revision 967.
  • Revision ID: brian@tangent.org-20090327001408-n6uxtfiymazy1pgf
Refactor plugin loading to remove mask (one step closer to getting rid of
malloc!)

Show diffs side-by-side

added added

removed removed

Lines of Context:
218
218
    myisam_engine= engine;
219
219
 
220
220
  plugin->data= engine;
221
 
  plugin->state= PLUGIN_IS_READY;
 
221
  plugin->isInited= true;
222
222
 
223
 
  return(0);
 
223
  return 0;
224
224
}
225
225
 
226
226
const char *ha_resolve_storage_engine_name(const StorageEngine *db_type)