~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Andrew Hutchings
  • Date: 2011-02-01 10:23:22 UTC
  • mto: (2136.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2137.
  • Revision ID: andrew@linuxjedi.co.uk-20110201102322-oxztcyrjzg3c7yta
Fix counters cleanup

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";
13
11
 
14
12
message Schema {
15
 
  message Options {
16
 
  }
17
13
  required string name = 1;
18
14
  optional string collation = 2;
19
15
  required Engine engine = 3;
25
21
    A version value of 0, means that it was never set.
26
22
    */
27
23
  optional uint64 version = 14;
28
 
  optional Options options = 15;
29
 
  optional ReplicationOptions replication_options= 16;
30
 
  optional Access access= 17;
31
24
}