~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/compression/uncompressed_length.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:
32
32
  Item_func_uncompressed_length():Item_int_func(){}
33
33
  const char *func_name() const{return "uncompressed_length";}
34
34
  void fix_length_and_dec() { max_length=10; }
 
35
  bool check_argument_count(int n) { return (n==1); }
35
36
  int64_t val_int();
36
37
};
37
38