~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/enum_nested_loop_state.h

  • Committer: Brian Aker
  • Date: 2010-05-19 00:35:41 UTC
  • mto: This revision was merged to the branch mainline in revision 1542.
  • Revision ID: brian@gaz-20100519003541-7ecxcuwv9klvzi8l
JOIN -> Join rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  NESTED_LOOP_CURSOR_LIMIT= 4
35
35
};
36
36
 
37
 
class JOIN;
 
37
class Join;
38
38
class JoinTable;
39
39
 
40
 
typedef enum_nested_loop_state (*Next_select_func)(JOIN *, JoinTable *, bool);
 
40
typedef enum_nested_loop_state (*Next_select_func)(Join *, JoinTable *, bool);
41
41
typedef int (*Read_record_func)(JoinTable *tab);
42
 
Next_select_func setup_end_select_func(JOIN *join);
 
42
Next_select_func setup_end_select_func(Join *join);
43
43
 
44
44
} /* namespace drizzled */
45
45