~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/nested_join.h

  • Committer: Brian Aker
  • Date: 2010-08-18 16:12:58 UTC
  • mto: This revision was merged to the branch mainline in revision 1720.
  • Revision ID: brian@tangent.org-20100818161258-1vm71da888dfvwsx
Remove the code surrounding stack trace.

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 */