~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.h

  • Committer: Brian Aker
  • Date: 2010-03-27 04:12:14 UTC
  • mfrom: (1395.1.18 build)
  • Revision ID: brian@gaz-20100327041214-2pm5eay51312xjvq
Merge (fixes known issues in ALTER TABLE not resetting correctly DFE).

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
  { }
33
33
 
34
34
  SchemasTool(const char *table_arg) :
35
 
    drizzled::plugin::TableFunction("data_dictionary", table_arg)
 
35
    drizzled::plugin::TableFunction("DATA_DICTIONARY", table_arg)
36
36
  { }
37
37
 
38
38
  class Generator : public drizzled::plugin::TableFunction::Generator 
52
52
    const std::string &schema_name()
53
53
    {
54
54
      assert(is_schema_primed);
55
 
      return is_schema_parsed ? schema.name() : (*schema_iterator);
 
55
      return schema.name();
56
56
    }
57
57
 
58
58
    bool populate();