~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-08-07 14:14:58 UTC
  • mfrom: (1112 staging)
  • mto: (1115.3.4 captain)
  • mto: This revision was merged to the branch mainline in revision 1117.
  • Revision ID: osullivan.padraig@gmail.com-20090807141458-qrc3don58s304ore
MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
291
291
public:
292
292
  int createTable(Session *session, const char *path, Table *table_arg,
293
293
                  HA_CREATE_INFO *create_info,
294
 
                  drizzled::message::Table *proto) {
 
294
                  drizzled::message::Table *proto) 
 
295
  {
295
296
    char name_buff[FN_REFLEN];
296
297
    const char *table_name;
297
298
 
303
304
                                     create_info, proto);
304
305
  }
305
306
 
306
 
  int renameTable(Session *session, const char *from, const char *to) {
 
307
  int renameTable(Session *session, const char *from, const char *to) 
 
308
  {
307
309
    setTransactionReadWrite(session);
308
310
 
309
311
    return renameTableImplementation(session, from, to);
310
312
  }
311
313
 
312
 
  int deleteTable(Session* session, const std::string table_path) {
 
314
  int deleteTable(Session* session, const std::string table_path) 
 
315
  {
313
316
    setTransactionReadWrite(session);
314
317
 
315
318
    return deleteTableImplementation(session, table_path);