~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_load.cc

  • Committer: Monty Taylor
  • Date: 2010-08-21 00:40:40 UTC
  • mfrom: (1723.1.11 build)
  • Revision ID: mordred@inaugust.com-20100821004040-udj7wpfxtj0rgak1
Rollup of small patches.

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();