~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

Re-org'd the replication stuff into slots.

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()
42
35
  }
43
36
};
44
37
 
45
 
} /* namespace drizzled */
46
 
 
47
38
#endif /* DRIZZLED_FUNCTION_STR_LOAD_FILE_H */