~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:26:39 UTC
  • mfrom: (2157.2.2 give-in-to-pkg-config)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172639-nhy7i72sfhoq13ms
Merged in pkg-config fixes.

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
 
7
10
import "engine.proto";
8
11
 
9
12
message Schema {
13
16
  optional string catalog = 4;
14
17
  required uint64 creation_timestamp= 11 [default = 0];
15
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;
16
24
}