~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
121
121
                           message::Table &table_message);
122
122
 
123
123
  /* Temp only engine, so do not return values. */
124
 
  void doGetTableNames(CachedDirectory &, SchemaIdentifier &, set<string>&) { };
 
124
  void doGetTableNames(CachedDirectory &, const SchemaIdentifier &, set<string>&) { };
125
125
 
126
126
  uint32_t max_supported_keys()          const { return MI_MAX_KEY; }
127
127
  uint32_t max_supported_key_length()    const { return MI_MAX_KEY_LENGTH; }
138
138
  bool doDoesTableExist(Session& session, const TableIdentifier &identifier);
139
139
 
140
140
  void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
141
 
                             drizzled::SchemaIdentifier &schema_identifier,
 
141
                             const drizzled::SchemaIdentifier &schema_identifier,
142
142
                             drizzled::TableIdentifiers &set_of_identifiers);
143
143
  bool validateCreateTableOption(const std::string &key, const std::string &state)
144
144
  {
153
153
};
154
154
 
155
155
void MyisamEngine::doGetTableIdentifiers(drizzled::CachedDirectory&,
156
 
                                         drizzled::SchemaIdentifier&,
 
156
                                         const drizzled::SchemaIdentifier&,
157
157
                                         drizzled::TableIdentifiers&)
158
158
{
159
159
}