~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Brian Aker
  • Date: 2010-06-04 04:33:21 UTC
  • mto: This revision was merged to the branch mainline in revision 1600.
  • Revision ID: brian@gir-2.local-20100604043321-orl86xv459hmu225
No NULL currently used in printing.

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 {
13
10
  required string name = 1;
14
11
  optional string collation = 2;
15
12
  required Engine engine = 3;
16
 
  optional string catalog = 4;
17
13
  required uint64 creation_timestamp= 11 [default = 0];
18
14
  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
15
}