~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_proto.h

  • Committer: Monty Taylor
  • Date: 2011-03-10 18:13:13 UTC
  • mfrom: (2224.4.4 drizzle-trunk)
  • mto: This revision was merged to the branch mainline in revision 2228.
  • Revision ID: mordred@inaugust.com-20110310181313-fwpgleax1dd3ehns
Merged Brian: Fixes for 731189

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
 
21
 
#ifndef DRIZZLED_TABLE_PROTO_H
22
 
#define DRIZZLED_TABLE_PROTO_H
 
20
#pragma once
23
21
 
24
22
namespace drizzled {
25
23
/*
31
29
#define COLUMN_COMMENT_MAXLEN 1024
32
30
#define INDEX_COMMENT_MAXLEN 1024
33
31
 
34
 
bool fill_table_proto(identifier::Table::const_reference identifier,
35
 
                      message::Table &table_proto,
36
 
                      List<CreateField> &create_fields,
37
 
                      HA_CREATE_INFO *create_info,
38
 
                      uint32_t keys,
39
 
                      KeyInfo *key_info);
40
 
 
41
32
bool rea_create_table(Session *session,
42
33
                      const identifier::Table &identifier,
43
34
                      message::Table &table_proto,
46
37
                      uint32_t key_count,KeyInfo *key_info);
47
38
 
48
39
} /* namespace drizzled */
49
 
 
50
 
#endif /* DRIZZLED_TABLE_PROTO_H */