~jaypipes/drizzle/subscriber-plugin

« back to all changes in this revision

Viewing changes to drizzled/sql_update.cc

  • Committer: Brian Aker
  • Date: 2008-07-29 07:47:38 UTC
  • mfrom: (212.6.1 bzero-memset)
  • Revision ID: brian@tangent.org-20080729074738-lfzim6htapm42f2o
MergeĀ fromĀ Mats

Show diffs side-by-side

added added

removed removed

Lines of Context:
1289
1289
    temp_fields.concat(fields_for_table[cnt]);
1290
1290
 
1291
1291
    /* Make an unique key over the first field to avoid duplicated updates */
1292
 
    bzero((char*) &group, sizeof(group));
 
1292
    memset((char*) &group, 0, sizeof(group));
1293
1293
    group.asc= 1;
1294
1294
    group.item= (Item**) temp_fields.head_ref();
1295
1295