~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_functions/memc_replace.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#include <string>
39
39
 
40
40
/* implements memc_replace */
41
 
class MemcachedReplace: public Item_int_func
 
41
class MemcachedReplace: public drizzled::Item_int_func
42
42
{
43
 
  String failure_buff;
44
 
  String value;
 
43
  drizzled::String failure_buff;
 
44
  drizzled::String value;
45
45
public:
46
46
  MemcachedReplace()
47
47
    :
48
48
      Item_int_func(),
49
 
      failure_buff("0", &my_charset_bin)
 
49
      failure_buff("0", &drizzled::my_charset_bin)
50
50
  {}
51
51
 
52
52
  const char *func_name() const