~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

First pass on cleanup of Stewart's patch, plus re-engineer to make it work a
bit more with the current system. Engines approve key/pair.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
  optional string collation = 2;
7
7
  required uint64 creation_timestamp= 11 [default = 0];
8
8
  required uint64 update_timestamp= 12 [default = 0];
 
9
 
 
10
  message Engine {
 
11
 
 
12
    message Option {
 
13
      required string name = 1;
 
14
      optional string state = 2;
 
15
    }
 
16
 
 
17
    required string name = 1;
 
18
    repeated Option options = 2;
 
19
  }
 
20
  required Engine engine = 3;
9
21
}