~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/range.h

  • Committer: Brian Aker
  • Date: 2010-09-09 21:45:53 UTC
  • mto: (1756.1.2 build) (1768.2.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 1757.
  • Revision ID: brian@tangent.org-20100909214553-e687rmf5zk9478on
Force unique to just use memory and let the OS handle paging.

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,