~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Mark Atwood
  • Date: 2012-01-03 02:42:00 UTC
  • mfrom: (2482.1.2 drizzle-build)
  • Revision ID: me@mark.atwood.name-20120103024200-2kjnoze027o3dnwy
mergeĀ lp:~brianaker/drizzle/icc-warnings

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()); // Olaf: BUG?
 
32
  join_tab.read_first_record= join_read_system;
33
33
  join_tab.read_record.read_record= join_no_more_records;
34
34
}