32
30
optional uint64 auto_increment = 1;
33
31
optional string collation = 2;
34
32
optional uint32 collation_id = 3;
33
optional string connect_string = 4;
35
34
optional string data_file_name = 5;
36
35
optional string index_file_name = 6;
37
36
optional uint64 max_rows = 7;
99
101
optional string update_value = 2;
100
102
optional bool default_null = 3 [default = false];
101
103
optional bytes default_bin_value = 4;
105
optional int32 length = 100; /* TODO: should go away */
104
108
message TimestampFieldOptions {
108
112
message FieldConstraints {
109
required bool is_nullable = 1 [default = true];
113
required bool is_nullable = 1 [default = false];
110
114
optional bool is_unsigned = 2 [default = false];
111
115
repeated string expression = 16; /* Reserve 0-15 for frequenty accessed attributes */
114
118
message NumericFieldOptions {
115
119
optional bool is_autoincrement = 1 [default = false];
116
optional uint32 scale = 2;
117
optional uint32 precision = 3;
120
optional int32 length = 2;
121
optional int32 scale = 3;
122
optional int32 precision = 4;
120
125
message StringFieldOptions {
121
126
optional bool is_fixed_width = 1 [default = false];
122
optional uint32 length = 2;
127
optional int32 length = 2;
123
128
optional uint32 collation_id = 3;
124
129
optional string collation = 4;
127
message EnumerationValues {
132
message SetFieldOptions {
133
required int32 count_elements = 1;
128
134
optional uint32 collation_id = 2;
129
135
optional string collation = 3;
130
repeated string field_value = 4;
136
repeated bytes field_value = 4;
139
message VirtualFieldOptions {
140
required FieldType type = 1;
141
required bool physically_stored = 2;
142
/* optional as we could optimise some cases in future */
143
optional string expression = 3;
133
146
required string name = 1;
137
150
optional FieldConstraints constraints = 5;
138
151
optional NumericFieldOptions numeric_options = 6;
139
152
optional StringFieldOptions string_options = 7;
153
optional VirtualFieldOptions virtual_options = 8;
141
155
optional string comment = 16; /* Reserve 0-15 for frequently accessed attributes */
142
optional EnumerationValues enumeration_values = 17;
156
optional SetFieldOptions set_options = 17;
143
157
optional TimestampFieldOptions timestamp_options = 18;
159
optional uint32 pack_flag = 100; /* MUST DIE */
157
173
message IndexPart {
158
174
required uint32 fieldnr = 1;
159
optional uint32 compare_length = 2;
175
optional int32 compare_length = 2;
160
176
optional bool in_reverse_order = 3 [default = false];
162
178
optional uint32 key_type = 101; /* THIS MUST DIE. Along with pack_flag*/
185
201
required string name = 1;
186
required string schema = 6;
187
202
required TableType type = 5;
188
203
required StorageEngine engine = 2;
189
204
repeated Field field = 3;
192
207
repeated ForeignKeyConstraint fk_constraint = 8;
193
208
optional TableOptions options = 9;
194
209
optional TableStats stats = 10;
195
required uint64 creation_timestamp= 11 [default = 0];
196
required uint64 update_timestamp= 12 [default = 0];
197
optional string catalog = 13;
201
repeated Table.Field added_field = 1;