~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/nested_join.h

  • Committer: Patrick Crews
  • Date: 2010-07-19 23:41:14 UTC
  • mfrom: (1662.1.5 build)
  • Revision ID: gleebix@gmail.com-20100719234114-fvjg69on0x9tq0x6
Merge optimizer.test fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
  table_map sj_corr_tables;
66
66
 
67
67
  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_; }
68
78
};
69
79
 
70
80
} /* namespace drizzled */