mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 04:22:27 +01:00
bee5d9d462
Cleaned up (and disabled part of) date/time/datetime format patch. One can't anymore change default read/write date/time/formats. This is becasue the non standard datetime formats can't be compared as strings and MySQL does still a lot of datetime comparisons as strings Changed flag argument to str_to_TIME() and get_date() from bool to uint Removed THD from str_to_xxxx functions and Item class. Fixed core dump when doing --print-defaults Move some common string functions to strfunc.cc Dates as strings are now of type my_charset_bin instead of default_charset() Introduce IDENT_QUOTED to not have to create an extra copy of simple identifiers (all chars < 128) Removed xxx_FORMAT_TYPE enums and replaced them with the old TIMESTAMP_xxx enums Renamed some TIMESTAMP_xxx enums to more appropriate names Use defines instead of integers for date/time/datetime string lengths Added to build system and use the new my_strtoll10() function. BUILD/compile-pentium-valgrind-max: Remove double printing of warning VC++Files/libmysqld/libmysqld.dsp: Added strfunc.cc VC++Files/sql/mysqld.dsp: Added strfunc.cc VC++Files/sql/mysqldmax.dsp: Added strfunc.cc VC++Files/strings/strings.dsp: added my_strtoll10.c include/m_ctype.h: Removed MY_LEX_FOUND_IDENT (not used) include/m_string.h: Added my_strtoll10() include/mysqld_error.h: simplified 'wrong xxx name' error messages include/sql_state.h: simplified 'wrong xxx name' error messages libmysqld/Makefile.am: Added strfunc.cc mysql-test/mysql-test-run.sh: Simplified some options changed $@ to "$@" in an attempt to handle options with space (Didn't succeed; Problem will disappear when mysql-test-run is rewritten in C) mysql-test/r/ctype_latin1_de.result: Added new tests mysql-test/r/ctype_recoding.result: Extended tests mysql-test/r/date_formats.result: Cleaned up tests Disabled some tests that can't yet be run mysql-test/r/func_compress.result: New error message mysql-test/r/rpl_temporary.result: Added new test mysql-test/t/create.test: Changed error numbers mysql-test/t/ctype_latin1_de.test: New tests mysql-test/t/ctype_recoding.test: Extended tests mysql-test/t/date_formats-master.opt: Removed datetime_format as we can't handle options with space in mysql-test-run mysql-test/t/date_formats.test: Cleaned up tests Disabled some tests that can't yet be run mysql-test/t/rpl_temporary.test: Added testing of open temporary table on slave shutdown mysql-test/t/symlink.test: Fixed error numbers mysys/default.c: Fixed core dump when doing --print-defaults sql/Makefile.am: Added strfunc.cc sql/derror.cc: Fixed compiler warning sql/field.cc: Changed argument to str_to_TIME() from bool to uint Removed THD argument from str_to_TIME() Moved find_enum() and find_set() to strfunc.cc sql/field.h: Changed type of last argument to get_date() to be able to handle more options sql/init.cc: Remove not used variable dayord sql/item.cc: Changed type of last argument to get_date() to be able to handle more options Removed THD* element from item. Don't use make_date_time() to generate date/time/datetimes sql/item.h: Changed type of last argument to get_date() to be able to handle more options Removed THD* from Item sql/item_create.cc: Indentation cleanup sql/item_func.cc: Use new find_type() sql/item_func.h: Changed type of last argument to get_date() to be able to handle more options sql/item_strfunc.h: space change sql/item_timefunc.cc: Changed month_names[] to be easier to use Moved check_names[] to strfunc.cc Added back old make_datetime() function Optimized extract_date_time() Use my_strtoll10() insetad of my_strntoll() Optimized make_date_time() Replaced short variable names with long ones. Use new functions make_time(), make_date() and make_datetime() Dates as strings are now of type my_charset_bin instead of default_charset() Changed Item_func_str_to_date() to by default return a date. sql/item_timefunc.h: Changed charset for date string from default_charset() to my_charset_bin Changed type of last argument to get_date() to be able to handle more options Use defines instead of integers for date/time/datetime string lengths sql/mysql_priv.h: Fixed/added new prototypes sql/mysqld.cc: Removed opt_datetime_format_names Cleaned up handling of date_time format handling. (Fixed core dump when mysqld had error on startup) Removed some unnecessary double init of collation variables sql/protocol.cc: Changed back protocol functions to always return dates in ISO format sql/set_var.cc: Added variables time_format, date_format and datetime_format This had to be recoded becasue checking was done in 'update' method and not in 'check' method. sql/set_var.h: Removed class sys_var_datetime_format() as this defined a variable (which doesn't work) instead of updating a variable sql/share/czech/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/danish/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/dutch/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/english/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/estonian/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/french/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/german/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/greek/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/hungarian/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/italian/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/japanese/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/korean/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/norwegian-ny/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/norwegian/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/polish/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/portuguese/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/romanian/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/russian/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/serbian/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/slovak/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/spanish/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/swedish/errmsg.txt: simplified 'wrong xxx name' error messages sql/share/ukrainian/errmsg.txt: simplified 'wrong xxx name' error messages sql/sql_base.cc: Use new find_type() sql/sql_class.cc: Allocate/free date_time format variables sql/sql_class.h: Define datetime_format variables sql/sql_db.cc: Use new ER_WRONG_NAME error sql/sql_lex.cc: Change lex to generate IDENT_QUOTED for quoted identifiers or identifers that are using characters > 128. This enabled us to not have to copy and convert the identifier to utf8 for simpe identifiers sql/sql_parse.cc: Use new ER_WRONG_NAME error Use new find_type() function sql/sql_prepare.cc: Use new defines sql/sql_table.cc: Use new ER_WRONG_NAME error sql/sql_yacc.yy: Don't copy and convert simple identifiers to utf8. Replace __FORMAT_TYPE defines with TIMESTAMP... defines sql/structs.h: Renamed DATETIME_FORMAT to DATE_TIME format to indicate that it's for date/time/datetime formats Renamed WRONT_TIMESTAMP_FULL to TIMESTAMP_DATETIME_ERROR and TIMESTAMP_FULL to TIMESTAMP_DATETIME Added KNOWN_DATE_TIME_FORMAT struct for Item_func_get_format sql/time.cc: Prepare str_to_TIME and str_to_time() for general date/time handling Removed THD from str_to... functions Renamed date/time/datetime functions to use 'date_time' instead of 'datetime' Added functions to make and copy DATE_TIME_FORMAT's Added trivial functions 'make_time()', 'make_date()' and 'make_datetime()' strings/Makefile.am: Added my_strtoll10() strings/ctype-bin.c: Cleared upper part of binary state map to be able to easily identify simple identifiers strings/my_vsnprintf.c: F
694 lines
18 KiB
C++
694 lines
18 KiB
C++
/* Copyright (C) 2000-2003 MySQL AB
|
|
|
|
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.
|
|
|
|
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.
|
|
|
|
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"; }
|
|
};
|
|
|
|
|
|
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"; }
|
|
};
|
|
|
|
|
|
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();
|
|
void update_used_tables();
|
|
bool fix_fields(THD *thd, TABLE_LIST *tlist, Item **ref)
|
|
{
|
|
return (separator->fix_fields(thd, tlist, &separator) ||
|
|
separator->check_cols(1) ||
|
|
Item_func::fix_fields(thd, tlist, ref));
|
|
}
|
|
void split_sum_func(Item **ref_pointer_array, List<Item> &fields);
|
|
const char *func_name() const { return "concat_ws"; }
|
|
bool walk(Item_processor processor, byte *arg)
|
|
{
|
|
return separator->walk(processor, arg) ||
|
|
Item_str_func::walk(processor, arg);
|
|
}
|
|
};
|
|
|
|
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) {}
|
|
void fix_length_and_dec()
|
|
{
|
|
collation.set(args[0]->collation);
|
|
max_length = args[0]->max_length;
|
|
}
|
|
};
|
|
|
|
|
|
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();
|
|
const char *func_name() const { return "substr_index"; }
|
|
};
|
|
|
|
|
|
class Item_func_trim :public Item_str_func
|
|
{
|
|
protected:
|
|
String tmp_value;
|
|
String remove;
|
|
public:
|
|
Item_func_trim(Item *a,Item *b) :Item_str_func(a,b) {}
|
|
Item_func_trim(Item *a) :Item_str_func(a) {}
|
|
String *val_str(String *);
|
|
void fix_length_and_dec();
|
|
const char *func_name() const { return "trim"; }
|
|
};
|
|
|
|
|
|
class Item_func_ltrim :public Item_func_trim
|
|
{
|
|
public:
|
|
Item_func_ltrim(Item *a,Item *b) :Item_func_trim(a,b) {}
|
|
Item_func_ltrim(Item *a) :Item_func_trim(a) {}
|
|
String *val_str(String *);
|
|
const char *func_name() const { return "ltrim"; }
|
|
};
|
|
|
|
|
|
class Item_func_rtrim :public Item_func_trim
|
|
{
|
|
public:
|
|
Item_func_rtrim(Item *a,Item *b) :Item_func_trim(a,b) {}
|
|
Item_func_rtrim(Item *a) :Item_func_trim(a) {}
|
|
String *val_str(String *);
|
|
const char *func_name() const { return "rtrim"; }
|
|
};
|
|
|
|
|
|
/*
|
|
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
|
|
authentification procedure works, see comments in password.c.
|
|
*/
|
|
|
|
class Item_func_password :public Item_str_func
|
|
{
|
|
char tmp_value[SCRAMBLED_PASSWORD_CHAR_LENGTH+1];
|
|
public:
|
|
Item_func_password(Item *a) :Item_str_func(a) {}
|
|
String *val_str(String *str);
|
|
void fix_length_and_dec() { max_length= SCRAMBLED_PASSWORD_CHAR_LENGTH; }
|
|
const char *func_name() const { return "password"; }
|
|
static char *alloc(THD *thd, const char *password);
|
|
};
|
|
|
|
|
|
/*
|
|
Item_func_old_password -- PASSWORD() implementation used in MySQL 3.21 - 4.0
|
|
compatibility mode. This item is created in sql_yacc.yy when
|
|
'old_passwords' session variable is set, and to handle OLD_PASSWORD()
|
|
function.
|
|
*/
|
|
|
|
class Item_func_old_password :public Item_str_func
|
|
{
|
|
char tmp_value[SCRAMBLED_PASSWORD_CHAR_LENGTH_323+1];
|
|
public:
|
|
Item_func_old_password(Item *a) :Item_str_func(a) {}
|
|
String *val_str(String *str);
|
|
void fix_length_and_dec() { max_length= SCRAMBLED_PASSWORD_CHAR_LENGTH_323; }
|
|
const char *func_name() const { return "old_password"; }
|
|
static char *alloc(THD *thd, const char *password);
|
|
};
|
|
|
|
|
|
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 *);
|
|
void fix_length_and_dec()
|
|
{ maybe_null=1; max_length = args[0]->max_length+8; }
|
|
const char *func_name() const { return "des_encrypt"; }
|
|
};
|
|
|
|
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 *);
|
|
void fix_length_and_dec() { maybe_null=1; max_length = args[0]->max_length; }
|
|
const char *func_name() const { return "des_decrypt"; }
|
|
};
|
|
|
|
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:
|
|
Item_func_database() { collation.set(system_charset_info,DERIVATION_IMPLICIT); }
|
|
String *val_str(String *);
|
|
void fix_length_and_dec()
|
|
{
|
|
max_length= MAX_FIELD_NAME * system_charset_info->mbmaxlen;
|
|
}
|
|
const char *func_name() const { return "database"; }
|
|
};
|
|
|
|
class Item_func_user :public Item_str_func
|
|
{
|
|
public:
|
|
Item_func_user() { collation.set(system_charset_info, DERIVATION_IMPLICIT); }
|
|
String *val_str(String *);
|
|
void fix_length_and_dec()
|
|
{
|
|
max_length= (USERNAME_LENGTH+HOSTNAME_LENGTH+1)*system_charset_info->mbmaxlen;
|
|
}
|
|
const char *func_name() const { return "user"; }
|
|
};
|
|
|
|
|
|
class Item_func_soundex :public Item_str_func
|
|
{
|
|
String tmp_value;
|
|
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:
|
|
Item_func_elt(List<Item> &list) :Item_str_func(list) {}
|
|
double val();
|
|
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) {}
|
|
~Item_func_make_set() { delete item; }
|
|
String *val_str(String *str);
|
|
bool fix_fields(THD *thd, TABLE_LIST *tlist, Item **ref)
|
|
{
|
|
return (item->fix_fields(thd, tlist, &item) ||
|
|
item->check_cols(1) ||
|
|
Item_func::fix_fields(thd, tlist, ref));
|
|
}
|
|
void split_sum_func(Item **ref_pointer_array, List<Item> &fields);
|
|
void fix_length_and_dec();
|
|
void update_used_tables();
|
|
const char *func_name() const { return "make_set"; }
|
|
|
|
bool walk(Item_processor processor, byte *arg)
|
|
{
|
|
return item->walk(processor, arg) ||
|
|
Item_str_func::walk(processor, arg);
|
|
}
|
|
};
|
|
|
|
|
|
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()
|
|
{
|
|
collation.set(default_charset());
|
|
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 *);
|
|
void fix_length_and_dec()
|
|
{
|
|
collation.set(default_charset());
|
|
maybe_null=0; max_length=arg_count;
|
|
}
|
|
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()
|
|
{
|
|
collation.set(default_charset());
|
|
decimals=0; max_length=64;
|
|
}
|
|
};
|
|
|
|
|
|
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()
|
|
{
|
|
collation.set(default_charset());
|
|
decimals=0; max_length=args[0]->max_length*2;
|
|
}
|
|
};
|
|
|
|
|
|
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"; }
|
|
String *val_str(String *a)
|
|
{
|
|
String *tmp=args[0]->val_str(a);
|
|
null_value=args[0]->null_value;
|
|
if (tmp)
|
|
tmp->set_charset(&my_charset_bin);
|
|
return tmp;
|
|
}
|
|
void fix_length_and_dec()
|
|
{
|
|
collation.set(&my_charset_bin);
|
|
max_length=args[0]->max_length;
|
|
}
|
|
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()
|
|
{
|
|
collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
|
|
maybe_null=1;
|
|
max_length=MAX_BLOB_WIDTH;
|
|
}
|
|
};
|
|
|
|
|
|
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"; }
|
|
};
|
|
|
|
class Item_func_inet_ntoa : public Item_str_func
|
|
{
|
|
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; }
|
|
};
|
|
|
|
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 *);
|
|
void fix_length_and_dec()
|
|
{
|
|
collation.set(args[0]->collation);
|
|
max_length= args[0]->max_length * 2 + 2;
|
|
}
|
|
};
|
|
|
|
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)
|
|
{ conv_charset=cs; }
|
|
String *val_str(String *);
|
|
void fix_length_and_dec();
|
|
const char *func_name() const { return "conv_charset"; }
|
|
};
|
|
|
|
class Item_func_set_collation :public Item_str_func
|
|
{
|
|
public:
|
|
Item_func_set_collation(Item *a, Item *b) :Item_str_func(a,b) {};
|
|
String *val_str(String *);
|
|
void fix_length_and_dec();
|
|
bool eq(const Item *item, bool binary_cmp) const;
|
|
const char *func_name() const { return "set_collation"; }
|
|
};
|
|
|
|
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"; }
|
|
};
|
|
|
|
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()
|
|
{
|
|
max_length=40; // should be enough
|
|
collation.set(system_charset_info);
|
|
};
|
|
};
|
|
|
|
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
|
|
collation.set(system_charset_info);
|
|
};
|
|
};
|
|
|
|
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();
|
|
};
|
|
|
|
#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
|
|
};
|
|
|