~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/blackhole/ha_blackhole.cc

  • Committer: Brian Aker
  • Date: 2009-04-28 21:46:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1001.
  • Revision ID: brian@gaz-20090428214657-8vxn7n9dc6epb3zy
Renamed TABLE_SHARE to TableShare

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
public:
29
29
  BlackholeEngine(const string &name_arg)
30
30
   : StorageEngine(name_arg, HTON_CAN_RECREATE) {}
31
 
  virtual handler *create(TABLE_SHARE *table,
 
31
  virtual handler *create(TableShare *table,
32
32
                          MEM_ROOT *mem_root)
33
33
  {
34
34
    return new (mem_root) ha_blackhole(this, table);
48
48
*****************************************************************************/
49
49
 
50
50
ha_blackhole::ha_blackhole(StorageEngine *engine_arg,
51
 
                           TABLE_SHARE *table_arg)
 
51
                           TableShare *table_arg)
52
52
  :handler(engine_arg, table_arg)
53
53
{}
54
54