~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Mark Atwood
  • Date: 2011-08-11 03:05:03 UTC
  • mfrom: (2385.1.12 refactor4)
  • Revision ID: me@mark.atwood.name-20110811030503-rp9xjihc5x3y0x4q
merge lp:~olafvdspek/drizzle/refactor4

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
}