~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/ha_pbms.cc

  • Committer: Monty Taylor
  • Date: 2010-07-04 20:54:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1644.
  • Revision ID: mordred@inaugust.com-20100704205435-a45vos18pllpbm3f
Fix two signature change releated merge issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
        int doCommit(Session *, bool);
116
116
        int doRollback(Session *, bool);
117
117
        Cursor *create(TableShare& table, memory::Root *mem_root);
118
 
        bool doDropSchema(drizzled::SchemaIdentifier&);
 
118
        bool doDropSchema(const drizzled::SchemaIdentifier&);
119
119
        
120
120
        /*
121
121
        * Indicates to a storage engine the start of a
142
142
        int doRenameTable(Session&, const TableIdentifier &from, const TableIdentifier &to);
143
143
        
144
144
        void doGetTableIdentifiers(drizzled::CachedDirectory &dir,
145
 
                             drizzled::SchemaIdentifier &schema,
 
145
                             const drizzled::SchemaIdentifier &schema,
146
146
                             drizzled::TableIdentifiers &set_of_identifiers) 
147
147
        {
148
148
                std::set<std::string> set_of_names;
155
155
        }
156
156
        
157
157
        void doGetTableNames(CachedDirectory&, 
158
 
                                        SchemaIdentifier &schema, 
 
158
                                        const SchemaIdentifier &schema, 
159
159
                                        std::set<std::string> &set_of_names) 
160
160
        {
161
161
                bool isPBMS = schema.compare("PBMS");
435
435
#endif
436
436
 
437
437
#ifdef DRIZZLED
438
 
bool  PBMSStorageEngine::doDropSchema(drizzled::SchemaIdentifier &schema)
 
438
bool  PBMSStorageEngine::doDropSchema(const drizzled::SchemaIdentifier &schema)
439
439
{
440
440
        CSThread *self;
441
441
        PBMSResultRec result;