~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.h

  • Committer: Andrew Hutchings
  • Date: 2010-10-04 14:54:25 UTC
  • mto: (1802.7.4 build)
  • mto: This revision was merged to the branch mainline in revision 1812.
  • Revision ID: andrew@linuxjedi.co.uk-20101004145425-mw4ohztikf16865g
Add table comments

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
    std::string displayName;
117
117
    std::string engineName;
118
118
    std::string collate;
 
119
    std::string comment;
119
120
 
120
121
    // Currently MySQL only, hard to do in Drizzle
121
122
    uint64_t autoIncrement;
165
166
 
166
167
    virtual std::ostream& checkDateTime(std::ostream &os, const char*, uint32_t) const { return os; }
167
168
    std::string convertHex(const unsigned char* from, size_t from_size) const;
168
 
    std::string escape(const char* from, size_t from_size) const;
 
169
    static std::string escape(const char* from, size_t from_size);
169
170
};
170
171
 
171
172
class DrizzleDumpConnection