~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.proto

  • Committer: Brian Aker
  • Date: 2010-12-24 21:27:54 UTC
  • mto: (2035.1.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2037.
  • Revision ID: brian@tangent.org-20101224212754-85xvjullymvhibr9
Merge in cast() for BOOLEAN.

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 {
93
91
    }
94
92
 
95
93
    message FieldConstraints {
96
 
      optional bool is_nullable = 1 [default = true]; // Dead option, do not use
 
94
      required bool is_nullable = 1 [default = true];
97
95
      optional bool is_unsigned = 2 [default = false];
98
 
      optional bool is_notnull = 3 [default = false];
99
 
      optional bool is_unique = 4 [default = false];
100
96
      repeated string expression = 16; /* Reserve 0-15 for frequenty accessed attributes */
101
97
    }
102
98
 
119
115
      repeated string field_value = 4;
120
116
    }
121
117
 
122
 
    /*
123
 
      Do we store microseconds or timezone.
124
 
    */
125
 
    message TimeFieldOptions {
126
 
      optional bool microseconds = 1;
127
 
    }
128
 
 
129
118
    required string name = 1;
130
119
    required FieldType type = 2;
131
120
    optional FieldOptions options = 4;
132
121
    optional FieldConstraints constraints = 5;
133
122
    optional NumericFieldOptions numeric_options = 6;
134
123
    optional StringFieldOptions string_options = 7;
135
 
    optional TimeFieldOptions time_options = 8;
136
124
 
137
125
    optional string comment = 16; /* Reserve 0-15 for frequently accessed attributes */
138
126
    optional EnumerationValues enumeration_values = 17;
192
180
    A version value of 0, means that it was never set.
193
181
    */
194
182
  optional uint64 version = 15;
195
 
 
196
 
  optional ReplicationOptions replication_options= 16;
197
183
}
198
184
 
199
185
message AlterTable {