~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

  • Committer: Brian Aker
  • Date: 2010-06-29 21:22:35 UTC
  • Revision ID: brian@gaz-20100629212235-egrke8446lndm2iz
This adds const to SchemaIdentifier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
                           drizzled::message::Table &table_message);
137
137
 
138
138
  /* Temp only engine, so do not return values. */
139
 
  void doGetTableNames(drizzled::CachedDirectory &, SchemaIdentifier&, set<string>&) { };
 
139
  void doGetTableNames(drizzled::CachedDirectory &, const SchemaIdentifier&, set<string>&) { };
140
140
 
141
141
  int doDropTable(Session&, const drizzled::TableIdentifier &identifier);
142
142
  TinaShare *findOpenTable(const string table_name);
151
151
  int doRenameTable(Session&, const drizzled::TableIdentifier &from, const drizzled::TableIdentifier &to);
152
152
 
153
153
  void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
154
 
                             drizzled::SchemaIdentifier &schema_identifier,
 
154
                             const drizzled::SchemaIdentifier &schema_identifier,
155
155
                             drizzled::TableIdentifiers &set_of_identifiers);
156
156
};
157
157
 
158
158
void Tina::doGetTableIdentifiers(drizzled::CachedDirectory&,
159
 
                                 drizzled::SchemaIdentifier&,
 
159
                                 const drizzled::SchemaIdentifier&,
160
160
                                 drizzled::TableIdentifiers&)
161
161
{
162
162
}