~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_data.cc

  • Committer: Andrew Hutchings
  • Date: 2010-10-21 18:52:35 UTC
  • mto: This revision was merged to the branch mainline in revision 1868.
  • Revision ID: andrew@linuxjedi.co.uk-20101021185235-ga7226ashz3mykb8
Fix drizzledump --skip-extended-insert

Show diffs side-by-side

added added

removed removed

Lines of Context:
347
347
        os << ",";
348
348
    }
349
349
    /* Break insert up if it is too long */
350
 
    if (extended_insert and
351
 
      (byte_counter >= DRIZZLE_MAX_LINE_LENGTH))
 
350
    if ((extended_insert and
 
351
      (byte_counter >= DRIZZLE_MAX_LINE_LENGTH)) or (not extended_insert))
352
352
    {
353
353
      os << ");" << std::endl;
354
354
      new_insert= true;