~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.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:
307
307
                        /* out: 0 or error number */
308
308
        XID     *xid);  /* in: X/Open XA transaction identification */
309
309
 
310
 
  virtual Cursor *create(TableShare *table,
 
310
  virtual Cursor *create(TableShare &table,
311
311
                          MEM_ROOT *mem_root)
312
312
  {
313
 
    return new (mem_root) ha_innobase(this, table);
 
313
    return new (mem_root) ha_innobase(*this, table);
314
314
  }
315
315
 
316
316
  /*********************************************************************
1349
1349
/*********************************************************************//**
1350
1350
Construct ha_innobase Cursor. */
1351
1351
UNIV_INTERN
1352
 
ha_innobase::ha_innobase(drizzled::plugin::StorageEngine *engine_arg,
1353
 
                         TableShare *table_arg)
 
1352
ha_innobase::ha_innobase(drizzled::plugin::StorageEngine &engine_arg,
 
1353
                         TableShare &table_arg)
1354
1354
  :Cursor(engine_arg, table_arg),
1355
1355
  int_table_flags(HA_REC_NOT_IN_SEQ |
1356
1356
                  HA_NULL_IN_KEY |