~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join_cache.h

Reverted my change to interval_list

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_JOIN_CACHE_H
21
21
#define DRIZZLED_JOIN_CACHE_H
22
22
 
23
 
namespace drizzled
24
 
{
 
23
#include "drizzled/server_includes.h"
25
24
 
26
25
class Field_blob;
27
26
typedef JoinTable JoinTable;
64
63
  uint32_t blobs;
65
64
  CACHE_FIELD *field;
66
65
  CACHE_FIELD **blob_ptr;
67
 
  optimizer::SqlSelect *select;
 
66
  SQL_SELECT *select;
68
67
} JOIN_CACHE;
69
68
 
70
69
int join_init_cache(Session *session, JoinTable *tables, uint32_t table_count);
72
71
void reset_cache_write(JOIN_CACHE *cache);
73
72
bool store_record_in_cache(JOIN_CACHE *cache);
74
73
 
75
 
} /* namespace drizzled */
76
 
 
77
74
#endif /* DRIZZLED_JOIN_CACHE_H */