~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-17 17:45:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1222.
  • Revision ID: brian@gaz-20091117174547-omuu6kybq2aac5fg
Small cleanup from something Jay noticed.

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
{