~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:16:49 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114051649-4kg0mdrgdtako8vp
add a FIXME to flesh out insert docs

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