item_strfunc.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:20k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* This file defines all string functions */
  14. #ifdef USE_PRAGMA_INTERFACE
  15. #pragma interface /* gcc class implementation */
  16. #endif
  17. class Item_str_func :public Item_func
  18. {
  19. public:
  20.   Item_str_func() :Item_func() { decimals=NOT_FIXED_DEC; }
  21.   Item_str_func(Item *a) :Item_func(a) {decimals=NOT_FIXED_DEC; }
  22.   Item_str_func(Item *a,Item *b) :Item_func(a,b) { decimals=NOT_FIXED_DEC; }
  23.   Item_str_func(Item *a,Item *b,Item *c) :Item_func(a,b,c) { decimals=NOT_FIXED_DEC; }
  24.   Item_str_func(Item *a,Item *b,Item *c,Item *d) :Item_func(a,b,c,d) {decimals=NOT_FIXED_DEC; }
  25.   Item_str_func(Item *a,Item *b,Item *c,Item *d, Item* e) :Item_func(a,b,c,d,e) {decimals=NOT_FIXED_DEC; }
  26.   Item_str_func(List<Item> &list) :Item_func(list) {decimals=NOT_FIXED_DEC; }
  27.   longlong val_int();
  28.   double val();
  29.   enum Item_result result_type () const { return STRING_RESULT; }
  30.   void left_right_max_length();
  31. };
  32. class Item_func_md5 :public Item_str_func
  33. {
  34.   String tmp_value;
  35. public:
  36.   Item_func_md5(Item *a) :Item_str_func(a) {}
  37.   String *val_str(String *);
  38.   void fix_length_and_dec();
  39.   const char *func_name() const { return "md5"; }
  40. };
  41. class Item_func_sha :public Item_str_func
  42. {
  43. public:
  44.   Item_func_sha(Item *a) :Item_str_func(a) {}  
  45.   String *val_str(String *);    
  46.   void fix_length_and_dec();      
  47.   const char *func_name() const { return "sha"; }
  48. };
  49. class Item_func_aes_encrypt :public Item_str_func
  50. {
  51. public:
  52.   Item_func_aes_encrypt(Item *a, Item *b) :Item_str_func(a,b) {}
  53.   String *val_str(String *);
  54.   void fix_length_and_dec();
  55.   const char *func_name() const { return "aes_encrypt"; }
  56. };
  57. class Item_func_aes_decrypt :public Item_str_func
  58. {
  59. public:
  60.   Item_func_aes_decrypt(Item *a, Item *b) :Item_str_func(a,b) {}
  61.   String *val_str(String *);
  62.   void fix_length_and_dec();
  63.   const char *func_name() const { return "aes_decrypt"; }
  64. };
  65. class Item_func_concat :public Item_str_func
  66. {
  67.   String tmp_value;
  68. public:
  69.   Item_func_concat(List<Item> &list) :Item_str_func(list) {}
  70.   Item_func_concat(Item *a,Item *b) :Item_str_func(a,b) {}
  71.   String *val_str(String *);
  72.   void fix_length_and_dec();
  73.   const char *func_name() const { return "concat"; }
  74. };
  75. class Item_func_concat_ws :public Item_str_func
  76. {
  77.   String tmp_value;
  78. public:
  79.   Item_func_concat_ws(List<Item> &list) :Item_str_func(list) {}
  80.   String *val_str(String *);
  81.   void fix_length_and_dec();
  82.   const char *func_name() const { return "concat_ws"; }
  83.   table_map not_null_tables() const { return 0; }
  84. };
  85. class Item_func_reverse :public Item_str_func
  86. {
  87. public:
  88.   Item_func_reverse(Item *a) :Item_str_func(a) {}
  89.   String *val_str(String *);
  90.   void fix_length_and_dec();
  91.   const char *func_name() const { return "reverse"; }
  92. };
  93. class Item_func_replace :public Item_str_func
  94. {
  95.   String tmp_value,tmp_value2;
  96. public:
  97.   Item_func_replace(Item *org,Item *find,Item *replace)
  98.     :Item_str_func(org,find,replace) {}
  99.   String *val_str(String *);
  100.   void fix_length_and_dec();
  101.   const char *func_name() const { return "replace"; }
  102. };
  103. class Item_func_insert :public Item_str_func
  104. {
  105.   String tmp_value;
  106. public:
  107.   Item_func_insert(Item *org,Item *start,Item *length,Item *new_str)
  108.     :Item_str_func(org,start,length,new_str) {}
  109.   String *val_str(String *);
  110.   void fix_length_and_dec();
  111.   const char *func_name() const { return "insert"; }
  112. };
  113. class Item_str_conv :public Item_str_func
  114. {
  115. public:
  116.   Item_str_conv(Item *item) :Item_str_func(item) {}
  117.   void fix_length_and_dec()
  118.   {
  119.     collation.set(args[0]->collation);
  120.     max_length = args[0]->max_length;
  121.   }
  122. };
  123. class Item_func_lcase :public Item_str_conv
  124. {
  125. public:
  126.   Item_func_lcase(Item *item) :Item_str_conv(item) {}
  127.   String *val_str(String *);
  128.   const char *func_name() const { return "lcase"; }
  129. };
  130. class Item_func_ucase :public Item_str_conv
  131. {
  132. public:
  133.   Item_func_ucase(Item *item) :Item_str_conv(item) {}
  134.   String *val_str(String *);
  135.   const char *func_name() const { return "ucase"; }
  136. };
  137. class Item_func_left :public Item_str_func
  138. {
  139.   String tmp_value;
  140. public:
  141.   Item_func_left(Item *a,Item *b) :Item_str_func(a,b) {}
  142.   String *val_str(String *);
  143.   void fix_length_and_dec();
  144.   const char *func_name() const { return "left"; }
  145. };
  146. class Item_func_right :public Item_str_func
  147. {
  148.   String tmp_value;
  149. public:
  150.   Item_func_right(Item *a,Item *b) :Item_str_func(a,b) {}
  151.   String *val_str(String *);
  152.   void fix_length_and_dec();
  153.   const char *func_name() const { return "right"; }
  154. };
  155. class Item_func_substr :public Item_str_func
  156. {
  157.   String tmp_value;
  158. public:
  159.   Item_func_substr(Item *a,Item *b) :Item_str_func(a,b) {}
  160.   Item_func_substr(Item *a,Item *b,Item *c) :Item_str_func(a,b,c) {}
  161.   String *val_str(String *);
  162.   void fix_length_and_dec();
  163.   const char *func_name() const { return "substr"; }
  164. };
  165. class Item_func_substr_index :public Item_str_func
  166. {
  167.   String tmp_value;
  168. public:
  169.   Item_func_substr_index(Item *a,Item *b,Item *c) :Item_str_func(a,b,c) {}
  170.   String *val_str(String *);
  171.   void fix_length_and_dec();
  172.   const char *func_name() const { return "substr_index"; }
  173. };
  174. class Item_func_trim :public Item_str_func
  175. {
  176. protected:
  177.   String tmp_value;
  178.   String remove;
  179. public:
  180.   Item_func_trim(Item *a,Item *b) :Item_str_func(a,b) {}
  181.   Item_func_trim(Item *a) :Item_str_func(a) {}
  182.   String *val_str(String *);
  183.   void fix_length_and_dec();
  184.   const char *func_name() const { return "trim"; }
  185. };
  186. class Item_func_ltrim :public Item_func_trim
  187. {
  188. public:
  189.   Item_func_ltrim(Item *a,Item *b) :Item_func_trim(a,b) {}
  190.   Item_func_ltrim(Item *a) :Item_func_trim(a) {}
  191.   String *val_str(String *);
  192.   const char *func_name() const { return "ltrim"; }
  193. };
  194. class Item_func_rtrim :public Item_func_trim
  195. {
  196. public:
  197.   Item_func_rtrim(Item *a,Item *b) :Item_func_trim(a,b) {}
  198.   Item_func_rtrim(Item *a) :Item_func_trim(a) {}
  199.   String *val_str(String *);
  200.   const char *func_name() const { return "rtrim"; }
  201. };
  202. /*
  203.   Item_func_password -- new (4.1.1) PASSWORD() function implementation.
  204.   Returns strcat('*', octet2hex(sha1(sha1(password)))). '*' stands for new
  205.   password format, sha1(sha1(password) is so-called hash_stage2 value.
  206.   Length of returned string is always 41 byte. To find out how entire
  207.   authentification procedure works, see comments in password.c.
  208. */
  209. class Item_func_password :public Item_str_func
  210. {
  211.   char tmp_value[SCRAMBLED_PASSWORD_CHAR_LENGTH+1]; 
  212. public:
  213.   Item_func_password(Item *a) :Item_str_func(a) {}
  214.   String *val_str(String *str);
  215.   void fix_length_and_dec() { max_length= SCRAMBLED_PASSWORD_CHAR_LENGTH; }
  216.   const char *func_name() const { return "password"; }
  217.   static char *alloc(THD *thd, const char *password);
  218. };
  219. /*
  220.   Item_func_old_password -- PASSWORD() implementation used in MySQL 3.21 - 4.0
  221.   compatibility mode. This item is created in sql_yacc.yy when
  222.   'old_passwords' session variable is set, and to handle OLD_PASSWORD()
  223.   function.
  224. */
  225. class Item_func_old_password :public Item_str_func
  226. {
  227.   char tmp_value[SCRAMBLED_PASSWORD_CHAR_LENGTH_323+1];
  228. public:
  229.   Item_func_old_password(Item *a) :Item_str_func(a) {}
  230.   String *val_str(String *str);
  231.   void fix_length_and_dec() { max_length= SCRAMBLED_PASSWORD_CHAR_LENGTH_323; } 
  232.   const char *func_name() const { return "old_password"; }
  233.   static char *alloc(THD *thd, const char *password);
  234. };
  235. class Item_func_des_encrypt :public Item_str_func
  236. {
  237.   String tmp_value;
  238. public:
  239.   Item_func_des_encrypt(Item *a) :Item_str_func(a) {}
  240.   Item_func_des_encrypt(Item *a, Item *b): Item_str_func(a,b) {}
  241.   String *val_str(String *);
  242.   void fix_length_and_dec()
  243.   { maybe_null=1; max_length = args[0]->max_length+8; }
  244.   const char *func_name() const { return "des_encrypt"; }
  245. };
  246. class Item_func_des_decrypt :public Item_str_func
  247. {
  248.   String tmp_value;
  249. public:
  250.   Item_func_des_decrypt(Item *a) :Item_str_func(a) {}
  251.   Item_func_des_decrypt(Item *a, Item *b): Item_str_func(a,b) {}
  252.   String *val_str(String *);
  253.   void fix_length_and_dec() { maybe_null=1; max_length = args[0]->max_length; }
  254.   const char *func_name() const { return "des_decrypt"; }
  255. };
  256. class Item_func_encrypt :public Item_str_func
  257. {
  258.   String tmp_value;
  259. public:
  260.   Item_func_encrypt(Item *a) :Item_str_func(a) {}
  261.   Item_func_encrypt(Item *a, Item *b): Item_str_func(a,b) {}
  262.   String *val_str(String *);
  263.   void fix_length_and_dec() { maybe_null=1; max_length = 13; }
  264.   const char *func_name() const { return "ecrypt"; }
  265. };
  266. #include "sql_crypt.h"
  267. class Item_func_encode :public Item_str_func
  268. {
  269.  protected:
  270.   SQL_CRYPT sql_crypt;
  271. public:
  272.   Item_func_encode(Item *a, char *seed):
  273.     Item_str_func(a),sql_crypt(seed) {}
  274.   String *val_str(String *);
  275.   void fix_length_and_dec();
  276.   const char *func_name() const { return "encode"; }
  277. };
  278. class Item_func_decode :public Item_func_encode
  279. {
  280. public:
  281.   Item_func_decode(Item *a, char *seed): Item_func_encode(a,seed) {}
  282.   String *val_str(String *);
  283.   const char *func_name() const { return "decode"; }
  284. };
  285. class Item_func_sysconst :public Item_str_func
  286. {
  287. public:
  288.   Item_func_sysconst()
  289.   { collation.set(system_charset_info,DERIVATION_SYSCONST); }
  290.   Item *safe_charset_converter(CHARSET_INFO *tocs);
  291. };
  292. class Item_func_database :public Item_func_sysconst
  293. {
  294. public:
  295.   Item_func_database() :Item_func_sysconst() {}
  296.   String *val_str(String *);
  297.   void fix_length_and_dec()
  298.   {
  299.     max_length= MAX_FIELD_NAME * system_charset_info->mbmaxlen;
  300.     maybe_null=1;
  301.   }
  302.   const char *func_name() const { return "database"; }
  303. };
  304. class Item_func_user :public Item_func_sysconst
  305. {
  306. public:
  307.   Item_func_user() :Item_func_sysconst() {}
  308.   String *val_str(String *);
  309.   void fix_length_and_dec() 
  310.   { 
  311.     max_length= (USERNAME_LENGTH+HOSTNAME_LENGTH+1)*system_charset_info->mbmaxlen;
  312.   }
  313.   const char *func_name() const { return "user"; }
  314. };
  315. class Item_func_soundex :public Item_str_func
  316. {
  317.   String tmp_value;
  318. public:
  319.   Item_func_soundex(Item *a) :Item_str_func(a) {}
  320.   String *val_str(String *);
  321.   void fix_length_and_dec();
  322.   const char *func_name() const { return "soundex"; }
  323. };
  324. class Item_func_elt :public Item_str_func
  325. {
  326. public:
  327.   Item_func_elt(List<Item> &list) :Item_str_func(list) {}
  328.   double val();
  329.   longlong val_int();
  330.   String *val_str(String *str);
  331.   void fix_length_and_dec();
  332.   const char *func_name() const { return "elt"; }
  333. };
  334. class Item_func_make_set :public Item_str_func
  335. {
  336.   Item *item;
  337.   String tmp_str;
  338. public:
  339.   Item_func_make_set(Item *a,List<Item> &list) :Item_str_func(list),item(a) {}
  340.   String *val_str(String *str);
  341.   bool fix_fields(THD *thd, TABLE_LIST *tlist, Item **ref)
  342.   {
  343.     DBUG_ASSERT(fixed == 0);
  344.     return (!item->fixed &&
  345.             item->fix_fields(thd, tlist, &item) ||
  346.     item->check_cols(1) ||
  347.     Item_func::fix_fields(thd, tlist, ref));
  348.   }
  349.   void split_sum_func(THD *thd, Item **ref_pointer_array, List<Item> &fields);
  350.   void fix_length_and_dec();
  351.   void update_used_tables();
  352.   const char *func_name() const { return "make_set"; }
  353.   bool walk(Item_processor processor, byte *arg)
  354.   {
  355.     return item->walk(processor, arg) ||
  356.       Item_str_func::walk(processor, arg);
  357.   }
  358.   void print(String *str);
  359. };
  360. class Item_func_format :public Item_str_func
  361. {
  362.   String tmp_str;
  363. public:
  364.   Item_func_format(Item *org,int dec);
  365.   String *val_str(String *);
  366.   void fix_length_and_dec()
  367.   {
  368.     collation.set(default_charset());
  369.     max_length=args[0]->max_length+(args[0]->max_length-args[0]->decimals)/3;
  370.   }
  371.   const char *func_name() const { return "format"; }
  372.   void print(String *);
  373. };
  374. class Item_func_char :public Item_str_func
  375. {
  376. public:
  377.   Item_func_char(List<Item> &list) :Item_str_func(list)
  378.   { collation.set(default_charset()); }
  379.   Item_func_char(List<Item> &list, CHARSET_INFO *cs) :Item_str_func(list)
  380.   { collation.set(cs); }
  381.   String *val_str(String *);
  382.   void fix_length_and_dec() 
  383.   { 
  384.     maybe_null=0;
  385.     max_length=arg_count * collation.collation->mbmaxlen;
  386.   }
  387.   const char *func_name() const { return "char"; }
  388. };
  389. class Item_func_repeat :public Item_str_func
  390. {
  391.   String tmp_value;
  392. public:
  393.   Item_func_repeat(Item *arg1,Item *arg2) :Item_str_func(arg1,arg2) {}
  394.   String *val_str(String *);
  395.   void fix_length_and_dec();
  396.   const char *func_name() const { return "repeat"; }
  397. };
  398. class Item_func_rpad :public Item_str_func
  399. {
  400.   String tmp_value, rpad_str;
  401. public:
  402.   Item_func_rpad(Item *arg1,Item *arg2,Item *arg3)
  403.     :Item_str_func(arg1,arg2,arg3) {}
  404.   String *val_str(String *);
  405.   void fix_length_and_dec();
  406.   const char *func_name() const { return "rpad"; }
  407. };
  408. class Item_func_lpad :public Item_str_func
  409. {
  410.   String tmp_value, lpad_str;
  411. public:
  412.   Item_func_lpad(Item *arg1,Item *arg2,Item *arg3)
  413.     :Item_str_func(arg1,arg2,arg3) {}
  414.   String *val_str(String *);
  415.   void fix_length_and_dec();
  416.   const char *func_name() const { return "lpad"; }
  417. };
  418. class Item_func_conv :public Item_str_func
  419. {
  420. public:
  421.   Item_func_conv(Item *a,Item *b,Item *c) :Item_str_func(a,b,c) {}
  422.   const char *func_name() const { return "conv"; }
  423.   String *val_str(String *);
  424.   void fix_length_and_dec()
  425.   {
  426.     collation.set(default_charset());
  427.     decimals=0; max_length=64;
  428.   }
  429. };
  430. class Item_func_hex :public Item_str_func
  431. {
  432.   String tmp_value;
  433. public:
  434.   Item_func_hex(Item *a) :Item_str_func(a) {}
  435.   const char *func_name() const { return "hex"; }
  436.   String *val_str(String *);
  437.   void fix_length_and_dec()
  438.   {
  439.     collation.set(default_charset());
  440.     decimals=0;
  441.     max_length=args[0]->max_length*2*collation.collation->mbmaxlen;
  442.   }
  443. };
  444. class Item_func_unhex :public Item_str_func
  445. {
  446.   String tmp_value;
  447. public:
  448.   Item_func_unhex(Item *a) :Item_str_func(a) {}
  449.   const char *func_name() const { return "unhex"; }
  450.   String *val_str(String *);
  451.   void fix_length_and_dec()
  452.   {
  453.     collation.set(&my_charset_bin);
  454.     decimals=0;
  455.     max_length=(1+args[0]->max_length)/2;
  456.   }
  457. };
  458. class Item_func_binary :public Item_str_func
  459. {
  460. public:
  461.   Item_func_binary(Item *a) :Item_str_func(a) {}
  462.   String *val_str(String *a)
  463.   {
  464.     DBUG_ASSERT(fixed == 1);
  465.     String *tmp=args[0]->val_str(a);
  466.     null_value=args[0]->null_value;
  467.     if (tmp)
  468.       tmp->set_charset(&my_charset_bin);
  469.     return tmp;
  470.   }
  471.   void fix_length_and_dec()
  472.   {
  473.     collation.set(&my_charset_bin);
  474.     max_length=args[0]->max_length;
  475.   }
  476.   void print(String *str);
  477. };
  478. class Item_load_file :public Item_str_func
  479. {
  480.   String tmp_value;
  481. public:
  482.   Item_load_file(Item *a) :Item_str_func(a) {}
  483.   String *val_str(String *);
  484.   const char *func_name() const { return "load_file"; }
  485.   void fix_length_and_dec()
  486.   {
  487.     collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
  488.     maybe_null=1;
  489.     max_length=MAX_BLOB_WIDTH;
  490.   }
  491. };
  492. class Item_func_export_set: public Item_str_func
  493. {
  494.  public:
  495.   Item_func_export_set(Item *a,Item *b,Item* c) :Item_str_func(a,b,c) {}
  496.   Item_func_export_set(Item *a,Item *b,Item* c,Item* d) :Item_str_func(a,b,c,d) {}
  497.   Item_func_export_set(Item *a,Item *b,Item* c,Item* d,Item* e) :Item_str_func(a,b,c,d,e) {}
  498.   String  *val_str(String *str);
  499.   void fix_length_and_dec();
  500.   const char *func_name() const { return "export_set"; }
  501. };
  502. class Item_func_inet_ntoa : public Item_str_func
  503. {
  504. public:
  505.   Item_func_inet_ntoa(Item *a) :Item_str_func(a)
  506.     {
  507.     }
  508.   String* val_str(String* str);
  509.   const char *func_name() const { return "inet_ntoa"; }
  510.   void fix_length_and_dec() { decimals = 0; max_length=3*8+7; }
  511. };
  512. class Item_func_quote :public Item_str_func
  513. {
  514.   String tmp_value;
  515. public:
  516.   Item_func_quote(Item *a) :Item_str_func(a) {}
  517.   const char *func_name() const { return "quote"; }
  518.   String *val_str(String *);
  519.   void fix_length_and_dec()
  520.   {
  521.     collation.set(args[0]->collation);
  522.     max_length= args[0]->max_length * 2 + 2;
  523.   }
  524. };
  525. class Item_func_conv_charset :public Item_str_func
  526. {
  527.   bool use_cached_value;
  528. public:
  529.   bool safe;
  530.   CHARSET_INFO *conv_charset; // keep it public
  531.   Item_func_conv_charset(Item *a, CHARSET_INFO *cs) :Item_str_func(a) 
  532.   { conv_charset= cs; use_cached_value= 0; safe= 0; }
  533.   Item_func_conv_charset(Item *a, CHARSET_INFO *cs, bool cache_if_const) 
  534.     :Item_str_func(a) 
  535.   {
  536.     DBUG_ASSERT(args[0]->fixed);
  537.     conv_charset= cs;
  538.     if (cache_if_const && args[0]->const_item())
  539.     {
  540.       uint errors= 0;
  541.       String tmp, *str= args[0]->val_str(&tmp);
  542.       if (!str || str_value.copy(str->ptr(), str->length(),
  543.                                  str->charset(), conv_charset, &errors))
  544.         null_value= 1;
  545.       use_cached_value= 1;
  546.       safe= (errors == 0);
  547.     }
  548.     else
  549.     {
  550.       use_cached_value= 0;
  551.       /*
  552.         Conversion from and to "binary" is safe.
  553.         Conversion to Unicode is safe.
  554.         Other kind of conversions are potentially lossy.
  555.       */
  556.       safe= (args[0]->collation.collation == &my_charset_bin ||
  557.              cs == &my_charset_bin ||
  558.              (cs->state & MY_CS_UNICODE));
  559.     }
  560.   }
  561.   String *val_str(String *);
  562.   void fix_length_and_dec();
  563.   const char *func_name() const { return "convert"; }
  564.   void print(String *str);
  565. };
  566. class Item_func_set_collation :public Item_str_func
  567. {
  568. public:
  569.   Item_func_set_collation(Item *a, Item *b) :Item_str_func(a,b) {};
  570.   String *val_str(String *);
  571.   void fix_length_and_dec();
  572.   bool eq(const Item *item, bool binary_cmp) const;
  573.   const char *func_name() const { return "collate"; }
  574.   void print(String *str) { print_op(str); }
  575. };
  576. class Item_func_charset :public Item_str_func
  577. {
  578. public:
  579.   Item_func_charset(Item *a) :Item_str_func(a) {}
  580.   String *val_str(String *);
  581.   const char *func_name() const { return "charset"; }
  582.   void fix_length_and_dec()
  583.   {
  584.      collation.set(system_charset_info);
  585.      max_length= 64 * collation.collation->mbmaxlen; // should be enough
  586.      maybe_null= 0;
  587.   };
  588.   table_map not_null_tables() const { return 0; }
  589. };
  590. class Item_func_collation :public Item_str_func
  591. {
  592. public:
  593.   Item_func_collation(Item *a) :Item_str_func(a) {}
  594.   String *val_str(String *);
  595.   const char *func_name() const { return "collation"; }
  596.   void fix_length_and_dec()
  597.   {
  598.      collation.set(system_charset_info);
  599.      max_length= 64 * collation.collation->mbmaxlen; // should be enough
  600.      maybe_null= 0;
  601.   };
  602.   table_map not_null_tables() const { return 0; }
  603. };
  604. class Item_func_crc32 :public Item_int_func
  605. {
  606.   String value;
  607. public:
  608.   Item_func_crc32(Item *a) :Item_int_func(a) {}
  609.   const char *func_name() const { return "crc32"; }
  610.   void fix_length_and_dec() { max_length=10; }
  611.   longlong val_int();
  612. };
  613. class Item_func_uncompressed_length : public Item_int_func
  614. {
  615.   String value;
  616. public:
  617.   Item_func_uncompressed_length(Item *a):Item_int_func(a){}
  618.   const char *func_name() const{return "uncompressed_length";}
  619.   void fix_length_and_dec() { max_length=10; }
  620.   longlong val_int();
  621. };
  622. #ifdef HAVE_COMPRESS
  623. #define ZLIB_DEPENDED_FUNCTION ;
  624. #else
  625. #define ZLIB_DEPENDED_FUNCTION { null_value=1; return 0; }
  626. #endif
  627. class Item_func_compress: public Item_str_func
  628. {
  629.   String buffer;
  630. public:
  631.   Item_func_compress(Item *a):Item_str_func(a){}
  632.   void fix_length_and_dec(){max_length= (args[0]->max_length*120)/100+12;}
  633.   const char *func_name() const{return "compress";}
  634.   String *val_str(String *) ZLIB_DEPENDED_FUNCTION
  635. };
  636. class Item_func_uncompress: public Item_str_func
  637. {
  638.   String buffer;
  639. public:
  640.   Item_func_uncompress(Item *a): Item_str_func(a){}
  641.   void fix_length_and_dec(){max_length= MAX_BLOB_WIDTH;}
  642.   const char *func_name() const{return "uncompress";}
  643.   String *val_str(String *) ZLIB_DEPENDED_FUNCTION
  644. };
  645. #define UUID_LENGTH (8+1+4+1+4+1+4+1+12)
  646. class Item_func_uuid: public Item_str_func
  647. {
  648. public:
  649.   Item_func_uuid(): Item_str_func() {}
  650.   void fix_length_and_dec() {
  651.     collation.set(system_charset_info);
  652.     max_length= UUID_LENGTH;
  653.   }
  654.   const char *func_name() const{ return "uuid"; }
  655.   String *val_str(String *);
  656. };