~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.cc

  • Committer: Brian Aker
  • Date: 2010-05-18 22:31:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1540.
  • Revision ID: brian@gaz-20100518223157-k0i4yxv6t03yrwyk
JoinCache rename.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3393
3393
  }
3394
3394
  if (join_tab->use_quick != 2 || test_if_quick_select(join_tab) <= 0)
3395
3395
  {
3396
 
    if (! store_record_in_cache(&join_tab->cache))
 
3396
    if (! join_tab->cache.store_record_in_cache())
3397
3397
      return NESTED_LOOP_OK;                     // There is more room in cache
3398
3398
    return flush_cached_records(join,join_tab,false);
3399
3399
  }