~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Padraig O'Sullivan
  • Date: 2009-04-08 23:01:10 UTC
  • mto: (971.1.63 mordred)
  • mto: This revision was merged to the branch mainline in revision 990.
  • Revision ID: osullivan.padraig@gmail.com-20090408230110-k3x7ix1321lfclp7
Various small cleanups to numerous files to now have calls to the correct
methods in std::bitset instead of calls to functions related to MY_BITSET
e.g. bitmap->test(pos) instead of is_bitmap_set(MY_BITMAP, pos)
Quite a number of files are modified in this commit but most of the
modifications are quite small in nature.

Show diffs side-by-side

added added

removed removed

Lines of Context:
347
347
  if (opt_ignore_lines >= 0)
348
348
  {
349
349
    end= strcpy(end, " IGNORE ")+8;
350
 
    ostringstream buffer;
351
 
    buffer << opt_ignore_lines;
352
 
    end= strcpy(end, buffer.str().c_str())+ buffer.str().size();
 
350
    end= int64_t2str(opt_ignore_lines, end, 10);
353
351
    end= strcpy(end, " LINES")+6;
354
352
  }
355
353
  if (opt_columns)