~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

MergedĀ fromĀ Mats.

Show diffs side-by-side

added added

removed removed

Lines of Context:
332
332
  /*
333
333
    Fill in the given fields and dump it to the table file
334
334
  */
335
 
  memset((char*) &info, 0, sizeof(info));
 
335
  memset(&info, 0, sizeof(info));
336
336
  info.ignore= ignore;
337
337
  info.handle_duplicates=duplic;
338
338
  info.update_fields= &update_fields;
1144
1144
   autoinc_value_of_last_inserted_row(0),
1145
1145
   insert_into_view(table_list_par && 0 != 0)
1146
1146
{
1147
 
  memset((char*) &info, 0, sizeof(info));
 
1147
  memset(&info, 0, sizeof(info));
1148
1148
  info.handle_duplicates= duplic;
1149
1149
  info.ignore= ignore_check_option_errors;
1150
1150
  info.update_fields= update_fields;