~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/schema.proto

  • Committer: Brian Aker
  • Date: 2010-08-03 20:57:39 UTC
  • mfrom: (1680.6.4 rollup)
  • Revision ID: brian@gaz-20100803205739-7betgobkod41363k
Removes LOCK_system_variables_hash, one goto, drops internall new for std
new (so possible performance regression), fixes bug where Session was not
unlocked correctly.

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
}