~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table_writer.cc

  • Committer: Monty Taylor
  • Date: 2009-07-11 02:27:48 UTC
  • mfrom: (1090 staging)
  • mto: This revision was merged to the branch mainline in revision 1092.
  • Revision ID: mordred@inaugust.com-20090711022748-w1vvhs8zrfp69ljk
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
  Written from Google proto example
11
11
*/
12
12
 
13
 
void fill_engine(::drizzled::message::Table::StorageEngine *engine)
 
13
static void fill_engine(::drizzled::message::Table::StorageEngine *engine)
14
14
{
15
15
  int16_t x;
16
16
 
37
37
  }
38
38
}
39
39
 
40
 
void new_index_to_table(::drizzled::message::Table *table,
41
 
                        const string name,
42
 
                        uint16_t num_index_parts,
43
 
                        uint32_t field_indexes[],
44
 
                        uint32_t compare_lengths[],
45
 
                        bool is_primary,
46
 
                        bool is_unique)
 
40
static void new_index_to_table(::drizzled::message::Table *table,
 
41
                               const string name,
 
42
                               uint16_t num_index_parts,
 
43
                               uint32_t field_indexes[],
 
44
                               uint32_t compare_lengths[],
 
45
                               bool is_primary,
 
46
                               bool is_unique)
47
47
{
48
48
  uint16_t x= 0;
49
49
 
70
70
  }
71
71
}
72
72
 
73
 
void fill_table(::drizzled::message::Table *table, const char *name)
 
73
static void fill_table(::drizzled::message::Table *table, const char *name)
74
74
{
75
75
  uint16_t x;
76
76