~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join_cache.h

  • Committer: Padraig O'Sullivan
  • Date: 2009-09-13 00:53:34 UTC
  • mto: (1126.9.2 captain-20090915-01)
  • mto: This revision was merged to the branch mainline in revision 1133.
  • Revision ID: osullivan.padraig@gmail.com-20090913005334-6wio2sbjugskfbm3
Added calls to the connection start/end dtrace probes.

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 */