~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/schema.proto

code clean move Item_func_abs, Item_func_int_exp, Item_func_ln, Item_func_log to functions directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package drizzled.message;
2
 
option optimize_for = SPEED;
 
1
package drizzle;
3
2
 
4
3
message Schema {
5
4
  required string name = 1;
6
 
  optional string collation = 2;
7
 
  required uint64 creation_timestamp= 11 [default = 0];
8
 
  required uint64 update_timestamp= 12 [default = 0];
 
5
  optional string characterset = 2;
 
6
  optional string collation = 3;
9
7
}