~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.h

 Merge Andrew - fix bug 651950 - Table comments not retrieved using drizzledump

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