~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/join_cache.h

  • Committer: Brian Aker
  • Date: 2010-05-18 22:31:57 UTC
  • mto: This revision was merged to the branch mainline in revision 1540.
  • Revision ID: brian@gaz-20100518223157-k0i4yxv6t03yrwyk
JoinCache rename.

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
  CacheField *field;
66
66
  CacheField **blob_ptr;
67
67
  optimizer::SqlSelect *select;
 
68
 
 
69
  void reset_cache_read();
 
70
  void reset_cache_write();
 
71
  bool store_record_in_cache();
68
72
};
69
73
 
70
74
int join_init_cache(Session *session, JoinTable *tables, uint32_t table_count);
71
 
void reset_cache_read(JoinCache *cache);
72
 
void reset_cache_write(JoinCache *cache);
73
 
bool store_record_in_cache(JoinCache *cache);
74
75
 
75
76
} /* namespace drizzled */
76
77