~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_proto.h

  • Committer: Siddharth Prakash Singh
  • Date: 2010-03-26 19:25:23 UTC
  • mfrom: (1410 drizzle)
  • mto: This revision was merged to the branch mainline in revision 1425.
  • Revision ID: spsneo@spsneo-laptop-20100326192523-ibjlbt1p692vobtj
merging with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
                      message::Table &table,
36
36
                      TableShare *share);
37
37
 
38
 
int rename_table_proto_file(const char *from, const char* to);
39
 
 
40
38
int delete_table_proto_file(const char *file_name);
41
39
 
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);
 
40
bool rea_create_table(Session *session,
 
41
                      TableIdentifier &identifier,
 
42
                      message::Table &table_proto,
 
43
                      HA_CREATE_INFO *create_info,
 
44
                      List<CreateField> &create_field,
 
45
                      uint32_t key_count,KEY *key_info);
48
46
 
49
47
} /* namespace drizzled */
50
48