~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_export.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_SELECT_EXPORT_H
22
22
#define DRIZZLED_SELECT_EXPORT_H
23
23
 
24
 
 
25
24
/*
26
25
 List of all possible characters of a numeric value text representation.
27
26
*/
28
27
#define NUMERIC_CHARS ".0123456789e+-"
29
28
 
 
29
namespace drizzled
 
30
{
30
31
 
31
32
class select_export :public select_to_file {
32
33
  uint32_t field_term_length;
58
59
  bool send_data(List<Item> &items);
59
60
};
60
61
 
 
62
} /* namespace drizzled */
 
63
 
61
64
#endif /* DRIZZLED_SELECT_EXPORT_H */