~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/load_file.h

  • Committer: Lee
  • Date: 2009-01-01 17:36:53 UTC
  • mto: (758.1.3 devel)
  • mto: This revision was merged to the branch mainline in revision 759.
  • Revision ID: lbieber@lbieber-desktop-20090101173653-qo5945pnje5j3vuu
more header file cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_FUNCTION_STR_LOAD_FILE_H
21
21
#define DRIZZLED_FUNCTION_STR_LOAD_FILE_H
22
22
 
23
 
namespace drizzled
24
 
{
25
 
 
26
23
class Item_load_file :public Item_str_func
27
24
{
28
 
  Session &session;
29
25
  String tmp_value;
30
26
public:
31
 
  Item_load_file(Session &session_arg, Item *a) :
32
 
    Item_str_func(a),
33
 
    session(session_arg)
34
 
  {}
 
27
  Item_load_file(Item *a) :Item_str_func(a) {}
35
28
  String *val_str(String *);
36
29
  const char *func_name() const { return "load_file"; }
37
30
  void fix_length_and_dec()
40
33
    maybe_null=1;
41
34
    max_length=MAX_BLOB_WIDTH;
42
35
  }
 
36
  bool check_vcol_func_processor(unsigned char *int_arg __attribute__((unused)))
 
37
  { return true; }
43
38
};
44
39
 
45
 
} /* namespace drizzled */
46
 
 
47
40
#endif /* DRIZZLED_FUNCTION_STR_LOAD_FILE_H */