~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/serialize/schema.proto

  • Committer: Mark Atwood
  • Date: 2008-10-03 01:39:40 UTC
  • mto: This revision was merged to the branch mainline in revision 437.
  • Revision ID: mark@fallenpegasus.com-20081003013940-mvefjo725dltz41h
rename logging_noop to logging_query

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  Message format for schemas.
3
 
*/
4
 
package drizzled.message;
5
 
option optimize_for = SPEED;
6
 
 
7
 
option java_package = "org.drizzle.messages";
8
 
option java_outer_classname = "SchemaMessage";
9
 
 
10
 
import "engine.proto";
11
 
import "replication_options.proto";
 
1
package drizzle;
12
2
 
13
3
message Schema {
14
 
  message Options {
15
 
  }
16
4
  required string name = 1;
17
 
  optional string collation = 2;
18
 
  required Engine engine = 3;
19
 
  optional string catalog = 4;
20
 
  required uint64 creation_timestamp= 11 [default = 0];
21
 
  required uint64 update_timestamp= 12 [default = 0];
22
 
  optional string uuid = 13;
23
 
  /*
24
 
    A version value of 0, means that it was never set.
25
 
    */
26
 
  optional uint64 version = 14;
27
 
  optional Options options = 15;
28
 
  optional ReplicationOptions replication_options= 16;
 
5
  optional string characterset = 2;
 
6
  optional string collation = 3;
29
7
}