~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/information_engine/information_engine.h

  • 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:
66
66
    return 0; 
67
67
  }
68
68
 
69
 
  virtual Cursor *create(TableShare *table, MEM_ROOT *mem_root)
 
69
  virtual Cursor *create(TableShare &table, MEM_ROOT *mem_root)
70
70
  {
71
 
    return new (mem_root) InformationCursor(this, table);
 
71
    return new (mem_root) InformationCursor(*this, table);
72
72
  }
73
73
 
74
74
  const char **bas_ext() const