~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.proto

  • Committer: Brian Aker
  • Date: 2011-02-22 06:12:02 UTC
  • mfrom: (2190.1.6 drizzle-build)
  • Revision ID: brian@tangent.org-20110222061202-k03czxykqy4x9hjs
List update, header fixes, multiple symbols, and David deletes some code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
option java_outer_classname = "TableMessage";
9
9
 
10
10
import "engine.proto";
 
11
import "replication_options.proto";
11
12
 
12
13
message Table {
13
14
 
34
35
    optional bool checksum = 17;
35
36
    optional bool page_checksum = 18;
36
37
    optional bool delay_key_write = 19;
 
38
    optional bool dont_replicate = 20;
37
39
  }
38
40
 
39
41
  message ForeignKeyConstraint {
94
96
      optional bool is_nullable = 1 [default = true]; // Dead option, do not use
95
97
      optional bool is_unsigned = 2 [default = false];
96
98
      optional bool is_notnull = 3 [default = false];
 
99
      optional bool is_unique = 4 [default = false];
97
100
      repeated string expression = 16; /* Reserve 0-15 for frequenty accessed attributes */
98
101
    }
99
102
 
189
192
    A version value of 0, means that it was never set.
190
193
    */
191
194
  optional uint64 version = 15;
 
195
 
 
196
  optional ReplicationOptions replication_options= 16;
192
197
}
193
198
 
194
199
message AlterTable {