~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.proto

  • Committer: Monty Taylor
  • Date: 2010-11-08 18:26:08 UTC
  • mto: This revision was merged to the branch mainline in revision 1931.
  • Revision ID: mordred@inaugust.com-20101108182608-lci86acl7r53sbi3
Replaced auto_ptr with scoped_ptr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
option java_outer_classname = "TableMessage";
9
9
 
10
10
import "engine.proto";
11
 
import "replication_options.proto";
12
11
 
13
12
message Table {
14
13
 
35
34
    optional bool checksum = 17;
36
35
    optional bool page_checksum = 18;
37
36
    optional bool delay_key_write = 19;
38
 
    optional bool dont_replicate = 20;
39
37
  }
40
38
 
41
39
  message ForeignKeyConstraint {
76
74
      BIGINT = 5;
77
75
      DECIMAL = 6;
78
76
      DATE = 7;
79
 
      EPOCH = 9;
 
77
      TIMESTAMP = 9;
80
78
      DATETIME = 10;
81
 
      UUID = 11;
82
 
      TIME = 12;
83
 
      BOOLEAN = 13;
84
79
    }
85
80
 
86
81
    message FieldOptions {
93
88
    }
94
89
 
95
90
    message FieldConstraints {
96
 
      optional bool is_nullable = 1 [default = true]; // Dead option, do not use
 
91
      required bool is_nullable = 1 [default = true];
97
92
      optional bool is_unsigned = 2 [default = false];
98
 
      optional bool is_notnull = 3 [default = false];
99
 
      optional bool is_unique = 4 [default = false];
100
93
      repeated string expression = 16; /* Reserve 0-15 for frequenty accessed attributes */
101
94
    }
102
95
 
119
112
      repeated string field_value = 4;
120
113
    }
121
114
 
122
 
    /*
123
 
      Do we store microseconds or timezone.
124
 
    */
125
 
    message TimeFieldOptions {
126
 
      optional bool microseconds = 1;
127
 
    }
128
 
 
129
115
    required string name = 1;
130
116
    required FieldType type = 2;
131
117
    optional FieldOptions options = 4;
132
118
    optional FieldConstraints constraints = 5;
133
119
    optional NumericFieldOptions numeric_options = 6;
134
120
    optional StringFieldOptions string_options = 7;
135
 
    optional TimeFieldOptions time_options = 8;
136
121
 
137
122
    optional string comment = 16; /* Reserve 0-15 for frequently accessed attributes */
138
123
    optional EnumerationValues enumeration_values = 17;
192
177
    A version value of 0, means that it was never set.
193
178
    */
194
179
  optional uint64 version = 15;
195
 
 
196
 
  optional ReplicationOptions replication_options= 16;
197
180
}
198
181
 
199
182
message AlterTable {