~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Monty Taylor
  • Date: 2009-12-25 08:50:15 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091225085015-83sux5qsvy312gew
MEM_ROOT == memory::Root

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
  { }
81
81
 
82
82
  virtual Cursor *create(TableShare &table,
83
 
                          MEM_ROOT *mem_root)
 
83
                         drizzled::memory::Root *mem_root)
84
84
  {
85
85
    return new (mem_root) ha_myisam(*this, table);
86
86
  }
528
528
  is_ordered(true)
529
529
{ }
530
530
 
531
 
Cursor *ha_myisam::clone(MEM_ROOT *mem_root)
 
531
Cursor *ha_myisam::clone(drizzled::memory::Root *mem_root)
532
532
{
533
533
  ha_myisam *new_handler= static_cast <ha_myisam *>(Cursor::clone(mem_root));
534
534
  if (new_handler)