~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/ha_pbms.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:
137
137
                (void) session;
138
138
        }
139
139
        
140
 
        int doCreateTable(Session&, Table&, const identifier::Table& ident, drizzled::message::Table& );        
 
140
        int doCreateTable(Session&, Table&, const identifier::Table& ident, const drizzled::message::Table& );  
141
141
        int doDropTable(Session &, const identifier::Table& );
142
142
        
143
143
        int doRenameTable(Session&, const identifier::Table &from, const identifier::Table &to);
1045
1045
 
1046
1046
 
1047
1047
#ifdef DRIZZLED
1048
 
int PBMSStorageEngine::doCreateTable(Session&, Table&, const identifier::Table& , drizzled::message::Table& )
 
1048
int PBMSStorageEngine::doCreateTable(Session&, Table&, const identifier::Table& , const drizzled::message::Table& )
1049
1049
{
1050
1050
        /* You cannot create PBMS tables. */
1051
1051
        return( HA_ERR_WRONG_COMMAND );