~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/range.h

  • Committer: David Shrewsbury
  • Date: 2010-10-05 20:38:57 UTC
  • mto: (1814.1.4 build)
  • mto: This revision was merged to the branch mainline in revision 1816.
  • Revision ID: shrewsbury.dave@gmail.com-20101005203857-v2xvi0zblliyxxf8
Add options to proto files for use when generating Java source files.

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,