~mordred/drizzle/codestyle

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Monty Taylor
  • Date: 2008-10-13 10:14:09 UTC
  • mfrom: (383.7.6 drizzle-virtual-columns)
  • mto: This revision was merged to the branch mainline in revision 511.
  • Revision ID: monty@inaugust.com-20081013101409-aszm0nonww0f07zd
Merged in Virtual Column work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
      break;
302
302
    }
303
303
  }
 
304
  update_virtual_fields_marked_for_write(info->table);
304
305
  return tmp;
305
306
}
306
307
 
373
374
      break;
374
375
    }
375
376
  }
 
377
  if (!tmp)
 
378
    update_virtual_fields_marked_for_write(info->table);
376
379
  return tmp;
377
380
}
378
381