~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_to_file.h

  • Committer: Mark Atwood
  • Date: 2011-04-29 00:19:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2297.
  • Revision ID: me@mark.atwood.name-20110429001938-ps5i74hzcic7dvr3
Merge in Fixes of Brian's IOCACHE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
namespace internal
32
32
{
33
 
typedef struct st_io_cache IO_CACHE;
 
33
struct st_io_cache;
34
34
}
35
35
 
36
36
class select_to_file :
39
39
protected:
40
40
  file_exchange *exchange;
41
41
  int file;
42
 
  internal::IO_CACHE *cache;
 
42
  internal::io_cache_st *cache;
43
43
  ha_rows row_count;
44
44
  boost::filesystem::path path;
45
45