~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Brian Aker
  • Date: 2010-09-15 20:24:31 UTC
  • mto: (1766.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1767.
  • Revision ID: brian@tangent.org-20100915202431-wbrrl4vg6rzjvdiu
Adding opt for optional schedulers and making them --plugin-add only.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
package drizzled.message;
5
5
option optimize_for = SPEED;
6
6
 
7
 
option java_package = "org.drizzle.messages";
8
 
option java_outer_classname = "SchemaMessage";
9
 
 
10
7
import "engine.proto";
11
8
 
12
9
message Schema {
16
13
  optional string catalog = 4;
17
14
  required uint64 creation_timestamp= 11 [default = 0];
18
15
  required uint64 update_timestamp= 12 [default = 0];
19
 
  optional string uuid = 13;
20
 
  /*
21
 
    A version value of 0, means that it was never set.
22
 
    */
23
 
  optional uint64 version = 14;
24
16
}