24
24
#include <drizzled/item/func.h>
25
25
#include <drizzled/function/str/strfunc.h>
31
31
Item_func_compress():Item_str_func(){}
32
32
void fix_length_and_dec(){max_length= (args[0]->max_length*120)/100+12;}
33
33
const char *func_name() const{return "compress";}
34
34
bool check_argument_count(int n) { return (n==1); }
38
38
#endif /* PLUGIN_COMPRESSION_COMPRESS_H */