~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
bit more with the current system. Engines approve key/pair.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include "drizzled/memory/multi_malloc.h"
37
37
#include "drizzled/plugin/daemon.h"
38
38
 
 
39
#include <boost/algorithm/string.hpp>
 
40
 
39
41
#include <string>
40
42
#include <sstream>
41
43
#include <map>
138
140
  void doGetTableIdentifiers(drizzled::CachedDirectory &directory,
139
141
                             drizzled::SchemaIdentifier &schema_identifier,
140
142
                             drizzled::TableIdentifiers &set_of_identifiers);
 
143
  bool validateCreateTableOption(const std::string &key, const std::string &state)
 
144
  {
 
145
    (void)state;
 
146
    if (boost::iequals(key, "ROW_FORMAT"))
 
147
    {
 
148
      return true;
 
149
    }
 
150
 
 
151
    return false;
 
152
  }
141
153
};
142
154
 
143
155
void MyisamEngine::doGetTableIdentifiers(drizzled::CachedDirectory&,