~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Olaf van der Spek
  • Date: 2011-10-10 09:27:50 UTC
  • mto: (2430.1.6 rf)
  • mto: This revision was merged to the branch mainline in revision 2436.
  • Revision ID: olafvdspek@gmail.com-20111010092750-ryxgmn7zj5yvxfkf
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
option java_outer_classname = "SchemaMessage";
9
9
 
10
10
import "engine.proto";
 
11
import "access.proto";
 
12
import "replication_options.proto";
11
13
 
12
14
message Schema {
 
15
  message Options {
 
16
  }
13
17
  required string name = 1;
14
18
  optional string collation = 2;
15
19
  required Engine engine = 3;
21
25
    A version value of 0, means that it was never set.
22
26
    */
23
27
  optional uint64 version = 14;
 
28
  optional Options options = 15;
 
29
  optional ReplicationOptions replication_options= 16;
 
30
  optional Access access= 17;
24
31
}