~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2009-11-18 06:24:48 UTC
  • mfrom: (1220.1.15 staging)
  • Revision ID: brian@gaz-20091118062448-o36lo3yv81sc6u9z
Merge Brian + Stewart

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
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 */