~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/compression/uncompress.h

  • Committer: Monty Taylor
  • Date: 2009-05-06 04:36:52 UTC
  • mfrom: (997.8.3 fix-function-arguments)
  • mto: This revision was merged to the branch mainline in revision 1008.
  • Revision ID: mordred@inaugust.com-20090506043652-ykif4qv2m7h5zi4o
Merged Stewart from lp:~stewart-flamingspork/drizzle/fix-function-arguments 

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
public:
32
32
  Item_func_uncompress(): Item_str_func(){}
33
33
  void fix_length_and_dec(){ maybe_null= 1; max_length= MAX_BLOB_WIDTH; }
 
34
  bool check_argument_count(int n) { return (n==1); }
34
35
  const char *func_name() const{return "uncompress";}
35
36
  String *val_str(String *) ;
36
37
};