~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/ha_archive.cc

  • Committer: Monty Taylor
  • Date: 2009-03-25 09:18:26 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090325091826-jad5lsm1x68eessr
Removed extraneous send myself to myself argument.

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
 
119
119
class ArchiveEngine : public StorageEngine
120
120
{
121
 
  virtual handler *create(StorageEngine *engine,
122
 
                          TABLE_SHARE *table,
 
121
  virtual handler *create(TABLE_SHARE *table,
123
122
                          MEM_ROOT *mem_root)
124
123
  {
125
 
    return new (mem_root) ha_archive(engine, table);
 
124
    return new (mem_root) ha_archive(this, table);
126
125
  }
127
126
};
128
127