~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-02-03 21:54:38 UTC
  • mto: This revision was merged to the branch mainline in revision 1281.
  • Revision ID: brian@gaz-20100203215438-9ixkp214vio85mub
Fixing test cases/removed dead optimizer switches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_ENUM_NESTED_LOOP_STATE_H
21
21
#define DRIZZLED_ENUM_NESTED_LOOP_STATE_H
22
22
 
23
 
namespace drizzled
24
 
{
25
 
 
26
23
/** The states in which a nested loop join can be in */
27
24
enum enum_nested_loop_state
28
25
{
34
31
  NESTED_LOOP_CURSOR_LIMIT= 4
35
32
};
36
33
 
37
 
class Join;
 
34
class JOIN;
38
35
class JoinTable;
39
36
 
40
 
typedef enum_nested_loop_state (*Next_select_func)(Join *, JoinTable *, bool);
 
37
typedef enum_nested_loop_state (*Next_select_func)(JOIN *, JoinTable *, bool);
41
38
typedef int (*Read_record_func)(JoinTable *tab);
42
 
Next_select_func setup_end_select_func(Join *join);
43
 
 
44
 
} /* namespace drizzled */
 
39
Next_select_func setup_end_select_func(JOIN *join);
45
40
 
46
41
#endif /* DRIZZLED_ENUM_NESTED_LOOP_STATE_H */