~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_indexes.h

  • Committer: Brian Aker
  • Date: 2010-08-17 01:34:55 UTC
  • mto: (1711.1.23 build)
  • mto: This revision was merged to the branch mainline in revision 1714.
  • Revision ID: brian@tangent.org-20100817013455-zx3nm7qilxvpwrgb
Style on structure cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef PLUGIN_SHOW_DICTIONARY_SHOW_INDEXES_H
22
22
#define PLUGIN_SHOW_DICTIONARY_SHOW_INDEXES_H
23
23
 
24
 
class ShowIndexes : public show_dictionary::Show
 
24
class ShowIndexes : public drizzled::plugin::TableFunction
25
25
{
26
26
public:
27
27
  ShowIndexes();
28
28
 
29
 
  class Generator : public show_dictionary::Show::Generator 
 
29
  class Generator : public drizzled::plugin::TableFunction::Generator 
30
30
  {
31
31
    bool is_tables_primed;
32
32
    bool is_index_primed;
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()