~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Olaf van der Spek
  • Date: 2011-06-28 15:16:47 UTC
  • mto: This revision was merged to the branch mainline in revision 2362.
  • Revision ID: olafvdspek@gmail.com-20110628151647-hmoqu8dvk8r31924
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
void optimizer::System::getStats(Table& table, JoinTable& join_tab)
30
30
{
31
31
  table.status= STATUS_NO_RECORD;
32
 
  join_tab.read_first_record= reinterpret_cast<Read_record_func>(join_tab.joinReadSystem());
 
32
  join_tab.read_first_record= reinterpret_cast<Read_record_func>(join_tab.joinReadSystem()); // Olaf: BUG?
33
33
  join_tab.read_record.read_record= join_no_more_records;
34
34
}