~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.proto

  • Committer: Monty Taylor
  • Date: 2009-08-17 18:46:08 UTC
  • mto: (1182.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1183.
  • Revision ID: mordred@inaugust.com-20090817184608-0b2emowpjr9m6le7
"Fixed" the deadlock test. I'd still like someone to look at what's going on here.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
  enum TableType {
7
7
    STANDARD = 0;
8
8
    TEMPORARY = 1;
9
 
    INTERNAL = 2;
10
 
    FUNCTION = 3;
11
9
  }
12
10
 
13
11
  message StorageEngine {
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;
84
83
      BIGINT = 5;
85
84
      DECIMAL = 6;
86
85
      DATE = 7;
 
86
      TIME = 8;
87
87
      TIMESTAMP = 9;
88
88
      DATETIME = 10;
 
89
      TINYINT = 11;
 
90
      VIRTUAL = 12;
89
91
    }
90
92
 
91
93
    enum FieldFormatType {
99
101
      optional string update_value = 2;
100
102
      optional bool default_null = 3 [default = false];
101
103
      optional bytes default_bin_value = 4;
 
104
 
 
105
      optional int32 length = 100; /* TODO: should go away */
102
106
    }
103
107
 
104
108
    message TimestampFieldOptions {
106
110
    }
107
111
 
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 */
112
116
    }
113
117
 
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;
118
123
    }
119
124
 
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;
125
130
    }
126
131
 
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;
 
137
    }
 
138
 
 
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;
131
144
    }
132
145
 
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;
140
154
 
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;
 
158
 
 
159
    optional uint32 pack_flag = 100; /* MUST DIE */
144
160
  }
145
161
 
146
162
  message Index {
156
172
 
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];
161
177
 
162
178
      optional uint32 key_type = 101; /* THIS MUST DIE. Along with pack_flag*/
183
199
  }
184
200
 
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;
198
 
}
199
 
 
200
 
message AlterTable {
201
 
  repeated Table.Field added_field = 1;
202
210
}