~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_proto.h

  • Committer: Brian Aker
  • Date: 2010-03-22 01:36:36 UTC
  • mto: This revision was merged to the branch mainline in revision 1375.
  • Revision ID: brian@gaz-20100322013636-g0jhd53j829zmc0g
Refactor for table message.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
int delete_table_proto_file(const char *file_name);
41
41
 
42
 
int rea_create_table(Session *session,
43
 
                     TableIdentifier &identifier,
44
 
                     message::Table &table_proto,
45
 
                     HA_CREATE_INFO *create_info,
46
 
                     List<CreateField> &create_field,
47
 
                     uint32_t key_count,KEY *key_info);
 
42
bool rea_create_table(Session *session,
 
43
                      TableIdentifier &identifier,
 
44
                      message::Table &table_proto,
 
45
                      HA_CREATE_INFO *create_info,
 
46
                      List<CreateField> &create_field,
 
47
                      uint32_t key_count,KEY *key_info);
48
48
 
49
49
} /* namespace drizzled */
50
50