~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memcached_functions/memc_delete_by_key.h

  • Committer: Monty Taylor
  • Date: 2010-02-11 01:35:55 UTC
  • mfrom: (1289 staging)
  • mto: This revision was merged to the branch mainline in revision 1293.
  • Revision ID: mordred@inaugust.com-20100211013555-f9okqsgi91mwm4xu
Merged up with trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include <drizzled/item/func.h>
37
37
 
38
38
/* implements memc_delete */
39
 
class MemcachedDeleteByKey : public Item_int_func
 
39
class MemcachedDeleteByKey : public drizzled::Item_int_func
40
40
{
41
 
  String failure_buff;
42
 
  String value;
 
41
  drizzled::String failure_buff;
 
42
  drizzled::String value;
43
43
public:
44
44
  MemcachedDeleteByKey()
45
45
    :
46
46
      Item_int_func(),
47
 
      failure_buff("0", &my_charset_bin)
 
47
      failure_buff("0", &drizzled::my_charset_bin)
48
48
  {}
49
49
 
50
50
  const char *func_name() const