~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_to_file.h

  • Committer: Monty Taylor
  • Date: 2009-08-17 18:46:08 UTC
  • mto: (1182.1.1 staging)
  • mto: This revision was merged to the branch mainline in revision 1183.
  • Revision ID: mordred@inaugust.com-20090817184608-0b2emowpjr9m6le7
"Fixed" the deadlock test. I'd still like someone to look at what's going on here.

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
 
namespace drizzled
25
 
{
26
 
 
27
 
namespace internal
28
 
{
29
 
typedef struct st_io_cache IO_CACHE;
30
 
}
31
 
 
32
 
class select_to_file : public select_result_interceptor
33
 
{
 
24
class select_to_file :public select_result_interceptor {
34
25
protected:
35
26
  file_exchange *exchange;
36
 
  int file;
37
 
  internal::IO_CACHE *cache;
 
27
  File file;
 
28
  IO_CACHE cache;
38
29
  ha_rows row_count;
39
30
  char path[FN_REFLEN];
40
31
 
41
32
public:
42
 
  select_to_file(file_exchange *ex);
43
 
  virtual ~select_to_file();
 
33
  select_to_file(file_exchange *ex) :exchange(ex), file(-1),row_count(0L)
 
34
  { path[0]=0; }
 
35
  ~select_to_file();
44
36
  void send_error(uint32_t errcode,const char *err);
45
37
  bool send_eof();
46
38
  void cleanup();
47
39
};
48
40
 
49
 
} /* namespace drizzled */
50
41
 
51
42
#endif /* DRIZZLED_SELECT_TO_FILE_H */