~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/schema_dictionary/tables.h

  • Committer: Brian Aker
  • Date: 2010-03-24 01:04:05 UTC
  • mfrom: (1385.1.4 build)
  • Revision ID: brian@gaz-20100324010405-kz4otwzepf0wplnm
new code for show tables.

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)