~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/message/table.proto

  • Committer: Brian Aker
  • Date: 2010-07-29 05:53:14 UTC
  • mfrom: (1671.1.4 staging)
  • Revision ID: brian@gaz-20100729055314-c5q5zzphc5zjdq59
Rollup of Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
    optional bool checksum = 17;
32
32
    optional bool page_checksum = 18;
33
33
    optional bool delay_key_write = 19;
34
 
 
35
 
    enum RowType {
36
 
         ROW_TYPE_DEFAULT = 0;
37
 
         ROW_TYPE_FIXED = 1;
38
 
         ROW_TYPE_DYNAMIC = 2;
39
 
         ROW_TYPE_COMPRESSED = 3;
40
 
         ROW_TYPE_REDUNDANT = 4;
41
 
         ROW_TYPE_COMPACT = 5;
42
 
         ROW_TYPE_PAGE = 6;
43
 
    }
44
 
 
45
 
    optional RowType row_type = 20;
46
34
  }
47
35
 
48
36
  message ForeignKeyConstraint {
74
62
      optional bytes default_bin_value = 4;
75
63
    }
76
64
 
77
 
    message TimestampFieldOptions {
78
 
      optional bool auto_updates = 1 [default = false];
79
 
    }
80
 
 
81
65
    message FieldConstraints {
82
66
      required bool is_nullable = 1 [default = true];
83
67
      optional bool is_unsigned = 2 [default = false];
112
96
 
113
97
    optional string comment = 16; /* Reserve 0-15 for frequently accessed attributes */
114
98
    optional EnumerationValues enumeration_values = 17;
115
 
    optional TimestampFieldOptions timestamp_options = 18;
116
99
  }
117
100
 
118
101
  message Index {