~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/nested_join.h

  • Committer: Lee Bieber
  • Date: 2011-02-23 17:17:54 UTC
  • mfrom: (2194.1.3 build)
  • Revision ID: kalebral@gmail.com-20110223171754-5g62btbvgtzsev3n
Merge Stewart - 676770: Error log logging 'Sort aborted' messages when DML fails with ER_INVALID_ENUM_VALUE     
Merge Olaf - Use Item_equal::begin() and Use List::size()
Merge Olaf - Delete drizzled/strfunc.h

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
 
77
77
     2. All child join nest nodes are fully covered.
78
78
   */
79
 
  bool is_fully_covered() const { return join_list.elements == counter_; }
 
79
  bool is_fully_covered() const { return join_list.size() == counter_; }
80
80
};
81
81
 
82
82
} /* namespace drizzled */