~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Monty Taylor
  • Date: 2009-03-08 23:45:12 UTC
  • mto: (923.2.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 921.
  • Revision ID: mordred@inaugust.com-20090308234512-tqkygxtu1iaig23s
Removed C99 isnan() usage, which allows us to remove the util/math.{cc,h} workarounds. Yay for standards!

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()
40
33
    maybe_null=1;
41
34
    max_length=MAX_BLOB_WIDTH;
42
35
  }
 
36
  bool check_vcol_func_processor(unsigned char *)
 
37
  { return true; }
43
38
};
44
39
 
45
 
} /* namespace drizzled */
46
 
 
47
40
#endif /* DRIZZLED_FUNCTION_STR_LOAD_FILE_H */