~linuxjedi/drizzle/trunk-drizzledump-bugs-part2

« back to all changes in this revision

Viewing changes to client/drizzledump_data.h

  • Committer: Andrew Hutchings
  • Date: 2010-12-08 07:35:23 UTC
  • mfrom: (1976.2.4 staging)
  • Revision ID: andrew@linuxjedi.co.uk-20101208073523-dokhzgnisocljo2k
Merge trunk into branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
      isUnsigned(false),
92
92
      isAutoIncrement(false),
93
93
      defaultIsNull(false),
94
 
      convertDateTime(false)
 
94
      convertDateTime(false),
 
95
      rangeCheck(false)
95
96
    { }
96
97
 
97
98
    virtual ~DrizzleDumpField() { }
109
110
    bool isAutoIncrement;
110
111
    bool defaultIsNull;
111
112
    bool convertDateTime;
 
113
    bool rangeCheck;
112
114
    std::string defaultValue;
113
115
    std::string collation;
114
116
    std::string comment;