~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Brian Aker
  • Date: 2009-02-02 18:19:36 UTC
  • mfrom: (820.1.14 nofrm)
  • Revision ID: brian@tangent.org-20090202181936-l03a2jb3vpndr1k3
Merge from Stewart.

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
    */