~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/access_method/system.cc

  • Committer: Brian Aker
  • Date: 2010-12-19 06:20:54 UTC
  • mfrom: (2005.1.1 bug673105)
  • Revision ID: brian@tangent.org-20101219062054-1kt0l3dxs4z2z8md
Merge Dave.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
                                 JoinTable *join_tab)
31
31
{
32
32
  table->status= STATUS_NO_RECORD;
33
 
  join_tab->read_first_record= reinterpret_cast<Read_record_func>(join_tab->joinReadSystem());
 
33
  join_tab->read_first_record= join_read_system;
34
34
  join_tab->read_record.read_record= join_no_more_records;
35
35
  return false;
36
36
}