~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 02:13:21 UTC
  • mto: (2122.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2118.
  • Revision ID: brian@tangent.org-20110126021321-3vxltp6aianxs18a
Additional abstract around time (this also makes the abort_on_warnings in
session private).

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