~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2011-01-12 22:54:12 UTC
  • mto: This revision was merged to the branch mainline in revision 2079.
  • Revision ID: brian@tangent.org-20110112225412-u76lu18yz6furi4s
Fix interface for create table such that it issues error and returns state
like the rest of the API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
390
390
    return engine == NULL ? UNKNOWN_STRING : engine->getName();
391
391
  }
392
392
 
393
 
  static int createTable(Session& session,
394
 
                         const drizzled::TableIdentifier &identifier,
395
 
                         message::Table& table_proto);
 
393
  static bool createTable(Session &session,
 
394
                          const TableIdentifier &identifier,
 
395
                          message::Table& table_message);
396
396
 
397
397
  static void removeLostTemporaryTables(Session &session, const char *directory);
398
398