~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-11 21:40:59 UTC
  • mfrom: (1208.3.3 reference)
  • mto: This revision was merged to the branch mainline in revision 1212.
  • Revision ID: brian@gaz-20091111214059-0xfxkwrrixpx2jd9
Update for cursor name change.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
  ~MyisamEngine()
69
69
  { }
70
70
 
71
 
  virtual Cursor *create(TableShare *table,
 
71
  virtual Cursor *create(TableShare &table,
72
72
                          MEM_ROOT *mem_root)
73
73
  {
74
 
    return new (mem_root) ha_myisam(this, table);
 
74
    return new (mem_root) ha_myisam(*this, table);
75
75
  }
76
76
 
77
77
  const char **bas_ext() const {
498
498
 
499
499
}
500
500
 
501
 
ha_myisam::ha_myisam(drizzled::plugin::StorageEngine *engine_arg,
502
 
                     TableShare *table_arg)
 
501
ha_myisam::ha_myisam(drizzled::plugin::StorageEngine &engine_arg,
 
502
                     TableShare &table_arg)
503
503
  : Cursor(engine_arg, table_arg),
504
504
    file(0),
505
505
    int_table_flags(HA_NULL_IN_KEY |