~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2011-03-10 18:13:13 UTC
  • mfrom: (2224.4.4 drizzle-trunk)
  • mto: This revision was merged to the branch mainline in revision 2228.
  • Revision ID: mordred@inaugust.com-20110310181313-fwpgleax1dd3ehns
Merged Brian: Fixes for 731189

Show diffs side-by-side

added added

removed removed

Lines of Context:
461
461
  UNIV_INTERN int doCreateTable(Session &session,
462
462
                                Table &form,
463
463
                                const identifier::Table &identifier,
464
 
                                message::Table&);
 
464
                                const message::Table&);
465
465
  UNIV_INTERN int doRenameTable(Session&, const identifier::Table &from, const identifier::Table &to);
466
466
  UNIV_INTERN int doDropTable(Session &session, const identifier::Table &identifier);
467
467
 
6019
6019
UNIV_INTERN
6020
6020
int
6021
6021
InnobaseEngine::doCreateTable(
6022
 
/*================*/
6023
 
  Session         &session, /*!< in: Session */
6024
 
  Table&    form,   /*!< in: information on table columns and indexes */
6025
 
        const identifier::Table &identifier,
6026
 
        message::Table& create_proto)
 
6022
                              /*================*/
 
6023
                              Session         &session, /*!< in: Session */
 
6024
                              Table&    form,   /*!< in: information on table columns and indexes */
 
6025
                              const identifier::Table &identifier,
 
6026
                              const message::Table& create_proto)
6027
6027
{
6028
6028
  int   error;
6029
6029
  dict_table_t* innobase_table;