~drizzle-trunk/drizzle/development

1502.1.31 by Brian Aker
Merge engine options for schema/table.
1
/*
2
  Message format for tables.
3
*/
988.1.1 by Jay Pipes
Changes libserialize to libdrizzledmessage per ML discussion. All GPB messages are now in the drizzled::message namespace.
4
package drizzled.message;
919.2.5 by Monty Taylor
Changed protos to be optmized for speed. INCOMPATIBLE CHANGE - .dfe files created prior to this will no longer work.
5
option optimize_for = SPEED;
323 by Brian Aker
Updated proto file for table (not FRM work).
6
1812.2.1 by David Shrewsbury
Add options to proto files for use when generating Java source files.
7
option java_package = "org.drizzle.messages";
8
option java_outer_classname = "TableMessage";
9
1502.1.31 by Brian Aker
Merge engine options for schema/table.
10
import "engine.proto";
11
323 by Brian Aker
Updated proto file for table (not FRM work).
12
message Table {
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
13
14
  enum TableType {
15
    STANDARD = 0;
16
    TEMPORARY = 1;
1211.1.1 by Brian Aker
Updating with my change to to DECIMAL from NEWDECIMAL and Stewart's update
17
    INTERNAL = 2;
1273.13.11 by Brian Aker
First pass through tables.
18
    FUNCTION = 3;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
19
  }
20
21
  message TableOptions {
1638.10.116 by Stewart Smith
only display AUTO_INCREMENT value if explicitly set by user (and preserve across ALTER TABLE).
22
    optional bool has_user_set_auto_increment_value = 1;
1638.1.5 by Stewart Smith
explicit collation in table proto (from review)
23
    optional string collation = 2;
24
    optional uint32 collation_id = 3;
584.2.2 by Stewart Smith
Brian's table(_reader|_writer|.proto) fixes
25
    optional string data_file_name = 5;
26
    optional string index_file_name = 6;
27
    optional uint64 max_rows = 7;
28
    optional uint64 min_rows = 8;
29
    optional uint64 auto_increment_value = 9;
30
    optional uint32 avg_row_length = 11;
820.1.8 by Stewart Smith
start reading table definition from proto instead of FRM.
31
    optional uint32 block_size = 13;
32
    optional string comment = 14;
869.1.24 by Stewart Smith
Generate all the info needed to get a record size on proto read instead of FRM create time.
33
    optional bool pack_record = 16;
34
    optional bool checksum = 17;
35
    optional bool page_checksum = 18;
36
    optional bool delay_key_write = 19;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
37
  }
38
39
  message ForeignKeyConstraint {
1638.9.1 by Stewart Smith
Add FOREIGN KEY constraints to the table proto. set them, add code in statement_transform for them, which means we now get foreign keys in the transaction_log. We don't go changing any existing code manipulating foreign key data structures and instead just create our own (minimal changes FTW).
40
    optional string name = 1;
41
    repeated string column_names = 2;
42
    required string references_table_name = 3;
43
    repeated string references_columns = 4;
44
45
    enum ForeignKeyMatchOption {
46
      MATCH_UNDEFINED = 0;
47
      MATCH_FULL = 1;
48
      MATCH_PARTIAL = 2;
49
      MATCH_SIMPLE = 3;
50
    }
51
    required ForeignKeyMatchOption match = 5;
52
53
    enum ForeignKeyOption {
54
      OPTION_UNDEF = 0;
55
      OPTION_RESTRICT = 1;
56
      OPTION_CASCADE = 2;
57
      OPTION_SET_NULL = 3;
58
      OPTION_NO_ACTION = 4;
1861.4.8 by Brian Aker
Adds in a portion of the ref constraints table.
59
      OPTION_SET_DEFAULT = 5;
1638.9.1 by Stewart Smith
Add FOREIGN KEY constraints to the table proto. set them, add code in statement_transform for them, which means we now get foreign keys in the transaction_log. We don't go changing any existing code manipulating foreign key data structures and instead just create our own (minimal changes FTW).
60
    }
61
62
    required ForeignKeyOption update_option = 6 [ default = OPTION_UNDEF ];
63
    required ForeignKeyOption delete_option = 7 [ default = OPTION_UNDEF ];
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
64
  }
65
323 by Brian Aker
Updated proto file for table (not FRM work).
66
  message Field {
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
67
68
    enum FieldType {
69
      DOUBLE = 0;
70
      VARCHAR = 1;
896.3.6 by Stewart Smith
Read Fields out of proto instead of FRM.
71
      BLOB = 2;
72
      ENUM = 3;
73
      INTEGER = 4;
74
      BIGINT = 5;
75
      DECIMAL = 6;
76
      DATE = 7;
1999.4.10 by Brian Aker
This fixes the bug where we were not displaying the correct field type in
77
      EPOCH = 9;
896.3.6 by Stewart Smith
Read Fields out of proto instead of FRM.
78
      DATETIME = 10;
1996.2.1 by Brian Aker
uuid type code.
79
      UUID = 11;
1999.4.7 by Brian Aker
Merge in first pass of TIME type (closer to EPOCH time).
80
      TIME = 12;
2023.2.2 by Brian Aker
Merge in BOOL change to BOOLEAN.
81
      BOOLEAN = 13;
869.1.10 by Stewart Smith
Add some missing things to field storage in proto
82
    }
83
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
84
    message FieldOptions {
584.2.2 by Stewart Smith
Brian's table(_reader|_writer|.proto) fixes
85
      optional string default_value = 1;
869.1.10 by Stewart Smith
Add some missing things to field storage in proto
86
      optional string update_value = 2;
896.3.3 by Stewart Smith
Start generating a record buffer with default values in proto read path instead of FRM write path.
87
      optional bool default_null = 3 [default = false];
896.3.4 by Stewart Smith
Create default_values record from proto instead of reading from FRM. assert if different to FRM.
88
      optional bytes default_bin_value = 4;
1638.3.2 by Stewart Smith
use default_expression and update_expression instead of default_value and update_value in the table proto for NOW()
89
      optional string default_expression = 5;
90
      optional string update_expression = 6;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
91
    }
92
93
    message FieldConstraints {
2064.2.1 by Brian Aker
Fixes naming conventions and issues around notnull being "true" by default.
94
      optional bool is_nullable = 1 [default = true]; // Dead option, do not use
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
95
      optional bool is_unsigned = 2 [default = false];
2064.2.1 by Brian Aker
Fixes naming conventions and issues around notnull being "true" by default.
96
      optional bool is_notnull = 3 [default = false];
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
97
      repeated string expression = 16; /* Reserve 0-15 for frequenty accessed attributes */
98
    }
99
100
    message NumericFieldOptions {
101
      optional bool is_autoincrement = 1 [default = false];
1211.1.1 by Brian Aker
Updating with my change to to DECIMAL from NEWDECIMAL and Stewart's update
102
      optional uint32 scale = 2;
103
      optional uint32 precision = 3;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
104
    }
105
106
    message StringFieldOptions {
107
      optional bool is_fixed_width = 1 [default = false];
1211.1.1 by Brian Aker
Updating with my change to to DECIMAL from NEWDECIMAL and Stewart's update
108
      optional uint32 length = 2;
584.2.2 by Stewart Smith
Brian's table(_reader|_writer|.proto) fixes
109
      optional uint32 collation_id = 3;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
110
      optional string collation = 4;
111
    }
112
1396 by Brian Aker
Simple rename.
113
    message EnumerationValues {
896.3.6 by Stewart Smith
Read Fields out of proto instead of FRM.
114
      optional uint32 collation_id = 2;
115
      optional string collation = 3;
1211.1.1 by Brian Aker
Updating with my change to to DECIMAL from NEWDECIMAL and Stewart's update
116
      repeated string field_value = 4;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
117
    }
118
2040.4.1 by Brian Aker
Update to time and field.
119
    /*
120
      Do we store microseconds or timezone.
121
    */
122
    message TimeFieldOptions {
2057.2.9 by Brian Aker
Remove the default on the microsecond.
123
      optional bool microseconds = 1;
2040.4.1 by Brian Aker
Update to time and field.
124
    }
125
323 by Brian Aker
Updated proto file for table (not FRM work).
126
    required string name = 1;
127
    required FieldType type = 2;
869.1.10 by Stewart Smith
Add some missing things to field storage in proto
128
    optional FieldOptions options = 4;
129
    optional FieldConstraints constraints = 5;
130
    optional NumericFieldOptions numeric_options = 6;
131
    optional StringFieldOptions string_options = 7;
2040.4.1 by Brian Aker
Update to time and field.
132
    optional TimeFieldOptions time_options = 8;
869.1.10 by Stewart Smith
Add some missing things to field storage in proto
133
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
134
    optional string comment = 16; /* Reserve 0-15 for frequently accessed attributes */
1396 by Brian Aker
Simple rename.
135
    optional EnumerationValues enumeration_values = 17;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
136
  }
137
323 by Brian Aker
Updated proto file for table (not FRM work).
138
  message Index {
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
139
140
    enum IndexType {
1802.12.1 by Brian Aker
This solves bug lp:654905
141
    /* Kept in sync with enum ha_key_alg if only for stewart sanity. */
584.2.8 by Stewart Smith
(mostly) revert previous patch that tried to get rid of the UNKNOWN define in item_cmpfunc.h
142
      UNKNOWN_INDEX = 0;
820.1.15 by Stewart Smith
Read (nearly the whole) index information (key and key parts) out of the proto, not FRM.
143
      BTREE = 1;
144
      RTREE = 2;
145
      HASH  = 3;
146
      FULLTEXT = 4;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
147
    }
148
149
    message IndexPart {
820.1.15 by Stewart Smith
Read (nearly the whole) index information (key and key parts) out of the proto, not FRM.
150
      required uint32 fieldnr = 1;
1308.2.11 by Jay Pipes
* Adds CREATE TABLE as a specific CreateTableStatement message in the
151
      optional uint32 compare_length = 2;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
152
      optional bool in_reverse_order = 3 [default = false];
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
153
    }
154
1537 by Brian Aker
Remove dead options/rename Option and remove the update that we no longer
155
    message Options {
820.1.15 by Stewart Smith
Read (nearly the whole) index information (key and key parts) out of the proto, not FRM.
156
      optional bool pack_key = 1;
157
      optional bool binary_pack_key = 2;
158
      optional bool var_length_key = 3;
159
      optional bool null_part_key = 4;
160
      optional uint32 key_block_size = 5;
161
      optional bool has_partial_segments =6;
162
      optional bool auto_generated_key = 7;
163
    }      
164
323 by Brian Aker
Updated proto file for table (not FRM work).
165
    required string name = 1;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
166
    required bool is_primary = 2;
167
    required bool is_unique = 3;
584.2.8 by Stewart Smith
(mostly) revert previous patch that tried to get rid of the UNKNOWN define in item_cmpfunc.h
168
    required IndexType type = 4 [default = UNKNOWN_INDEX];
820.1.15 by Stewart Smith
Read (nearly the whole) index information (key and key parts) out of the proto, not FRM.
169
    required uint32 key_length = 5;
170
    repeated IndexPart index_part = 6;
1537 by Brian Aker
Remove dead options/rename Option and remove the update that we no longer
171
    optional Options options= 7;
820.1.15 by Stewart Smith
Read (nearly the whole) index information (key and key parts) out of the proto, not FRM.
172
    optional string comment = 8;
323 by Brian Aker
Updated proto file for table (not FRM work).
173
  }
174
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
175
  required string name = 1;
1337.2.2 by Stewart Smith
Add Schema to table message. modify alter table to correctly set a schema when running ALTER TABLE. Also update show_table_message test results to reflect the new field.
176
  required string schema = 6;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
177
  required TableType type = 5;
1502.1.31 by Brian Aker
Merge engine options for schema/table.
178
  required Engine engine = 2;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
179
  repeated Field field = 3;
820.1.8 by Stewart Smith
start reading table definition from proto instead of FRM.
180
  repeated Index indexes = 4;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
181
182
  repeated ForeignKeyConstraint fk_constraint = 8;
183
  optional TableOptions options = 9;
1340.1.4 by Brian Aker
A first pass through adding a timestamp to our proto.
184
  required uint64 creation_timestamp= 11 [default = 0];
185
  required uint64 update_timestamp= 12 [default = 0];
1386 by Brian Aker
Adding catalog string.
186
  optional string catalog = 13;
1802.12.1 by Brian Aker
This solves bug lp:654905
187
  optional string uuid = 14;
188
  /*
189
    A version value of 0, means that it was never set.
190
    */
191
  optional uint64 version = 15;
323 by Brian Aker
Updated proto file for table (not FRM work).
192
}
1215.1.1 by stewart at flamingspork
[patch 01/17] horrible hack to have one lonely codepath produce Fields in the table proto
193
194
message AlterTable {
195
  repeated Table.Field added_field = 1;
1273.13.11 by Brian Aker
First pass through tables.
196
}