~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/nested_join.h

  • Committer: Monty Taylor
  • Date: 2008-11-16 06:29:53 UTC
  • mto: (584.1.9 devel)
  • mto: This revision was merged to the branch mainline in revision 589.
  • Revision ID: monty@inaugust.com-20081116062953-ivdltjmfe009b5fr
Moved stuff into item/

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <drizzled/item.h>
26
26
#include <drizzled/table_list.h>
27
27
 
28
 
#include <bitset>
29
 
 
30
 
namespace drizzled
31
 
{
32
 
 
33
28
struct nested_join_st
34
29
{
35
30
  /* list of elements in the nested join */
42
37
  table_map not_null_tables;
43
38
 
44
39
  /* the first nested table in the plan  */
45
 
  JoinTable *first_nested;
 
40
  struct st_join_table *first_nested;
46
41
 
47
42
  /*
48
43
    Used to count tables in the nested join in 2 isolated places:
54
49
  uint32_t counter_;
55
50
 
56
51
  /* Bit used to identify this nested join*/
57
 
  std::bitset<64> nj_map;
 
52
  nested_join_map nj_map;
58
53
 
59
54
  /*
60
55
    (Valid only for semi-join nests) Bitmap of tables outside the semi-join
65
60
  table_map sj_corr_tables;
66
61
 
67
62
  List<Item> sj_outer_expr_list;
68
 
 
69
 
  /**
70
 
     True if this join nest node is completely covered by the query execution
71
 
     plan. This means two things.
72
 
 
73
 
     1. All tables on its @c join_list are covered by the plan.
74
 
 
75
 
     2. All child join nest nodes are fully covered.
76
 
   */
77
 
  bool is_fully_covered() const { return join_list.elements == counter_; }
78
63
};
79
64
 
80
 
} /* namespace drizzled */
81
 
 
82
65
#endif /* DRIZZLED_NESTED_JOIN_H */