~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Brian Aker
  • Date: 2009-04-13 16:22:40 UTC
  • mfrom: (971.1.78 mordred)
  • Revision ID: brian@gaz-20090413162240-ugi3gvhofmcuglzl
Merge Monty

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
 
    end= int64_t2str(opt_ignore_lines, end, 10);
 
350
    ostringstream buffer;
 
351
    buffer << opt_ignore_lines;
 
352
    end= strcpy(end, buffer.str().c_str())+ buffer.str().size();
351
353
    end= strcpy(end, " LINES")+6;
352
354
  }
353
355
  if (opt_columns)