~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_load.cc

MergedĀ fromĀ Mats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
327
327
  }
328
328
 
329
329
  COPY_INFO info;
330
 
  memset((char*) &info, 0, sizeof(info));
 
330
  memset(&info, 0, sizeof(info));
331
331
  info.ignore= ignore;
332
332
  info.handle_duplicates=handle_duplicates;
333
333
  info.escape_char=escaped->length() ? (*escaped)[0] : INT_MAX;