~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: David Shrewsbury
  • Date: 2010-11-15 15:29:16 UTC
  • mto: (1932.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1933.
  • Revision ID: shrewsbury.dave@gmail.com-20101115152916-cowsgsfm3sibys30
Move transaction_reader from drizzled/message to transaction_log plugin; also pulled transaction_reader file operations out into separate class.

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
}