~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_proto.h

  • Committer: Brian Aker
  • Date: 2010-08-18 16:12:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818161258-1vm71da888dfvwsx
Remove the code surrounding stack trace.

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
 
 
38
34
bool rea_create_table(Session *session,
39
35
                      TableIdentifier &identifier,
40
36
                      message::Table &table_proto,
41
37
                      HA_CREATE_INFO *create_info,
42
38
                      List<CreateField> &create_field,
43
 
                      uint32_t key_count,KEY *key_info);
 
39
                      uint32_t key_count,KeyInfo *key_info);
44
40
 
45
41
} /* namespace drizzled */
46
42