1
package drizzled.message;
2
option optimize_for = SPEED;
4
required string name = 1;
5
required string engine = 2;
12
message StorageEngine {
14
message EngineOption {
15
enum EngineOptionType {
21
required string option_name = 1;
22
required string option_value = 2;
23
required EngineOptionType option_type = 3;
26
required string name = 1;
27
repeated EngineOption option = 2;
30
message TableOptions {
31
optional uint64 auto_increment = 1;
32
optional string collation = 2;
33
optional uint32 collation_id = 3;
34
optional string data_file_name = 5;
35
optional string index_file_name = 6;
36
optional uint64 max_rows = 7;
37
optional uint64 min_rows = 8;
38
optional uint64 auto_increment_value = 9;
39
optional uint32 avg_row_length = 11;
40
optional uint32 key_block_size = 12;
41
optional uint32 block_size = 13;
42
optional string comment = 14;
43
optional bool pack_keys = 15;
44
optional bool pack_record = 16;
45
optional bool checksum = 17;
46
optional bool page_checksum = 18;
47
optional bool delay_key_write = 19;
53
ROW_TYPE_COMPRESSED = 3;
54
ROW_TYPE_REDUNDANT = 4;
59
optional RowType row_type = 20;
63
optional uint32 avg_row_length = 1;
64
optional uint64 max_rows = 2;
65
optional uint32 min_rows = 3;
68
message ForeignKeyConstraint {
69
required string name = 1;
70
required Field dependent = 2;
71
required Field parent = 3;
72
/** @TODO Finish this off... */
91
enum FieldFormatType {
97
message FieldOptions {
98
optional string default_value = 1;
99
optional string update_value = 2;
100
optional bool default_null = 3 [default = false];
101
optional bytes default_bin_value = 4;
104
message TimestampFieldOptions {
105
optional bool auto_updates = 1 [default = false];
108
message FieldConstraints {
109
required bool is_nullable = 1 [default = true];
110
optional bool is_unsigned = 2 [default = false];
111
repeated string expression = 16; /* Reserve 0-15 for frequenty accessed attributes */
114
message NumericFieldOptions {
115
optional bool is_autoincrement = 1 [default = false];
116
optional uint32 scale = 2;
117
optional uint32 precision = 3;
120
message StringFieldOptions {
121
optional bool is_fixed_width = 1 [default = false];
122
optional uint32 length = 2;
123
optional uint32 collation_id = 3;
124
optional string collation = 4;
127
message SetFieldOptions {
128
required uint32 count_elements = 1;
129
optional uint32 collation_id = 2;
130
optional string collation = 3;
131
repeated string field_value = 4;
27
134
required string name = 1;
28
135
required FieldType type = 2;
29
optional string collation = 3;
30
optional string comment = 4;
31
optional bool unique = 5;
32
optional bool autoincrement = 6;
33
optional bool key = 7;
34
optional bool primary = 8;
35
optional bool is_unsigned = 9;
36
optional string custom_name = 10;
37
optional bool is_notnull = 11 [default = false];
38
optional int32 scale = 12;
39
optional string characterset = 13;
40
optional int32 length = 14;
41
optional string default_value = 15;
42
repeated string values = 16;
43
optional bool on_update = 17;
47
required string name = 1;
48
optional int32 length = 2;
136
optional FieldFormatType format = 3;
137
optional FieldOptions options = 4;
138
optional FieldConstraints constraints = 5;
139
optional NumericFieldOptions numeric_options = 6;
140
optional StringFieldOptions string_options = 7;
142
optional string comment = 16; /* Reserve 0-15 for frequently accessed attributes */
143
optional SetFieldOptions set_options = 17;
144
optional TimestampFieldOptions timestamp_options = 18;
150
/* Kept in sync with enum ha_key_alg if only for stewart's sanity. */
159
required uint32 fieldnr = 1;
160
optional int32 compare_length = 2;
161
optional bool in_reverse_order = 3 [default = false];
163
optional uint32 key_type = 101; /* THIS MUST DIE. Along with pack_flag*/
166
message IndexOptions {
167
optional bool pack_key = 1;
168
optional bool binary_pack_key = 2;
169
optional bool var_length_key = 3;
170
optional bool null_part_key = 4;
171
optional uint32 key_block_size = 5;
172
optional bool has_partial_segments =6;
173
optional bool auto_generated_key = 7;
57
176
required string name = 1;
58
repeated KeyPart values = 2;
59
optional bool primary = 4;
60
optional int32 key_block_size = 5;
61
optional IndexType type = 6;
177
required bool is_primary = 2;
178
required bool is_unique = 3;
179
required IndexType type = 4 [default = UNKNOWN_INDEX];
180
required uint32 key_length = 5;
181
repeated IndexPart index_part = 6;
182
optional IndexOptions options= 7;
183
optional string comment = 8;
64
repeated Field field = 4;
65
repeated Index index = 5;
67
optional string primary = 6;
68
optional int32 auto_increment = 7;
69
optional int32 avg_row_length = 8;
70
optional string character_set = 9;
71
optional bool checksum = 10;
72
optional string collation = 11;
73
optional string comment = 12;
74
optional string connection = 13;
75
optional string data_directory = 14;
76
optional string index_directory = 15;
77
optional bool delay_key_write = 16;
78
optional int32 max_rows = 17;
79
optional int32 min_rows = 18;
80
optional bool pack_keys = 19;
81
optional string row_format = 20;
82
optional string characterset = 21;
83
optional bool temp = 22;
87
repeated Table table = 1;
186
required string name = 1;
187
required TableType type = 5;
188
required StorageEngine engine = 2;
189
repeated Field field = 3;
190
repeated Index indexes = 4;
192
repeated ForeignKeyConstraint fk_constraint = 8;
193
optional TableOptions options = 9;
194
optional TableStats stats = 10;
198
repeated Table.Field added_field = 1;
b'\\ No newline at end of file'