~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_columns.h

  • Committer: Brian Aker
  • Date: 2010-11-10 20:56:34 UTC
  • mfrom: (1921.1.2 trunk)
  • Revision ID: brian@tangent.org-20101110205634-u5rt2i4ibpyj20wh
Rollup patch around using shared_ptr with Table messages.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    bool is_columns_primed;
35
35
 
36
36
    int32_t column_iterator;
37
 
    drizzled::message::Table table_proto;
 
37
    drizzled::message::TablePtr table_proto;
38
38
    drizzled::message::Table::Field column;
39
39
 
40
40
    bool nextColumnCore();
42
42
 
43
43
    std::string table_name;
44
44
 
45
 
    const drizzled::message::Table& getTableProto()
 
45
    drizzled::message::TablePtr getTableProto()
46
46
    {
47
47
      return table_proto;
48
48
    }