~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.proto

edit

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