~stewart/drizzle/haildb-2.3-athens-updates

« back to all changes in this revision

Viewing changes to client/drizzledump_data.h

  • Committer: lbieber
  • Date: 2010-10-05 22:23:12 UTC
  • mfrom: (1813.1.4 build)
  • Revision ID: lbieber@orisndriz08-20101005222312-weuq0ardk3gcryau
Merge Travis - 621861 - convert structs to classes
Merge Billy - 621331 - Replace use of stringstream with boost::lexical_cast
Merge Travis - 621861 = To change C structs to C++ classes in Drizzle
Merge Andrew - fix bug 653300 - Syntax error on inport of a SQL file produced by drizzledump

Show diffs side-by-side

added added

removed removed

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