~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2011-01-06 05:17:09 UTC
  • Revision ID: brian@tangent.org-20110106051709-oa0se8ur02uc6i9o
Added native functions into the function table.

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
}