2003-02-04 20:52:14 +01:00
|
|
|
/* Copyright (C) 2000-2003 MySQL AB
|
2001-09-25 20:31:02 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
2001-09-25 20:31:02 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2001-09-25 20:31:02 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
|
|
|
|
|
|
/* This file defines all string functions */
|
|
|
|
|
2005-05-04 15:05:56 +02:00
|
|
|
#ifdef USE_PRAGMA_INTERFACE
|
2000-07-31 21:29:14 +02:00
|
|
|
#pragma interface /* gcc class implementation */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class Item_str_func :public Item_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_str_func() :Item_func() { decimals=NOT_FIXED_DEC; }
|
|
|
|
Item_str_func(Item *a) :Item_func(a) {decimals=NOT_FIXED_DEC; }
|
|
|
|
Item_str_func(Item *a,Item *b) :Item_func(a,b) { decimals=NOT_FIXED_DEC; }
|
|
|
|
Item_str_func(Item *a,Item *b,Item *c) :Item_func(a,b,c) { decimals=NOT_FIXED_DEC; }
|
|
|
|
Item_str_func(Item *a,Item *b,Item *c,Item *d) :Item_func(a,b,c,d) {decimals=NOT_FIXED_DEC; }
|
|
|
|
Item_str_func(Item *a,Item *b,Item *c,Item *d, Item* e) :Item_func(a,b,c,d,e) {decimals=NOT_FIXED_DEC; }
|
|
|
|
Item_str_func(List<Item> &list) :Item_func(list) {decimals=NOT_FIXED_DEC; }
|
|
|
|
longlong val_int();
|
2004-11-11 19:39:35 +01:00
|
|
|
double val_real();
|
2000-07-31 21:29:14 +02:00
|
|
|
enum Item_result result_type () const { return STRING_RESULT; }
|
|
|
|
void left_right_max_length();
|
2005-11-07 09:34:19 +01:00
|
|
|
String *check_well_formed_result(String *str);
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_md5 :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_md5(Item *a) :Item_str_func(a) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "md5"; }
|
|
|
|
};
|
|
|
|
|
2002-08-08 19:49:06 +02:00
|
|
|
|
2002-06-11 11:37:48 +02:00
|
|
|
class Item_func_sha :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_sha(Item *a) :Item_str_func(a) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "sha"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_aes_encrypt :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_aes_encrypt(Item *a, Item *b) :Item_str_func(a,b) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "aes_encrypt"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_aes_decrypt :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_aes_decrypt(Item *a, Item *b) :Item_str_func(a,b) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "aes_decrypt"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
class Item_func_concat :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_concat(List<Item> &list) :Item_str_func(list) {}
|
|
|
|
Item_func_concat(Item *a,Item *b) :Item_str_func(a,b) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "concat"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_concat_ws :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
2004-10-28 08:43:31 +02:00
|
|
|
Item_func_concat_ws(List<Item> &list) :Item_str_func(list) {}
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
2002-12-26 00:28:59 +01:00
|
|
|
const char *func_name() const { return "concat_ws"; }
|
2005-06-29 11:40:25 +02:00
|
|
|
table_map not_null_tables() const { return 0; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_reverse :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_reverse(Item *a) :Item_str_func(a) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
2003-10-12 16:56:05 +02:00
|
|
|
const char *func_name() const { return "reverse"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_replace :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value,tmp_value2;
|
|
|
|
public:
|
|
|
|
Item_func_replace(Item *org,Item *find,Item *replace)
|
|
|
|
:Item_str_func(org,find,replace) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "replace"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_insert :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_insert(Item *org,Item *start,Item *length,Item *new_str)
|
|
|
|
:Item_str_func(org,start,length,new_str) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "insert"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_str_conv :public Item_str_func
|
|
|
|
{
|
2005-06-06 13:54:15 +02:00
|
|
|
protected:
|
|
|
|
uint multiply;
|
|
|
|
uint (*converter)(CHARSET_INFO *cs, char *src, uint srclen,
|
|
|
|
char *dst, uint dstlen);
|
|
|
|
String tmp_value;
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
|
|
|
Item_str_conv(Item *item) :Item_str_func(item) {}
|
2005-06-06 13:54:15 +02:00
|
|
|
String *val_str(String *);
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_lcase :public Item_str_conv
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_lcase(Item *item) :Item_str_conv(item) {}
|
|
|
|
const char *func_name() const { return "lcase"; }
|
2005-06-06 13:54:15 +02:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
|
|
|
collation.set(args[0]->collation);
|
|
|
|
multiply= collation.collation->casedn_multiply;
|
|
|
|
converter= collation.collation->cset->casedn;
|
|
|
|
max_length= args[0]->max_length * multiply;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_ucase :public Item_str_conv
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_ucase(Item *item) :Item_str_conv(item) {}
|
|
|
|
const char *func_name() const { return "ucase"; }
|
2005-06-06 13:54:15 +02:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
|
|
|
collation.set(args[0]->collation);
|
|
|
|
multiply= collation.collation->caseup_multiply;
|
|
|
|
converter= collation.collation->cset->caseup;
|
|
|
|
max_length= args[0]->max_length * multiply;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_left :public Item_str_func
|
|
|
|
{
|
2004-12-09 23:17:43 +01:00
|
|
|
String tmp_value;
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
|
|
|
Item_func_left(Item *a,Item *b) :Item_str_func(a,b) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "left"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_right :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_right(Item *a,Item *b) :Item_str_func(a,b) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "right"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_substr :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_substr(Item *a,Item *b) :Item_str_func(a,b) {}
|
|
|
|
Item_func_substr(Item *a,Item *b,Item *c) :Item_str_func(a,b,c) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "substr"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_substr_index :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_substr_index(Item *a,Item *b,Item *c) :Item_str_func(a,b,c) {}
|
|
|
|
String *val_str(String *);
|
2003-06-25 12:07:20 +02:00
|
|
|
void fix_length_and_dec();
|
2004-10-21 12:11:15 +02:00
|
|
|
const char *func_name() const { return "substring_index"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-03 13:57:14 +02:00
|
|
|
class Item_func_trim :public Item_str_func
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2003-06-03 13:57:14 +02:00
|
|
|
protected:
|
2000-07-31 21:29:14 +02:00
|
|
|
String tmp_value;
|
2003-06-03 13:57:14 +02:00
|
|
|
String remove;
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
2003-06-03 13:57:14 +02:00
|
|
|
Item_func_trim(Item *a,Item *b) :Item_str_func(a,b) {}
|
|
|
|
Item_func_trim(Item *a) :Item_str_func(a) {}
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2003-06-03 13:57:14 +02:00
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "trim"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-06-03 13:57:14 +02:00
|
|
|
class Item_func_ltrim :public Item_func_trim
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
public:
|
2003-06-03 13:57:14 +02:00
|
|
|
Item_func_ltrim(Item *a,Item *b) :Item_func_trim(a,b) {}
|
|
|
|
Item_func_ltrim(Item *a) :Item_func_trim(a) {}
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2003-06-03 13:57:14 +02:00
|
|
|
const char *func_name() const { return "ltrim"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
2003-06-03 13:57:14 +02:00
|
|
|
|
|
|
|
class Item_func_rtrim :public Item_func_trim
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
public:
|
2003-06-03 13:57:14 +02:00
|
|
|
Item_func_rtrim(Item *a,Item *b) :Item_func_trim(a,b) {}
|
|
|
|
Item_func_rtrim(Item *a) :Item_func_trim(a) {}
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2003-06-03 13:57:14 +02:00
|
|
|
const char *func_name() const { return "rtrim"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-07-01 21:40:59 +02:00
|
|
|
/*
|
|
|
|
Item_func_password -- new (4.1.1) PASSWORD() function implementation.
|
|
|
|
Returns strcat('*', octet2hex(sha1(sha1(password)))). '*' stands for new
|
|
|
|
password format, sha1(sha1(password) is so-called hash_stage2 value.
|
|
|
|
Length of returned string is always 41 byte. To find out how entire
|
2004-10-07 00:45:06 +02:00
|
|
|
authentication procedure works, see comments in password.c.
|
2003-07-01 21:40:59 +02:00
|
|
|
*/
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
class Item_func_password :public Item_str_func
|
|
|
|
{
|
2003-07-01 21:40:59 +02:00
|
|
|
char tmp_value[SCRAMBLED_PASSWORD_CHAR_LENGTH+1];
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
|
|
|
Item_func_password(Item *a) :Item_str_func(a) {}
|
2003-07-01 21:40:59 +02:00
|
|
|
String *val_str(String *str);
|
|
|
|
void fix_length_and_dec() { max_length= SCRAMBLED_PASSWORD_CHAR_LENGTH; }
|
2000-07-31 21:29:14 +02:00
|
|
|
const char *func_name() const { return "password"; }
|
2003-07-04 18:52:04 +02:00
|
|
|
static char *alloc(THD *thd, const char *password);
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
2002-10-06 11:42:16 +02:00
|
|
|
|
2003-07-01 21:40:59 +02:00
|
|
|
/*
|
|
|
|
Item_func_old_password -- PASSWORD() implementation used in MySQL 3.21 - 4.0
|
|
|
|
compatibility mode. This item is created in sql_yacc.yy when
|
2003-07-08 00:36:14 +02:00
|
|
|
'old_passwords' session variable is set, and to handle OLD_PASSWORD()
|
2003-07-01 21:40:59 +02:00
|
|
|
function.
|
|
|
|
*/
|
|
|
|
|
2002-10-06 11:42:16 +02:00
|
|
|
class Item_func_old_password :public Item_str_func
|
|
|
|
{
|
2003-07-01 21:40:59 +02:00
|
|
|
char tmp_value[SCRAMBLED_PASSWORD_CHAR_LENGTH_323+1];
|
2002-10-06 11:42:16 +02:00
|
|
|
public:
|
|
|
|
Item_func_old_password(Item *a) :Item_str_func(a) {}
|
2003-07-01 21:40:59 +02:00
|
|
|
String *val_str(String *str);
|
|
|
|
void fix_length_and_dec() { max_length= SCRAMBLED_PASSWORD_CHAR_LENGTH_323; }
|
2002-10-06 11:42:16 +02:00
|
|
|
const char *func_name() const { return "old_password"; }
|
2003-07-04 18:52:04 +02:00
|
|
|
static char *alloc(THD *thd, const char *password);
|
2002-10-06 11:42:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-11-06 21:57:14 +01:00
|
|
|
class Item_func_des_encrypt :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_des_encrypt(Item *a) :Item_str_func(a) {}
|
|
|
|
Item_func_des_encrypt(Item *a, Item *b): Item_str_func(a,b) {}
|
|
|
|
String *val_str(String *);
|
2001-12-13 01:31:19 +01:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{ maybe_null=1; max_length = args[0]->max_length+8; }
|
2001-11-09 06:49:57 +01:00
|
|
|
const char *func_name() const { return "des_encrypt"; }
|
2001-11-06 21:57:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_des_decrypt :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_des_decrypt(Item *a) :Item_str_func(a) {}
|
|
|
|
Item_func_des_decrypt(Item *a, Item *b): Item_str_func(a,b) {}
|
|
|
|
String *val_str(String *);
|
2001-11-26 14:54:33 +01:00
|
|
|
void fix_length_and_dec() { maybe_null=1; max_length = args[0]->max_length; }
|
2001-11-09 06:49:57 +01:00
|
|
|
const char *func_name() const { return "des_decrypt"; }
|
2001-11-06 21:57:14 +01:00
|
|
|
};
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
class Item_func_encrypt :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_encrypt(Item *a) :Item_str_func(a) {}
|
|
|
|
Item_func_encrypt(Item *a, Item *b): Item_str_func(a,b) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec() { maybe_null=1; max_length = 13; }
|
2005-06-23 23:24:11 +02:00
|
|
|
const char *func_name() const { return "encrypt"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#include "sql_crypt.h"
|
|
|
|
|
2003-10-12 16:56:05 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
class Item_func_encode :public Item_str_func
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
SQL_CRYPT sql_crypt;
|
|
|
|
public:
|
|
|
|
Item_func_encode(Item *a, char *seed):
|
|
|
|
Item_str_func(a),sql_crypt(seed) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
2003-10-12 16:56:05 +02:00
|
|
|
const char *func_name() const { return "encode"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
2003-10-12 16:56:05 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
class Item_func_decode :public Item_func_encode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_decode(Item *a, char *seed): Item_func_encode(a,seed) {}
|
|
|
|
String *val_str(String *);
|
2003-10-12 16:56:05 +02:00
|
|
|
const char *func_name() const { return "decode"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-03-04 11:20:49 +01:00
|
|
|
class Item_func_sysconst :public Item_str_func
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
public:
|
2005-03-04 11:20:49 +01:00
|
|
|
Item_func_sysconst()
|
|
|
|
{ collation.set(system_charset_info,DERIVATION_SYSCONST); }
|
|
|
|
Item *safe_charset_converter(CHARSET_INFO *tocs);
|
2005-07-15 23:01:44 +02:00
|
|
|
/*
|
|
|
|
Used to create correct Item name in new converted item in
|
|
|
|
safe_charset_converter, return string representation of this function
|
|
|
|
call
|
|
|
|
*/
|
|
|
|
virtual const char *fully_qualified_func_name() const = 0;
|
2005-03-04 11:20:49 +01:00
|
|
|
};
|
|
|
|
|
2005-07-15 23:01:44 +02:00
|
|
|
|
2005-03-04 11:20:49 +01:00
|
|
|
class Item_func_database :public Item_func_sysconst
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_database() :Item_func_sysconst() {}
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2004-07-16 13:21:58 +02:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2003-11-03 13:01:59 +01:00
|
|
|
max_length= MAX_FIELD_NAME * system_charset_info->mbmaxlen;
|
2004-07-16 13:21:58 +02:00
|
|
|
maybe_null=1;
|
2002-11-11 15:43:33 +01:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
const char *func_name() const { return "database"; }
|
2005-07-15 23:01:44 +02:00
|
|
|
const char *fully_qualified_func_name() const { return "database()"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
2005-07-15 23:01:44 +02:00
|
|
|
|
2005-03-04 11:20:49 +01:00
|
|
|
class Item_func_user :public Item_func_sysconst
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2005-07-15 23:01:44 +02:00
|
|
|
bool is_current;
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
2005-07-15 23:01:44 +02:00
|
|
|
Item_func_user(bool is_current_arg)
|
|
|
|
:Item_func_sysconst(), is_current(is_current_arg) {}
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2005-07-15 23:01:44 +02:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
|
|
|
max_length= ((USERNAME_LENGTH + HOSTNAME_LENGTH + 1) *
|
|
|
|
system_charset_info->mbmaxlen);
|
2002-11-11 15:43:33 +01:00
|
|
|
}
|
2005-07-15 23:01:44 +02:00
|
|
|
const char *func_name() const
|
|
|
|
{ return is_current ? "current_user" : "user"; }
|
|
|
|
const char *fully_qualified_func_name() const
|
|
|
|
{ return is_current ? "current_user()" : "user()"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_soundex :public Item_str_func
|
|
|
|
{
|
2001-12-13 14:53:18 +01:00
|
|
|
String tmp_value;
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
|
|
|
Item_func_soundex(Item *a) :Item_str_func(a) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "soundex"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_elt :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
2003-07-15 15:11:49 +02:00
|
|
|
Item_func_elt(List<Item> &list) :Item_str_func(list) {}
|
2004-11-11 19:39:35 +01:00
|
|
|
double val_real();
|
2000-07-31 21:29:14 +02:00
|
|
|
longlong val_int();
|
|
|
|
String *val_str(String *str);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "elt"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_make_set :public Item_str_func
|
|
|
|
{
|
|
|
|
Item *item;
|
|
|
|
String tmp_str;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Item_func_make_set(Item *a,List<Item> &list) :Item_str_func(list),item(a) {}
|
|
|
|
String *val_str(String *str);
|
2005-07-01 06:05:42 +02:00
|
|
|
bool fix_fields(THD *thd, Item **ref)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2004-03-17 13:26:26 +01:00
|
|
|
DBUG_ASSERT(fixed == 0);
|
2005-07-01 06:05:42 +02:00
|
|
|
return ((!item->fixed && item->fix_fields(thd, &item)) ||
|
2003-01-21 12:55:26 +01:00
|
|
|
item->check_cols(1) ||
|
2005-07-01 06:05:42 +02:00
|
|
|
Item_func::fix_fields(thd, ref));
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2004-10-08 17:13:09 +02:00
|
|
|
void split_sum_func(THD *thd, Item **ref_pointer_array, List<Item> &fields);
|
2000-07-31 21:29:14 +02:00
|
|
|
void fix_length_and_dec();
|
|
|
|
void update_used_tables();
|
|
|
|
const char *func_name() const { return "make_set"; }
|
2003-07-02 12:12:18 +02:00
|
|
|
|
|
|
|
bool walk(Item_processor processor, byte *arg)
|
|
|
|
{
|
|
|
|
return item->walk(processor, arg) ||
|
|
|
|
Item_str_func::walk(processor, arg);
|
|
|
|
}
|
2004-02-19 07:21:37 +01:00
|
|
|
Item *transform(Item_transformer transformer, byte *arg)
|
2003-11-27 02:23:52 +01:00
|
|
|
{
|
2004-02-19 07:21:37 +01:00
|
|
|
Item *new_item= item->transform(transformer, arg);
|
2003-11-27 02:23:52 +01:00
|
|
|
if (!new_item)
|
|
|
|
return 0;
|
|
|
|
item= new_item;
|
2004-02-19 07:21:37 +01:00
|
|
|
return Item_str_func::transform(transformer, arg);
|
2003-11-27 02:23:52 +01:00
|
|
|
}
|
2003-10-30 11:57:26 +01:00
|
|
|
void print(String *str);
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_format :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_str;
|
|
|
|
public:
|
|
|
|
Item_func_format(Item *org,int dec);
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(default_charset());
|
2000-07-31 21:29:14 +02:00
|
|
|
max_length=args[0]->max_length+(args[0]->max_length-args[0]->decimals)/3;
|
|
|
|
}
|
|
|
|
const char *func_name() const { return "format"; }
|
2003-10-30 11:57:26 +01:00
|
|
|
void print(String *);
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_char :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
2005-10-13 16:24:47 +02:00
|
|
|
Item_func_char(List<Item> &list) :Item_str_func(list)
|
|
|
|
{ collation.set(&my_charset_bin); }
|
|
|
|
Item_func_char(List<Item> &list, CHARSET_INFO *cs) :Item_str_func(list)
|
|
|
|
{ collation.set(cs); }
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2003-06-19 08:36:44 +02:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2005-10-13 16:24:47 +02:00
|
|
|
maybe_null=0;
|
|
|
|
max_length=arg_count * collation.collation->mbmaxlen;
|
2003-06-19 08:36:44 +02:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
const char *func_name() const { return "char"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_repeat :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_repeat(Item *arg1,Item *arg2) :Item_str_func(arg1,arg2) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "repeat"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_rpad :public Item_str_func
|
|
|
|
{
|
2003-12-04 11:12:01 +01:00
|
|
|
String tmp_value, rpad_str;
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
|
|
|
Item_func_rpad(Item *arg1,Item *arg2,Item *arg3)
|
|
|
|
:Item_str_func(arg1,arg2,arg3) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "rpad"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_lpad :public Item_str_func
|
|
|
|
{
|
2003-12-04 11:12:01 +01:00
|
|
|
String tmp_value, lpad_str;
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
|
|
|
Item_func_lpad(Item *arg1,Item *arg2,Item *arg3)
|
|
|
|
:Item_str_func(arg1,arg2,arg3) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "lpad"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_conv :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_conv(Item *a,Item *b,Item *c) :Item_str_func(a,b,c) {}
|
|
|
|
const char *func_name() const { return "conv"; }
|
|
|
|
String *val_str(String *);
|
2004-03-04 23:18:54 +01:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(default_charset());
|
2004-03-04 23:18:54 +01:00
|
|
|
decimals=0; max_length=64;
|
2003-06-19 08:36:44 +02:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
2001-12-13 14:53:18 +01:00
|
|
|
|
|
|
|
class Item_func_hex :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_hex(Item *a) :Item_str_func(a) {}
|
|
|
|
const char *func_name() const { return "hex"; }
|
|
|
|
String *val_str(String *);
|
2004-03-04 23:18:54 +01:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(default_charset());
|
2004-02-06 13:59:25 +01:00
|
|
|
decimals=0;
|
|
|
|
max_length=args[0]->max_length*2*collation.collation->mbmaxlen;
|
2003-06-19 08:36:44 +02:00
|
|
|
}
|
2001-12-13 14:53:18 +01:00
|
|
|
};
|
|
|
|
|
2004-03-04 23:18:54 +01:00
|
|
|
class Item_func_unhex :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_func_unhex(Item *a) :Item_str_func(a) {}
|
|
|
|
const char *func_name() const { return "unhex"; }
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
|
|
|
collation.set(&my_charset_bin);
|
|
|
|
decimals=0;
|
|
|
|
max_length=(1+args[0]->max_length)/2;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2001-12-13 14:53:18 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
class Item_func_binary :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_binary(Item *a) :Item_str_func(a) {}
|
2002-01-15 23:42:52 +01:00
|
|
|
String *val_str(String *a)
|
2002-09-18 01:00:56 +02:00
|
|
|
{
|
2004-03-18 14:14:36 +01:00
|
|
|
DBUG_ASSERT(fixed == 1);
|
2002-09-18 01:00:56 +02:00
|
|
|
String *tmp=args[0]->val_str(a);
|
|
|
|
null_value=args[0]->null_value;
|
2003-03-28 15:57:03 +01:00
|
|
|
if (tmp)
|
|
|
|
tmp->set_charset(&my_charset_bin);
|
2002-09-18 01:00:56 +02:00
|
|
|
return tmp;
|
2002-11-25 16:33:51 +01:00
|
|
|
}
|
2004-03-04 23:18:54 +01:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
|
|
|
collation.set(&my_charset_bin);
|
|
|
|
max_length=args[0]->max_length;
|
2002-10-25 10:58:32 +02:00
|
|
|
}
|
2003-10-12 16:56:05 +02:00
|
|
|
void print(String *str);
|
2005-06-17 16:27:47 +02:00
|
|
|
const char *func_name() const { return "cast_as_binary"; }
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_load_file :public Item_str_func
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
public:
|
|
|
|
Item_load_file(Item *a) :Item_str_func(a) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
const char *func_name() const { return "load_file"; }
|
|
|
|
void fix_length_and_dec()
|
2004-03-04 23:18:54 +01:00
|
|
|
{
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
|
2003-06-10 14:53:06 +02:00
|
|
|
maybe_null=1;
|
2002-10-25 10:58:32 +02:00
|
|
|
max_length=MAX_BLOB_WIDTH;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_export_set: public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_export_set(Item *a,Item *b,Item* c) :Item_str_func(a,b,c) {}
|
|
|
|
Item_func_export_set(Item *a,Item *b,Item* c,Item* d) :Item_str_func(a,b,c,d) {}
|
|
|
|
Item_func_export_set(Item *a,Item *b,Item* c,Item* d,Item* e) :Item_str_func(a,b,c,d,e) {}
|
|
|
|
String *val_str(String *str);
|
|
|
|
void fix_length_and_dec();
|
|
|
|
const char *func_name() const { return "export_set"; }
|
|
|
|
};
|
|
|
|
|
2002-08-22 15:12:45 +02:00
|
|
|
class Item_func_inet_ntoa : public Item_str_func
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_inet_ntoa(Item *a) :Item_str_func(a)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
String* val_str(String* str);
|
|
|
|
const char *func_name() const { return "inet_ntoa"; }
|
|
|
|
void fix_length_and_dec() { decimals = 0; max_length=3*8+7; }
|
|
|
|
};
|
2002-08-08 17:25:53 +02:00
|
|
|
|
|
|
|
class Item_func_quote :public Item_str_func
|
|
|
|
{
|
2005-02-02 03:29:10 +01:00
|
|
|
String tmp_value;
|
2002-08-08 17:25:53 +02:00
|
|
|
public:
|
|
|
|
Item_func_quote(Item *a) :Item_str_func(a) {}
|
|
|
|
const char *func_name() const { return "quote"; }
|
|
|
|
String *val_str(String *);
|
2004-02-27 20:30:08 +01:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(args[0]->collation);
|
2004-02-27 20:30:08 +01:00
|
|
|
max_length= args[0]->max_length * 2 + 2;
|
2003-06-10 11:54:03 +02:00
|
|
|
}
|
2002-08-08 17:25:53 +02:00
|
|
|
};
|
2002-08-30 11:40:40 +02:00
|
|
|
|
2002-03-29 15:22:21 +01:00
|
|
|
class Item_func_conv_charset :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
2005-11-10 15:12:22 +01:00
|
|
|
CHARSET_INFO *conv_charset; // keep it public
|
2004-02-27 20:30:08 +01:00
|
|
|
Item_func_conv_charset(Item *a, CHARSET_INFO *cs) :Item_str_func(a)
|
2002-08-22 15:12:45 +02:00
|
|
|
{ conv_charset=cs; }
|
2002-03-29 15:22:21 +01:00
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
2003-10-30 11:57:26 +01:00
|
|
|
const char *func_name() const { return "convert"; }
|
|
|
|
void print(String *str);
|
2002-03-29 15:22:21 +01:00
|
|
|
};
|
|
|
|
|
2002-08-22 15:12:45 +02:00
|
|
|
class Item_func_set_collation :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
2003-03-04 16:53:53 +01:00
|
|
|
Item_func_set_collation(Item *a, Item *b) :Item_str_func(a,b) {};
|
2002-08-22 15:12:45 +02:00
|
|
|
String *val_str(String *);
|
2003-03-21 14:21:45 +01:00
|
|
|
void fix_length_and_dec();
|
2002-08-26 14:33:44 +02:00
|
|
|
bool eq(const Item *item, bool binary_cmp) const;
|
2003-10-30 11:57:26 +01:00
|
|
|
const char *func_name() const { return "collate"; }
|
2005-06-17 16:27:47 +02:00
|
|
|
enum Functype func_type() const { return COLLATE_FUNC; }
|
2004-08-31 09:06:38 +02:00
|
|
|
void print(String *str);
|
2004-09-16 22:45:20 +02:00
|
|
|
Item_field *filed_for_view_update()
|
|
|
|
{
|
|
|
|
/* this function is transparent for view updating */
|
|
|
|
return args[0]->filed_for_view_update();
|
|
|
|
}
|
2002-08-22 15:12:45 +02:00
|
|
|
};
|
|
|
|
|
2002-06-20 20:26:04 +02:00
|
|
|
class Item_func_charset :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_charset(Item *a) :Item_str_func(a) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
const char *func_name() const { return "charset"; }
|
2004-02-27 20:30:08 +01:00
|
|
|
void fix_length_and_dec()
|
2002-06-20 20:26:04 +02:00
|
|
|
{
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(system_charset_info);
|
2004-02-11 13:53:39 +01:00
|
|
|
max_length= 64 * collation.collation->mbmaxlen; // should be enough
|
2005-03-24 15:10:46 +01:00
|
|
|
maybe_null= 0;
|
2002-06-20 20:26:04 +02:00
|
|
|
};
|
2005-03-24 15:10:46 +01:00
|
|
|
table_map not_null_tables() const { return 0; }
|
2002-06-20 20:26:04 +02:00
|
|
|
};
|
|
|
|
|
2003-02-27 13:53:10 +01:00
|
|
|
class Item_func_collation :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_collation(Item *a) :Item_str_func(a) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
const char *func_name() const { return "collation"; }
|
2003-08-21 16:15:06 +02:00
|
|
|
void fix_length_and_dec()
|
2003-02-27 13:53:10 +01:00
|
|
|
{
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(system_charset_info);
|
2004-02-11 13:53:39 +01:00
|
|
|
max_length= 64 * collation.collation->mbmaxlen; // should be enough
|
2005-03-24 15:10:46 +01:00
|
|
|
maybe_null= 0;
|
2003-02-27 13:53:10 +01:00
|
|
|
};
|
2005-03-24 15:10:46 +01:00
|
|
|
table_map not_null_tables() const { return 0; }
|
2003-02-27 13:53:10 +01:00
|
|
|
};
|
2003-08-21 16:15:06 +02:00
|
|
|
|
2003-08-21 18:30:43 +02:00
|
|
|
class Item_func_crc32 :public Item_int_func
|
|
|
|
{
|
|
|
|
String value;
|
|
|
|
public:
|
|
|
|
Item_func_crc32(Item *a) :Item_int_func(a) {}
|
|
|
|
const char *func_name() const { return "crc32"; }
|
|
|
|
void fix_length_and_dec() { max_length=10; }
|
|
|
|
longlong val_int();
|
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_uncompressed_length : public Item_int_func
|
|
|
|
{
|
|
|
|
String value;
|
|
|
|
public:
|
|
|
|
Item_func_uncompressed_length(Item *a):Item_int_func(a){}
|
|
|
|
const char *func_name() const{return "uncompressed_length";}
|
|
|
|
void fix_length_and_dec() { max_length=10; }
|
|
|
|
longlong val_int();
|
|
|
|
};
|
|
|
|
|
2003-08-21 16:15:06 +02:00
|
|
|
#ifdef HAVE_COMPRESS
|
|
|
|
#define ZLIB_DEPENDED_FUNCTION ;
|
|
|
|
#else
|
|
|
|
#define ZLIB_DEPENDED_FUNCTION { null_value=1; return 0; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
class Item_func_compress: public Item_str_func
|
|
|
|
{
|
|
|
|
String buffer;
|
|
|
|
public:
|
|
|
|
Item_func_compress(Item *a):Item_str_func(a){}
|
|
|
|
void fix_length_and_dec(){max_length= (args[0]->max_length*120)/100+12;}
|
|
|
|
const char *func_name() const{return "compress";}
|
|
|
|
String *val_str(String *) ZLIB_DEPENDED_FUNCTION
|
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_uncompress: public Item_str_func
|
|
|
|
{
|
|
|
|
String buffer;
|
|
|
|
public:
|
|
|
|
Item_func_uncompress(Item *a): Item_str_func(a){}
|
|
|
|
void fix_length_and_dec(){max_length= MAX_BLOB_WIDTH;}
|
|
|
|
const char *func_name() const{return "uncompress";}
|
|
|
|
String *val_str(String *) ZLIB_DEPENDED_FUNCTION
|
|
|
|
};
|
|
|
|
|
2004-02-27 20:30:08 +01:00
|
|
|
#define UUID_LENGTH (8+1+4+1+4+1+4+1+12)
|
|
|
|
class Item_func_uuid: public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_uuid(): Item_str_func() {}
|
2004-02-27 23:59:09 +01:00
|
|
|
void fix_length_and_dec() {
|
|
|
|
collation.set(system_charset_info);
|
2005-05-17 20:31:26 +02:00
|
|
|
/*
|
|
|
|
NOTE! uuid() should be changed to use 'ascii'
|
|
|
|
charset when hex(), format(), md5(), etc, and implicit
|
|
|
|
number-to-string conversion will use 'ascii'
|
|
|
|
*/
|
|
|
|
max_length= UUID_LENGTH * system_charset_info->mbmaxlen;
|
2004-02-27 23:59:09 +01:00
|
|
|
}
|
2004-02-27 20:30:08 +01:00
|
|
|
const char *func_name() const{ return "uuid"; }
|
|
|
|
String *val_str(String *);
|
|
|
|
};
|
|
|
|
|