~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/schemas.h

  • Committer: Brian Aker
  • Date: 2010-02-25 07:54:52 UTC
  • mfrom: (1273.13.101 build)
  • Revision ID: brian@gaz-20100225075452-19eozreshbrerypu
Merge of all patches in build.

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;
43
44
    bool is_schema_primed;
44
45
    bool is_schema_parsed;
45
46
 
55
56
      return is_schema_parsed ? schema.name() : (*schema_iterator);
56
57
    }
57
58
 
 
59
    void setSchemaPredicate(const std::string &arg)
 
60
    {
 
61
      schema_predicate= arg;
 
62
    }
 
63
 
58
64
    bool populate();
59
65
    bool nextSchemaCore();
60
66
    bool nextSchema();