~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/compression/uncompress.h

  • Committer: Mark Atwood
  • Date: 2011-08-17 19:14:47 UTC
  • mfrom: (2385.3.17 rf)
  • Revision ID: me@mark.atwood.name-20110817191447-h86yzddvycd0xmof
mergeĀ lp:~olafvdspek/drizzle/refactor6

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <drizzled/error.h>
23
23
#include <drizzled/function/str/strfunc.h>
24
24
 
25
 
class Item_func_uncompress: public drizzled::Item_str_func
 
25
class Item_func_uncompress : public drizzled::Item_str_func
26
26
{
27
27
  drizzled::String buffer;
28
28
public:
29
 
  Item_func_uncompress(): Item_str_func(){}
30
 
  virtual ~Item_func_uncompress() {}
31
29
  void fix_length_and_dec(){ maybe_null= 1; max_length= MAX_BLOB_WIDTH; }
32
30
  bool check_argument_count(int n) { return (n==1); }
33
31
  const char *func_name() const{return "uncompress";}