~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-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

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