~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_indexes.h

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:28:23 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103032823-44k21f0njmk97omr
fix docs warning: Title underline (and overline) is too short in brief_history_of_drizzle.rst

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    int32_t index_iterator;
36
36
    int32_t index_part_iterator;
37
37
 
38
 
    drizzled::message::table::shared_ptr table_proto;
 
38
    drizzled::message::Table table_proto;
39
39
    drizzled::message::Table::Index index;
40
40
    drizzled::message::Table::Index::IndexPart index_part;
41
41
 
43
43
 
44
44
    const drizzled::message::Table& getTableProto()
45
45
    {
46
 
      return *table_proto;
 
46
      return table_proto;
47
47
    }
48
48
 
49
49
    const drizzled::message::Table::Index& getIndex()