~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;
77
      TIMESTAMP = 9;
78
      DATETIME = 10;
869.1.10 by Stewart Smith
Add some missing things to field storage in proto
79
    }
80
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
81
    message FieldOptions {
584.2.2 by Stewart Smith
Brian's table(_reader|_writer|.proto) fixes
82
      optional string default_value = 1;
869.1.10 by Stewart Smith
Add some missing things to field storage in proto
83
      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.
84
      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.
85
      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()
86
      optional string default_expression = 5;
87
      optional string update_expression = 6;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
88
    }
89
90
    message FieldConstraints {
1215.1.2 by stewart at flamingspork
[patch 02/17] field NULL | NOT NULL in proto in parser. Only for CREATE TABLE. Change default in proto to reflect default in SQL.
91
      required bool is_nullable = 1 [default = true];
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
92
      optional bool is_unsigned = 2 [default = false];
93
      repeated string expression = 16; /* Reserve 0-15 for frequenty accessed attributes */
94
    }
95
96
    message NumericFieldOptions {
97
      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
98
      optional uint32 scale = 2;
99
      optional uint32 precision = 3;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
100
    }
101
102
    message StringFieldOptions {
103
      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
104
      optional uint32 length = 2;
584.2.2 by Stewart Smith
Brian's table(_reader|_writer|.proto) fixes
105
      optional uint32 collation_id = 3;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
106
      optional string collation = 4;
107
    }
108
1396 by Brian Aker
Simple rename.
109
    message EnumerationValues {
896.3.6 by Stewart Smith
Read Fields out of proto instead of FRM.
110
      optional uint32 collation_id = 2;
111
      optional string collation = 3;
1211.1.1 by Brian Aker
Updating with my change to to DECIMAL from NEWDECIMAL and Stewart's update
112
      repeated string field_value = 4;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
113
    }
114
323 by Brian Aker
Updated proto file for table (not FRM work).
115
    required string name = 1;
116
    required FieldType type = 2;
869.1.10 by Stewart Smith
Add some missing things to field storage in proto
117
    optional FieldOptions options = 4;
118
    optional FieldConstraints constraints = 5;
119
    optional NumericFieldOptions numeric_options = 6;
120
    optional StringFieldOptions string_options = 7;
121
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
122
    optional string comment = 16; /* Reserve 0-15 for frequently accessed attributes */
1396 by Brian Aker
Simple rename.
123
    optional EnumerationValues enumeration_values = 17;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
124
  }
125
323 by Brian Aker
Updated proto file for table (not FRM work).
126
  message Index {
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
127
128
    enum IndexType {
1802.12.1 by Brian Aker
This solves bug lp:654905
129
    /* 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
130
      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.
131
      BTREE = 1;
132
      RTREE = 2;
133
      HASH  = 3;
134
      FULLTEXT = 4;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
135
    }
136
137
    message IndexPart {
820.1.15 by Stewart Smith
Read (nearly the whole) index information (key and key parts) out of the proto, not FRM.
138
      required uint32 fieldnr = 1;
1308.2.11 by Jay Pipes
* Adds CREATE TABLE as a specific CreateTableStatement message in the
139
      optional uint32 compare_length = 2;
352.1.2 by Jay Pipes
Working reader and writer for table.proto definitions now
140
      optional bool in_reverse_order = 3 [default = false];
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
141
    }
142
1537 by Brian Aker
Remove dead options/rename Option and remove the update that we no longer
143
    message Options {
820.1.15 by Stewart Smith
Read (nearly the whole) index information (key and key parts) out of the proto, not FRM.
144
      optional bool pack_key = 1;
145
      optional bool binary_pack_key = 2;
146
      optional bool var_length_key = 3;
147
      optional bool null_part_key = 4;
148
      optional uint32 key_block_size = 5;
149
      optional bool has_partial_segments =6;
150
      optional bool auto_generated_key = 7;
151
    }      
152
323 by Brian Aker
Updated proto file for table (not FRM work).
153
    required string name = 1;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
154
    required bool is_primary = 2;
155
    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
156
    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.
157
    required uint32 key_length = 5;
158
    repeated IndexPart index_part = 6;
1537 by Brian Aker
Remove dead options/rename Option and remove the update that we no longer
159
    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.
160
    optional string comment = 8;
323 by Brian Aker
Updated proto file for table (not FRM work).
161
  }
162
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
163
  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.
164
  required string schema = 6;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
165
  required TableType type = 5;
1502.1.31 by Brian Aker
Merge engine options for schema/table.
166
  required Engine engine = 2;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
167
  repeated Field field = 3;
820.1.8 by Stewart Smith
start reading table definition from proto instead of FRM.
168
  repeated Index indexes = 4;
352.1.1 by Jay Pipes
New table definition and updated reader and writer test programs
169
170
  repeated ForeignKeyConstraint fk_constraint = 8;
171
  optional TableOptions options = 9;
1340.1.4 by Brian Aker
A first pass through adding a timestamp to our proto.
172
  required uint64 creation_timestamp= 11 [default = 0];
173
  required uint64 update_timestamp= 12 [default = 0];
1386 by Brian Aker
Adding catalog string.
174
  optional string catalog = 13;
1802.12.1 by Brian Aker
This solves bug lp:654905
175
  optional string uuid = 14;
176
  /*
177
    A version value of 0, means that it was never set.
178
    */
179
  optional uint64 version = 15;
323 by Brian Aker
Updated proto file for table (not FRM work).
180
}
1215.1.1 by stewart at flamingspork
[patch 01/17] horrible hack to have one lonely codepath produce Fields in the table proto
181
182
message AlterTable {
183
  repeated Table.Field added_field = 1;
1273.13.11 by Brian Aker
First pass through tables.
184
}