~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_to_file.h

  • Committer: Tim Penhey
  • Date: 2010-01-20 02:39:01 UTC
  • mto: This revision was merged to the branch mainline in revision 1275.
  • Revision ID: tim.penhey@canonical.com-20100120023901-8teeunid6gwlthzx
Add in a rot 13 function.

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