~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Brian Aker
  • Date: 2010-11-22 00:16:44 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1947.
  • Revision ID: brian@tangent.org-20101122001644-pi6jv0d65e82xn38
Merge in lock refactor, this just encapsulates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Message format for schemas.
 
3
*/
1
4
package drizzled.message;
2
5
option optimize_for = SPEED;
3
6
 
 
7
option java_package = "org.drizzle.messages";
 
8
option java_outer_classname = "SchemaMessage";
 
9
 
 
10
import "engine.proto";
 
11
 
4
12
message Schema {
5
13
  required string name = 1;
6
14
  optional string collation = 2;
 
15
  required Engine engine = 3;
 
16
  optional string catalog = 4;
7
17
  required uint64 creation_timestamp= 11 [default = 0];
8
18
  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;
9
24
}