~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Monty Taylor
  • Date: 2009-03-24 18:05:25 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090324180525-ok5metxsa5yor53k
First step of hton rename.

Show diffs side-by-side

added added

removed removed

Lines of Context:
296
296
    remove partition and myisammrg.
297
297
  */
298
298
  if (strcmp(plugin->plugin->name, "MEMORY") == 0)
299
 
    heap_hton= hton;
 
299
    heap_engine= hton;
300
300
 
301
301
  if (strcmp(plugin->plugin->name, "MyISAM") == 0)
302
 
    myisam_hton= hton;
 
302
    myisam_engine= hton;
303
303
 
304
304
  plugin->state= PLUGIN_IS_READY;
305
305