~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: patrick crews
  • Date: 2010-09-29 15:15:19 UTC
  • mfrom: (1099.4.188 drizzle)
  • Revision ID: gleebix@gmail.com-20100929151519-6mrmzd1ciw2p9nws
Tags: 2010.09.1802
Update translations

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
}