~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_scan.cc

  • Committer: Mark Atwood
  • Date: 2011-08-17 19:14:47 UTC
  • mfrom: (2385.3.17 rf)
  • Revision ID: me@mark.atwood.name-20110817191447-h86yzddvycd0xmof
mergeĀ lp:~olafvdspek/drizzle/refactor6

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
{
22
22
  info->nextpos=info->s->pack.header_length;    /* Read first record */
23
23
  info->lastinx= -1;                            /* Can't forward or backward */
24
 
  if (info->opt_flag & WRITE_CACHE_USED && flush_io_cache(&info->rec_cache))
 
24
  if (info->opt_flag & WRITE_CACHE_USED && info->rec_cache.flush())
25
25
    return(errno);
26
26
  return(0);
27
27
}