~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2009-10-09 19:51:23 UTC
  • mfrom: (1166.3.3 merge)
  • mto: This revision was merged to the branch mainline in revision 1177.
  • Revision ID: brian@gaz-20091009195123-iriitbbfuaa06f55
Merge delete work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
292
292
                                        const std::string table_path);
293
293
 
294
294
public:
295
 
  int createTable(Session *session, const char *path, 
 
295
  int doCreateTable(Session *session, const char *path, 
296
296
                  Table *table_arg,
297
297
                  HA_CREATE_INFO *create_info,
298
298
                  drizzled::message::Table *proto) 
315
315
    return renameTableImplementation(session, from, to);
316
316
  }
317
317
 
318
 
  int deleteTable(Session* session, const std::string table_path) 
 
318
  int doDeleteTable(Session* session, const std::string table_path) 
319
319
  {
320
320
    setTransactionReadWrite(session);
321
321