~jaypipes/drizzle/split-xa-resource-manager

« back to all changes in this revision

Viewing changes to plugin/memcached_functions/memc_append.h

  • Committer: Jay Pipes
  • Date: 2010-02-06 01:51:20 UTC
  • mfrom: (1273.1.10 build)
  • Revision ID: jpipes@serialcoder-20100206015120-as4vb638inbzrb59
Merge trunk changes and resolve conflicts

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
  * @file
41
41
  * The memc_append UDF
42
42
  */
43
 
class MemcachedAppend : public Item_int_func
 
43
class MemcachedAppend : public drizzled::Item_int_func
44
44
{
45
 
  String value;
46
 
  String failure_buff;
 
45
  drizzled::String value;
 
46
  drizzled::String failure_buff;
47
47
public:
48
48
  MemcachedAppend()
49
49
    :
50
50
      Item_int_func(),
51
 
      failure_buff("failure ...", &my_charset_bin)
 
51
      failure_buff("failure ...", &drizzled::my_charset_bin)
52
52
  {}
53
53
 
54
54
  const char *func_name() const