~posulliv/drizzle/memcached_applier

« back to all changes in this revision

Viewing changes to plugin/blackhole/ha_blackhole.cc

  • Committer: Jay Pipes
  • Date: 2009-08-03 14:23:22 UTC
  • mfrom: (1039.2.68 staging)
  • mto: This revision was merged to the branch mainline in revision 1078.
  • Revision ID: jpipes@serialcoder-20090803142322-1g67h7su9mocg9ig
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    return ha_blackhole_exts;
44
44
  }
45
45
 
46
 
  int createTableImpl(Session*, const char *, Table *, HA_CREATE_INFO *);
 
46
  int createTableImpl(Session*, const char *, Table *, HA_CREATE_INFO *,
 
47
                      drizzled::message::Table*);
47
48
};
48
49
 
49
50
/* Static declarations for shared structures */
86
87
}
87
88
 
88
89
int BlackholeEngine::createTableImpl(Session*, const char *,
89
 
                                     Table *, HA_CREATE_INFO *)
 
90
                                     Table *, HA_CREATE_INFO *,
 
91
                                     drizzled::message::Table*)
90
92
{
91
93
  return(0);
92
94
}