~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Jay Pipes
  • Date: 2009-02-04 15:44:25 UTC
  • mfrom: (829 drizzle)
  • mto: This revision was merged to the branch mainline in revision 830.
  • Revision ID: jpipes@serialcoder-20090204154425-th8xfk2ujz2y8xwg
Merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
358
358
int rr_sequential(READ_RECORD *info)
359
359
{
360
360
  int tmp;
361
 
  while ((tmp=info->file->rnd_next(info->record)))
 
361
  while ((tmp= info->file->rnd_next(info->record)))
362
362
  {
363
363
    if (info->session->killed)
364
364
    {
366
366
      return 1;
367
367
    }
368
368
    /*
 
369
      TODO> Fix this so that engine knows how to behave on its own.
369
370
      rnd_next can return RECORD_DELETED for MyISAM when one thread is
370
371
      reading and another deleting without locks.
371
372
    */