~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/range.h

  • Committer: LinuxJedi
  • Date: 2010-08-12 17:36:08 UTC
  • mto: (1735.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1736.
  • Revision ID: linuxjedi@linuxjedi-laptop-20100812173608-ccr246iaa8gv3s97
Remove module pointer from registry when module doesn't load to avoid a double-free on shutdown.

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,