~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/range.h

  • Committer: LinuxJedi
  • Date: 2010-09-09 06:14:45 UTC
  • mto: (1750.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 1751.
  • Revision ID: linuxjedi@linuxjedi-laptop-20100909061445-1jz91d5eed932616
Fix another wrong header, grr...

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,