~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_proto.h

  • Committer: Brian Aker
  • Date: 2010-05-07 06:18:08 UTC
  • mto: (1527.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1526.
  • Revision ID: brian@gaz-20100507061808-xtbz9dgb32o783yg
Remove members to functions that are no longer used.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
#define COLUMN_COMMENT_MAXLEN 1024
32
32
#define INDEX_COMMENT_MAXLEN 1024
33
33
 
 
34
int parse_table_proto(Session& session,
 
35
                      message::Table &table,
 
36
                      TableShare *share);
 
37
 
34
38
bool rea_create_table(Session *session,
35
 
                      const TableIdentifier &identifier,
 
39
                      TableIdentifier &identifier,
36
40
                      message::Table &table_proto,
37
41
                      HA_CREATE_INFO *create_info,
38
42
                      List<CreateField> &create_field,
39
 
                      uint32_t key_count,KeyInfo *key_info);
 
43
                      uint32_t key_count,KEY *key_info);
40
44
 
41
45
} /* namespace drizzled */
42
46