~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_load.cc

  • Committer: David Shrewsbury
  • Date: 2010-08-19 13:47:21 UTC
  • mto: (1723.1.6 build)
  • mto: This revision was merged to the branch mainline in revision 1724.
  • Revision ID: shrewsbury.dave@gmail.com-20100819134721-3xvt7o5sk68aluo2
Remove incorrect casting of 8-byte numbers down to 4-bytes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
388
388
    error= -1;                          // Error on read
389
389
    goto err;
390
390
  }
391
 
  snprintf(name, sizeof(name), ER(ER_LOAD_INFO), (uint32_t) info.records, (uint32_t) info.deleted,
392
 
          (uint32_t) (info.records - info.copied), (uint32_t) session->cuted_fields);
 
391
  snprintf(name, sizeof(name), ER(ER_LOAD_INFO), info.records, info.deleted,
 
392
           (info.records - info.copied), session->cuted_fields);
393
393
 
394
394
  if (session->transaction.stmt.hasModifiedNonTransData())
395
395
    session->transaction.all.markModifiedNonTransData();