~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/optimizer/range.h

  • Committer: Tim Penhey
  • Date: 2010-01-20 02:39:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1275.
  • Revision ID: tim.penhey@canonical.com-20100120023901-8teeunid6gwlthzx
Add in a rot 13 function.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
#include <queue>
29
29
 
30
 
namespace drizzled
31
 
{
32
 
 
33
30
class JOIN;
34
 
class RorIntersectReadPlan; 
 
31
class TRP_ROR_INTERSECT; 
35
32
typedef class Item COND;
36
 
 
37
 
namespace internal
38
 
{
39
33
typedef struct st_io_cache IO_CACHE;
40
 
}
41
34
 
42
35
typedef struct st_handler_buffer HANDLER_BUFFER;
43
36
 
58
51
} KEY_PART;
59
52
 
60
53
 
 
54
namespace drizzled
 
55
{
 
56
 
61
57
namespace optimizer
62
58
{
63
59
 
288
284
 * The QuickSelectInterface member variable is the implementor
289
285
 * of the SELECT execution.
290
286
 */
291
 
class SqlSelect : public memory::SqlAlloc 
 
287
class SqlSelect : public drizzled::memory::SqlAlloc 
292
288
{
293
289
 public:
294
290
  QuickSelectInterface *quick; /**< If quick-select used */
295
291
  COND *cond; /**< where condition */
296
292
  Table *head;
297
 
  internal::IO_CACHE *file; /**< Positions to used records */
 
293
  IO_CACHE *file; /**< Positions to used records */
298
294
  ha_rows records; /**< Records in use if read from file */
299
295
  double read_time; /**< Time to read rows */
300
296
  key_map quick_keys; /**< Possible quick keys */
333
329
  NOTES
334
330
    The caller must call QUICK_SELECT::init for returned quick select.
335
331
 
336
 
    CAUTION! This function may change session->mem_root to a memory::Root which will be
 
332
    CAUTION! This function may change session->mem_root to a drizzled::memory::Root which will be
337
333
    deallocated when the returned quick select is deleted.
338
334
 
339
335
  RETURN
345
341
                                   SEL_ARG *key_tree, 
346
342
                                   uint32_t mrr_flags,
347
343
                                   uint32_t mrr_buf_size, 
348
 
                                   memory::Root *alloc);
 
344
                                   drizzled::memory::Root *alloc);
349
345
 
350
346
uint32_t get_index_for_order(Table *table, order_st *order, ha_rows limit);
351
347