~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_load.cc

  • Committer: Brian Aker
  • Date: 2011-01-26 06:48:39 UTC
  • mfrom: (2114.5.2 timestamp)
  • Revision ID: brian@tangent.org-20110126064839-nfcmqoqu08x22pdo
Merge in time tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
    table->cursor->ha_start_bulk_insert((ha_rows) 0);
366
366
    table->copy_blobs=1;
367
367
 
368
 
    session->abort_on_warning= true;
 
368
    session->setAbortOnWarning(true);
369
369
 
370
370
    if (!field_term->length() && !enclosed->length())
371
371
      error= read_fixed_length(session, info, table_list, fields_vars,
414
414
              session->transaction.stmt.hasModifiedNonTransData());
415
415
  table->cursor->ha_release_auto_increment();
416
416
  table->auto_increment_field_not_null= false;
417
 
  session->abort_on_warning= 0;
 
417
  session->setAbortOnWarning(false);
 
418
 
418
419
  return(error);
419
420
}
420
421