~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.proto

  • Committer: Brian Aker
  • Date: 2010-02-07 01:33:54 UTC
  • Revision ID: brian@gaz-20100207013354-d2pg1n68u5c09pgo
Remove giant include header to its own file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package drizzle;
 
1
package drizzled.message;
 
2
option optimize_for = SPEED;
2
3
 
3
4
message Table {
4
 
  required string name = 1;
5
 
  required string engine = 2;
6
 
 
7
 
  enum FieldType {
8
 
    DOUBLE = 0;
9
 
    VARCHAR = 1;
10
 
    TEXT = 2;
11
 
    BLOB = 3;
12
 
    ENUM = 4;
13
 
    SET = 5;
14
 
    TINYINT = 6;
15
 
    SMALLINT = 7;
16
 
    INTEGER = 8;
17
 
    BIGINT = 9;
18
 
    DECIMAL = 10;
19
 
    VARBINARY = 11;
20
 
    DATE = 12;
21
 
    TIME = 13;
22
 
    TIMESTAMP = 14;
23
 
    DATETIME = 15;
 
5
 
 
6
  enum TableType {
 
7
    STANDARD = 0;
 
8
    TEMPORARY = 1;
 
9
    INTERNAL = 2;
 
10
  }
 
11
 
 
12
  message StorageEngine {
 
13
 
 
14
    message EngineOption {
 
15
      enum EngineOptionType {
 
16
        BOOL = 0;
 
17
        INTEGER = 1;
 
18
        STRING = 2;
 
19
      }
 
20
 
 
21
      required string option_name = 1;
 
22
      required string option_value = 2;
 
23
      required EngineOptionType option_type = 3;
 
24
    }
 
25
 
 
26
    required string name = 1;
 
27
    repeated EngineOption option = 2;
 
28
  }
 
29
 
 
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;
 
48
 
 
49
    enum RowType {
 
50
         ROW_TYPE_DEFAULT = 0;
 
51
         ROW_TYPE_FIXED = 1;
 
52
         ROW_TYPE_DYNAMIC = 2;
 
53
         ROW_TYPE_COMPRESSED = 3;
 
54
         ROW_TYPE_REDUNDANT = 4;
 
55
         ROW_TYPE_COMPACT = 5;
 
56
         ROW_TYPE_PAGE = 6;
 
57
    }
 
58
 
 
59
    optional RowType row_type = 20;
 
60
  }
 
61
 
 
62
  message TableStats {
 
63
    optional uint32 avg_row_length = 1;
 
64
    optional uint64 max_rows = 2;
 
65
    optional uint32 min_rows = 3;
 
66
  }
 
67
 
 
68
  message ForeignKeyConstraint {
 
69
    required string name = 1;
 
70
    required Field dependent = 2;
 
71
    required Field parent = 3;
 
72
    /** @TODO Finish this off... */
24
73
  }
25
74
 
26
75
  message Field {
 
76
 
 
77
    enum FieldType {
 
78
      DOUBLE = 0;
 
79
      VARCHAR = 1;
 
80
      BLOB = 2;
 
81
      ENUM = 3;
 
82
      INTEGER = 4;
 
83
      BIGINT = 5;
 
84
      DECIMAL = 6;
 
85
      DATE = 7;
 
86
      TIME = 8;
 
87
      TIMESTAMP = 9;
 
88
      DATETIME = 10;
 
89
    }
 
90
 
 
91
    enum FieldFormatType {
 
92
      DefaultFormat= 0;
 
93
      FixedFormat= 1;
 
94
      DynamicFormat= 2;
 
95
    }
 
96
 
 
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;
 
102
    }
 
103
 
 
104
    message TimestampFieldOptions {
 
105
      optional bool auto_updates = 1 [default = false];
 
106
    }
 
107
 
 
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 */
 
112
    }
 
113
 
 
114
    message NumericFieldOptions {
 
115
      optional bool is_autoincrement = 1 [default = false];
 
116
      optional uint32 scale = 2;
 
117
      optional uint32 precision = 3;
 
118
    }
 
119
 
 
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;
 
125
    }
 
126
 
 
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;
 
132
    }
 
133
 
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;
44
 
  }
45
 
 
46
 
  message KeyPart {
47
 
    required string name = 1;
48
 
    optional int32 length = 2;
49
 
  }
50
 
 
51
 
  enum IndexType {
52
 
    ORDERED = 0;
53
 
    HASH = 1;
 
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;
 
141
 
 
142
    optional string comment = 16; /* Reserve 0-15 for frequently accessed attributes */
 
143
    optional SetFieldOptions set_options = 17;
 
144
    optional TimestampFieldOptions timestamp_options = 18;
54
145
  }
55
146
 
56
147
  message Index {
 
148
 
 
149
    enum IndexType {
 
150
    /* Kept in sync with enum ha_key_alg if only for stewart's sanity. */
 
151
      UNKNOWN_INDEX = 0;
 
152
      BTREE = 1;
 
153
      RTREE = 2;
 
154
      HASH  = 3;
 
155
      FULLTEXT = 4;
 
156
    }
 
157
 
 
158
    message IndexPart {
 
159
      required uint32 fieldnr = 1;
 
160
      optional int32 compare_length = 2;
 
161
      optional bool in_reverse_order = 3 [default = false];
 
162
 
 
163
      optional uint32 key_type = 101; /* THIS MUST DIE. Along with pack_flag*/
 
164
    }
 
165
 
 
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;
 
174
    }      
 
175
 
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;
62
184
  }
63
185
 
64
 
  repeated Field field = 4;
65
 
  repeated Index index = 5;
66
 
 
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;
84
 
}
85
 
 
86
 
message TableList {
87
 
  repeated Table table = 1;
88
 
}
 
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;
 
191
 
 
192
  repeated ForeignKeyConstraint fk_constraint = 8;
 
193
  optional TableOptions options = 9;
 
194
  optional TableStats stats = 10;
 
195
}
 
196
 
 
197
message AlterTable {
 
198
  repeated Table.Field added_field = 1;
 
199
}
 
 
b'\\ No newline at end of file'