~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.h

  • Committer: Siddharth Prakash Singh
  • Date: 2010-03-26 19:25:23 UTC
  • mfrom: (1410 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1425.
  • Revision ID: spsneo@spsneo-laptop-20100326192523-ibjlbt1p692vobtj
merging with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    drizzled::message::Schema schema;
41
41
    std::set<std::string> schema_names;
42
42
    std::set<std::string>::const_iterator schema_iterator;
43
 
    std::string schema_predicate;
44
43
    bool is_schema_primed;
45
44
    bool is_schema_parsed;
46
45
 
56
55
      return is_schema_parsed ? schema.name() : (*schema_iterator);
57
56
    }
58
57
 
59
 
    void setSchemaPredicate(const std::string &arg)
60
 
    {
61
 
      schema_predicate= arg;
62
 
    }
63
 
 
64
58
    bool populate();
65
59
    bool nextSchemaCore();
66
60
    bool nextSchema();