~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/schema.proto

  • Committer: Padraig O'Sullivan
  • Date: 2009-03-30 18:27:35 UTC
  • mto: (968.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 971.
  • Revision ID: osullivan.padraig@gmail.com-20090330182735-8tor89czwodcv77s
Removing the last of LIST from the MyISAM storage engine.

Show diffs side-by-side

added added

removed removed

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