~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.cc

  • 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:
258
258
    rownr++;
259
259
    if ((rownr % show_progress_size) == 0)
260
260
    {
261
 
      std::cerr << "-- %" << rownr << _(" rows dumped for table ") << obj.table->displayName << std::endl;
 
261
      std::cerr << "-- " << rownr << _(" rows dumped for table ") << obj.table->displayName << std::endl;
262
262
    }
263
263
 
264
264
    size_t* row_sizes= drizzle_row_field_sizes(obj.result);
295
295
      /* time/date conversion for MySQL connections */
296
296
      else if (obj.table->fields[i]->convertDateTime)
297
297
      {
298
 
        os << obj.checkDateTime(os, row[i], i);
 
298
        os << obj.checkDateTime(row[i], i);
299
299
      }
300
300
      else
301
301
      {