~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/range.h

  • Committer: Andrew Hutchings
  • Date: 2010-09-26 08:33:47 UTC
  • mto: (1795.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1796.
  • Revision ID: andrew@linuxjedi.co.uk-20100926083347-fzsc9e7w0j4u7bj1
Disable boost:po allow_guessing which was making some wrong assumptions

Show diffs side-by-side

added added

removed removed

Lines of Context:
256
256
   * Returns true if any index used by this quick select
257
257
   * uses field which is marked in passed bitmap.
258
258
   */
259
 
  virtual bool is_keys_used(const boost::dynamic_bitset<>& fields);
 
259
  virtual bool is_keys_used(const MyBitmap *fields);
260
260
};
261
261
 
262
262
struct st_qsel_param;
345
345
                                   uint32_t mrr_buf_size, 
346
346
                                   memory::Root *alloc);
347
347
 
348
 
uint32_t get_index_for_order(Table *table, Order *order, ha_rows limit);
 
348
uint32_t get_index_for_order(Table *table, order_st *order, ha_rows limit);
349
349
 
350
350
SqlSelect *make_select(Table *head, 
351
351
                       table_map const_tables,