~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table_writer.cc

  • Committer: Brian Aker
  • Date: 2009-07-09 19:49:32 UTC
  • mfrom: (1085.1.10 mordred)
  • Revision ID: brian@gaz-20090709194932-o90qfzgk9xem5di1
Merge from Monty

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