~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_to_file.h

  • Committer: Lee Bieber
  • Date: 2010-01-30 23:42:02 UTC
  • mto: This revision was merged to the branch mainline in revision 1282.
  • Revision ID: lbieber@lee-biebers-macbook-pro.local-20100130234202-sxmqfteqwiq15ptg
add target to japanese tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_SELECT_TO_FILE_H
22
22
#define DRIZZLED_SELECT_TO_FILE_H
23
23
 
24
 
#include <boost/filesystem.hpp>
25
 
 
26
 
namespace drizzled
27
 
{
28
 
 
29
 
namespace internal
30
 
{
31
24
typedef struct st_io_cache IO_CACHE;
32
 
}
33
25
 
34
 
class select_to_file :
35
 
  public select_result_interceptor
 
26
class select_to_file : public select_result_interceptor
36
27
{
37
28
protected:
38
29
  file_exchange *exchange;
39
30
  int file;
40
 
  internal::IO_CACHE *cache;
 
31
  IO_CACHE *cache;
41
32
  ha_rows row_count;
42
 
  boost::filesystem::path path;
 
33
  char path[FN_REFLEN];
43
34
 
44
35
public:
45
36
  select_to_file(file_exchange *ex);
49
40
  void cleanup();
50
41
};
51
42
 
52
 
} /* namespace drizzled */
53
43
 
54
44
#endif /* DRIZZLED_SELECT_TO_FILE_H */