~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.h

  • Committer: Padraig O'Sullivan
  • Date: 2010-04-17 01:38:47 UTC
  • mfrom: (1237.9.238 bad-staging)
  • Revision ID: osullivan.padraig@gmail.com-20100417013847-ibjioqsfbmf5yg4g
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    drizzled::message::Table table_proto;
41
41
    std::set<std::string> table_names;
42
42
    std::set<std::string>::iterator table_iterator;
43
 
    std::string table_predicate;
44
43
    bool is_tables_primed;
45
44
 
46
45
    virtual void fill();
67
66
      return is_tables_primed;
68
67
    }
69
68
 
70
 
    void setTablePredicate(const std::string &arg)
71
 
    {
72
 
      table_predicate= arg;
73
 
    }
74
 
 
75
69
    bool populate();
76
70
    bool nextTable();
77
 
    bool checkTableName();
78
71
  };
79
72
 
80
73
  Generator *generator(drizzled::Field **arg)