~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.cc

  • Committer: Brian Aker
  • Date: 2010-03-18 21:17:29 UTC
  • mfrom: (1358.1.2 build)
  • Revision ID: brian@gaz-20100318211729-i3mso9euamoao775
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
395
395
  UNIV_INTERN int doCreateTable(Session *session,
396
396
                                const char *table_name,
397
397
                                Table& form,
 
398
                                drizzled::TableIdentifier &identifier,
398
399
                                message::Table&);
399
400
  UNIV_INTERN int doRenameTable(Session* session,
400
401
                                const char* from,
401
402
                                const char* to);
402
 
  UNIV_INTERN int doDropTable(Session& session, const string &table_path);
 
403
  UNIV_INTERN int doDropTable(Session& session, TableIdentifier &identifier, const string &table_path);
403
404
 
404
405
  UNIV_INTERN virtual bool get_error_message(int error, String *buf);
405
406
 
5483
5484
/*================*/
5484
5485
        Session*        session,        /*!< in: Session */
5485
5486
        const char*     table_name,     /*!< in: table name */
5486
 
        Table&          form,           /*!< in: information on table
5487
 
                                        columns and indexes */
 
5487
        Table&          form,           /*!< in: information on table columns and indexes */
 
5488
        drizzled::TableIdentifier &,
5488
5489
        message::Table& create_proto)
5489
5490
{
5490
5491
        int             error;
5910
5911
InnobaseEngine::doDropTable(
5911
5912
/*======================*/
5912
5913
        Session& session,
 
5914
        TableIdentifier &,
5913
5915
        const string &table_path)       /* in: table name */
5914
5916
{
5915
5917
        int     error;