~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/quick_index_merge_select.h

  • Committer: Brian Aker
  • Date: 2010-10-08 20:13:50 UTC
  • mfrom: (1823.1.3 trunk-drizzle)
  • Revision ID: brian@tangent.org-20101008201350-bmjpgakk12zmyw10
Overall merge of Padraig

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
#include "drizzled/optimizer/range.h"
24
24
 
 
25
#include <boost/dynamic_bitset.hpp>
25
26
#include <vector>
26
27
 
27
28
namespace drizzled
126
127
 
127
128
  void add_keys_and_lengths(String *key_names, String *used_lengths);
128
129
  void add_info_string(String *str);
129
 
  bool is_keys_used(const MyBitmap *fields);
 
130
  bool is_keys_used(const boost::dynamic_bitset<>& fields);
130
131
 
131
132
  bool push_quick_back(QuickRangeSelect *quick_sel_range);
132
133