~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.h

  • Committer: Brian Aker
  • Date: 2010-07-09 08:40:41 UTC
  • mfrom: (1643.3.13 rollup)
  • Revision ID: brian@gaz-20100709084041-tkghyfbzwvfqypi8
MergeĀ IS

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
  {
40
40
    drizzled::message::Schema schema;
41
41
 
42
 
    drizzled::SchemaIdentifierList schema_names;
43
 
    drizzled::SchemaIdentifierList::const_iterator schema_iterator;
44
 
 
45
 
    bool is_schema_primed;
46
 
    bool is_schema_parsed;
 
42
    drizzled::generator::Schema schema_generator;
47
43
 
48
44
    virtual void fill();
49
45
 
52
48
 
53
49
    const std::string &schema_name()
54
50
    {
55
 
      assert(is_schema_primed);
56
51
      return schema.name();
57
52
    }
58
53
 
59
54
    bool populate();
60
 
    bool nextSchemaCore();
61
55
    bool nextSchema();
62
56
    bool isSchemaPrimed()
63
57
    {
64
 
      return is_schema_primed;
 
58
      return true;
65
59
    }
66
60
  };
67
61