~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/message/table.proto

  • Committer: Package Import Robot
  • Author(s): Clint Byrum
  • Date: 2012-06-19 10:46:49 UTC
  • mfrom: (1.1.6)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20120619104649-e2l0ggd4oz3um0f4
Tags: upstream-7.1.36-stable
ImportĀ upstreamĀ versionĀ 7.1.36-stable

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 "access.proto";
11
12
import "replication_options.proto";
12
13
 
13
14
message Table {
35
36
    optional bool checksum = 17;
36
37
    optional bool page_checksum = 18;
37
38
    optional bool delay_key_write = 19;
38
 
    optional bool dont_replicate = 20;
 
39
    optional bool unused = 20;
39
40
  }
40
41
 
41
42
  message ForeignKeyConstraint {
81
82
      UUID = 11;
82
83
      TIME = 12;
83
84
      BOOLEAN = 13;
 
85
      IPV6 = 14;
84
86
    }
85
87
 
86
88
    message FieldOptions {
194
196
  optional uint64 version = 15;
195
197
 
196
198
  optional ReplicationOptions replication_options= 16;
 
199
  optional Access access= 17;
197
200
}
198
201
 
199
 
message AlterTable {
 
202
message AddedFields {
200
203
  repeated Table.Field added_field = 1;
201
204
}