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 */
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#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();
|
|
|
|
double val();
|
|
|
|
enum Item_result result_type () const { return STRING_RESULT; }
|
|
|
|
void left_right_max_length();
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
Item *separator;
|
|
|
|
String tmp_value;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Item_func_concat_ws(Item *a,List<Item> &list)
|
|
|
|
:Item_str_func(list),separator(a) {}
|
|
|
|
~Item_func_concat_ws() { delete separator; }
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec();
|
2000-11-07 03:39:13 +01:00
|
|
|
void update_used_tables();
|
2002-07-01 13:14:51 +02:00
|
|
|
bool fix_fields(THD *thd, TABLE_LIST *tlist, Item **ref)
|
2000-11-07 03:39:13 +01:00
|
|
|
{
|
2003-01-21 12:55:26 +01:00
|
|
|
return (separator->fix_fields(thd, tlist, &separator) ||
|
|
|
|
separator->check_cols(1) ||
|
2002-11-15 19:32:09 +01:00
|
|
|
Item_func::fix_fields(thd, tlist, ref));
|
2000-11-07 03:39:13 +01:00
|
|
|
}
|
2003-02-07 14:47:24 +01:00
|
|
|
void split_sum_func(Item **ref_pointer_array, List<Item> &fields);
|
2002-12-26 00:28:59 +01:00
|
|
|
const char *func_name() const { return "concat_ws"; }
|
|
|
|
void set_outer_resolving()
|
|
|
|
{
|
|
|
|
separator->set_outer_resolving();
|
|
|
|
Item_func::set_outer_resolving();
|
|
|
|
}
|
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();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_str_conv(Item *item) :Item_str_func(item) {}
|
2003-03-19 12:55:17 +01:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
|
|
|
set_charset(args[0]->charset(), args[0]->coercibility);
|
|
|
|
max_length = args[0]->max_length;
|
|
|
|
}
|
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) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
const char *func_name() const { return "lcase"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_ucase :public Item_str_conv
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_ucase(Item *item) :Item_str_conv(item) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
const char *func_name() const { return "ucase"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_left :public Item_str_func
|
|
|
|
{
|
|
|
|
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 *);
|
|
|
|
void fix_length_and_dec() { max_length= args[0]->max_length; }
|
|
|
|
const char *func_name() const { return "substr_index"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_password :public Item_str_func
|
|
|
|
{
|
2002-10-02 21:43:27 +02:00
|
|
|
char tmp_value[64]; /* This should be enough for new password format */
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
|
|
|
Item_func_password(Item *a) :Item_str_func(a) {}
|
2002-12-27 17:47:23 +01:00
|
|
|
Item_func_password(Item *a, Item *b) :Item_str_func(a,b) {}
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2003-01-18 15:39:21 +01:00
|
|
|
void fix_length_and_dec();
|
2000-07-31 21:29:14 +02:00
|
|
|
const char *func_name() const { return "password"; }
|
|
|
|
};
|
|
|
|
|
2002-10-06 11:42:16 +02:00
|
|
|
|
|
|
|
class Item_func_old_password :public Item_str_func
|
|
|
|
{
|
2003-02-10 16:59:16 +01:00
|
|
|
char tmp_value[17]; /* old password length +1 */
|
2002-10-06 11:42:16 +02:00
|
|
|
public:
|
|
|
|
Item_func_old_password(Item *a) :Item_str_func(a) {}
|
|
|
|
String *val_str(String *);
|
|
|
|
void fix_length_and_dec() { max_length = get_password_length(1); }
|
|
|
|
const char *func_name() const { return "old_password"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "sql_crypt.h"
|
|
|
|
|
|
|
|
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();
|
|
|
|
};
|
|
|
|
|
|
|
|
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 *);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_database :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
2003-05-22 15:41:47 +02:00
|
|
|
Item_func_database() { coercibility= COER_IMPLICIT; }
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2002-11-11 15:43:33 +01:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2003-05-23 07:45:46 +02:00
|
|
|
max_length= MAX_FIELD_NAME * system_charset_info->mbmaxlen;
|
|
|
|
set_charset(system_charset_info);
|
2002-11-11 15:43:33 +01:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
const char *func_name() const { return "database"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class Item_func_user :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
2003-05-22 15:41:47 +02:00
|
|
|
Item_func_user() { coercibility= COER_IMPLICIT; }
|
2000-07-31 21:29:14 +02:00
|
|
|
String *val_str(String *);
|
2002-11-11 15:43:33 +01:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2003-05-23 07:45:46 +02:00
|
|
|
max_length= (USERNAME_LENGTH+HOSTNAME_LENGTH+1)*system_charset_info->mbmaxlen;
|
|
|
|
set_charset(system_charset_info);
|
2002-11-11 15:43:33 +01:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
const char *func_name() const { return "user"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
Item *item;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Item_func_elt(Item *a,List<Item> &list) :Item_str_func(list),item(a) {}
|
|
|
|
~Item_func_elt() { delete item; }
|
|
|
|
double val();
|
|
|
|
longlong val_int();
|
|
|
|
String *val_str(String *str);
|
2002-07-01 13:14:51 +02:00
|
|
|
bool fix_fields(THD *thd, TABLE_LIST *tlist, Item **ref)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2003-01-21 12:55:26 +01:00
|
|
|
return (item->fix_fields(thd, tlist, &item) ||
|
|
|
|
item->check_cols(1) ||
|
2002-07-01 13:14:51 +02:00
|
|
|
Item_func::fix_fields(thd, tlist, ref));
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2003-02-07 14:47:24 +01:00
|
|
|
void split_sum_func(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 "elt"; }
|
2002-12-26 00:28:59 +01:00
|
|
|
void set_outer_resolving()
|
|
|
|
{
|
|
|
|
item->set_outer_resolving();
|
|
|
|
Item_str_func::set_outer_resolving();
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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) {}
|
|
|
|
~Item_func_make_set() { delete item; }
|
|
|
|
String *val_str(String *str);
|
2002-07-01 13:14:51 +02:00
|
|
|
bool fix_fields(THD *thd, TABLE_LIST *tlist, Item **ref)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2003-01-21 12:55:26 +01:00
|
|
|
return (item->fix_fields(thd, tlist, &item) ||
|
|
|
|
item->check_cols(1) ||
|
2002-07-01 13:14:51 +02:00
|
|
|
Item_func::fix_fields(thd, tlist, ref));
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2003-02-07 14:47:24 +01:00
|
|
|
void split_sum_func(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"; }
|
2002-12-26 00:28:59 +01:00
|
|
|
void set_outer_resolving()
|
|
|
|
{
|
|
|
|
item->set_outer_resolving();
|
|
|
|
Item_str_func::set_outer_resolving();
|
|
|
|
}
|
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()
|
|
|
|
{
|
|
|
|
max_length=args[0]->max_length+(args[0]->max_length-args[0]->decimals)/3;
|
|
|
|
}
|
|
|
|
const char *func_name() const { return "format"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class Item_func_char :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_char(List<Item> &list) :Item_str_func(list) {}
|
|
|
|
String *val_str(String *);
|
2002-10-25 10:58:32 +02:00
|
|
|
void fix_length_and_dec() { maybe_null=0; max_length=arg_count; }
|
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
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
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
|
|
|
|
{
|
|
|
|
String tmp_value;
|
|
|
|
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 *);
|
|
|
|
void fix_length_and_dec() { decimals=0; max_length=64; }
|
|
|
|
};
|
|
|
|
|
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 *);
|
|
|
|
void fix_length_and_dec() { decimals=0; max_length=args[0]->max_length*2; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
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) {}
|
|
|
|
const char *func_name() const { return "binary"; }
|
2002-01-15 23:42:52 +01:00
|
|
|
String *val_str(String *a)
|
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
|
|
|
}
|
2002-10-25 10:58:32 +02:00
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2003-01-29 14:31:20 +01:00
|
|
|
set_charset(&my_charset_bin);
|
2002-10-25 10:58:32 +02:00
|
|
|
max_length=args[0]->max_length;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
void print(String *str) { print_op(str); }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
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()
|
2002-10-25 10:58:32 +02:00
|
|
|
{
|
2003-01-29 14:31:20 +01:00
|
|
|
set_charset(&my_charset_bin);
|
2002-10-25 10:58:32 +02:00
|
|
|
maybe_null=1;
|
|
|
|
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
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_quote(Item *a) :Item_str_func(a) {}
|
|
|
|
const char *func_name() const { return "quote"; }
|
|
|
|
String *val_str(String *);
|
2002-08-09 12:42:38 +02:00
|
|
|
void fix_length_and_dec() { max_length= args[0]->max_length * 2 + 2; }
|
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
|
|
|
|
{
|
|
|
|
CHARSET_INFO *conv_charset;
|
|
|
|
public:
|
|
|
|
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();
|
|
|
|
const char *func_name() const { return "conv_charset"; }
|
|
|
|
};
|
|
|
|
|
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;
|
2002-08-22 15:12:45 +02:00
|
|
|
const char *func_name() const { return "set_collation"; }
|
|
|
|
};
|
|
|
|
|
2002-03-29 16:11:06 +01:00
|
|
|
class Item_func_conv_charset3 :public Item_str_func
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Item_func_conv_charset3(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 "conv_charset3"; }
|
|
|
|
};
|
|
|
|
|
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"; }
|
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
2002-11-11 15:43:33 +01:00
|
|
|
max_length=40; // should be enough
|
2003-03-03 07:53:08 +01:00
|
|
|
set_charset(default_charset());
|
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"; }
|
|
|
|
void fix_length_and_dec()
|
|
|
|
{
|
|
|
|
max_length=40; // should be enough
|
2003-03-03 07:53:08 +01:00
|
|
|
set_charset(default_charset());
|
2003-02-27 13:53:10 +01:00
|
|
|
};
|
|
|
|
};
|