~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2009-11-18 06:24:48 UTC
  • mfrom: (1220.1.15 staging)
  • Revision ID: brian@gaz-20091118062448-o36lo3yv81sc6u9z
Merge Brian + Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
514
514
ha_myisam::ha_myisam(drizzled::plugin::StorageEngine &engine_arg,
515
515
                     TableShare &table_arg)
516
516
  : Cursor(engine_arg, table_arg),
517
 
    file(0),
518
 
     can_enable_indexes(1)
519
 
{
520
 
  is_ordered= true;
521
 
}
 
517
  file(0),
 
518
  can_enable_indexes(true),
 
519
  is_ordered(true)
 
520
{ }
522
521
 
523
522
Cursor *ha_myisam::clone(MEM_ROOT *mem_root)
524
523
{