~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

merge innobase 1.0.9 build fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
2319
2319
  {
2320
2320
    *out++='\n';
2321
2321
    uint32_t length=(uint32_t) (out-line);
 
2322
    if ((buffer->length() + length) > opt_max_input_line)
 
2323
    {
 
2324
      status.setExitStatus(1);
 
2325
      put_info(_("Not found a delimiter within max_input_line of input"), INFO_ERROR, 0, 0);
 
2326
      return 1;
 
2327
    }
2322
2328
    if ((!*ml_comment || preserve_comments))
2323
2329
      buffer->append(line, length);
2324
2330
  }