~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.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:
13
13
  message StorageEngine {
14
14
 
15
15
    message EngineOption {
16
 
      enum EngineOptionType {
17
 
        BOOL = 0;
18
 
        INTEGER = 1;
19
 
        STRING = 2;
20
 
      }
21
 
 
22
 
      required string option_name = 1;
23
 
      required string option_value = 2;
24
 
      required EngineOptionType option_type = 3;
 
16
      required string name = 1;
 
17
      optional string state = 2;
25
18
    }
26
19
 
27
20
    required string name = 1;
28
 
    repeated EngineOption option = 2;
 
21
    repeated EngineOption options = 2;
29
22
  }
30
23
 
31
24
  message TableOptions {