~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.h

  • Committer: Andrew Hutchings
  • Date: 2010-10-01 23:19:59 UTC
  • mto: (1813.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1814.
  • Revision ID: andrew@linuxjedi.co.uk-20101001231959-z3y56nwatrffwkhi
1. date regex was broken
2. a pointer was set to output when processing date/time
3. a '%' was output with progress dumping

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
    virtual ~DrizzleDumpData() { }
163
163
    friend std::ostream& operator <<(std::ostream &os, const DrizzleDumpData &obj);
164
164
 
165
 
    virtual std::ostream& checkDateTime(std::ostream &os, const char*, uint32_t) const { return os; }
 
165
    virtual std::string checkDateTime(const char*, uint32_t) const { return std::string(""); }
166
166
    std::string convertHex(const unsigned char* from, size_t from_size) const;
167
167
    std::string escape(const char* from, size_t from_size) const;
168
168
};