2000-07-31 21:29:14 +02:00
|
|
|
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
2001-12-06 13:10:51 +01: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-12-06 13:10:51 +01: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-12-06 13:10:51 +01: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 */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#pragma implementation // gcc: Class implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "mysql_priv.h"
|
|
|
|
#include <m_ctype.h>
|
|
|
|
#include "my_dir.h"
|
Simplistic, experimental framework for Stored Procedures (SPs).
Implements creation and dropping of PROCEDUREs, IN, OUT, and INOUT parameters,
single-statement procedures, rudimentary multi-statement (begin-end) prodedures
(when the client can handle it), and local variables.
Missing most of the embedded SQL language, all attributes, FUNCTIONs, error handling,
reparses procedures at each call (no caching), etc, etc.
Certainly buggy too, but procedures can actually be created and called....
2002-12-08 19:59:22 +01:00
|
|
|
#include "sp_rcontext.h"
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2003-07-25 00:02:42 +02:00
|
|
|
static void mark_as_dependent(THD *thd,
|
|
|
|
SELECT_LEX *last, SELECT_LEX *current,
|
2003-06-20 09:15:58 +02:00
|
|
|
Item_ident *item);
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
** Item functions
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/* Init all special items */
|
|
|
|
|
|
|
|
void item_init(void)
|
|
|
|
{
|
|
|
|
item_user_lock_init();
|
|
|
|
}
|
|
|
|
|
2002-11-21 10:01:33 +01:00
|
|
|
Item::Item():
|
2003-09-13 16:47:59 +02:00
|
|
|
name_length(0), fixed(0)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2003-01-30 17:07:39 +01:00
|
|
|
marker= 0;
|
2002-10-25 10:58:32 +02:00
|
|
|
maybe_null=null_value=with_sum_func=unsigned_flag=0;
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(default_charset(), DERIVATION_COERCIBLE);
|
2003-01-30 17:07:39 +01:00
|
|
|
name= 0;
|
|
|
|
decimals= 0; max_length= 0;
|
2003-11-03 13:01:59 +01:00
|
|
|
|
|
|
|
/* Put item in free list so that we can free all items at end */
|
|
|
|
THD *thd= current_thd;
|
|
|
|
next= thd->free_list;
|
2003-01-30 17:07:39 +01:00
|
|
|
thd->free_list= this;
|
2003-07-02 13:45:35 +02:00
|
|
|
/*
|
2003-08-19 15:00:12 +02:00
|
|
|
Item constructor can be called during execution other then SQL_COM
|
2003-12-19 18:52:13 +01:00
|
|
|
command => we should check thd->lex->current_select on zero (thd->lex
|
2003-07-02 14:03:49 +02:00
|
|
|
can be uninitialised)
|
2003-07-02 13:45:35 +02:00
|
|
|
*/
|
2003-08-26 17:41:40 +02:00
|
|
|
if (thd->lex->current_select)
|
2003-07-29 12:00:32 +02:00
|
|
|
{
|
|
|
|
SELECT_LEX_NODE::enum_parsing_place place=
|
2003-08-26 11:51:09 +02:00
|
|
|
thd->lex->current_select->parsing_place;
|
2003-07-29 12:00:32 +02:00
|
|
|
if (place == SELECT_LEX_NODE::SELECT_LIST ||
|
|
|
|
place == SELECT_LEX_NODE::IN_HAVING)
|
2003-08-26 11:51:09 +02:00
|
|
|
thd->lex->current_select->select_n_having_items++;
|
2003-07-29 12:00:32 +02:00
|
|
|
}
|
2002-11-13 23:26:18 +01:00
|
|
|
}
|
|
|
|
|
2003-01-30 17:07:39 +01:00
|
|
|
/*
|
|
|
|
Constructor used by Item_field, Item_ref & agregate (sum) functions.
|
|
|
|
Used for duplicating lists in processing queries with temporary
|
|
|
|
tables
|
|
|
|
*/
|
2003-11-03 13:01:59 +01:00
|
|
|
Item::Item(THD *thd, Item &item):
|
2003-01-25 01:25:52 +01:00
|
|
|
str_value(item.str_value),
|
|
|
|
name(item.name),
|
|
|
|
max_length(item.max_length),
|
|
|
|
marker(item.marker),
|
|
|
|
decimals(item.decimals),
|
|
|
|
maybe_null(item.maybe_null),
|
|
|
|
null_value(item.null_value),
|
|
|
|
unsigned_flag(item.unsigned_flag),
|
|
|
|
with_sum_func(item.with_sum_func),
|
2003-02-28 16:22:20 +01:00
|
|
|
fixed(item.fixed),
|
2003-06-24 12:11:07 +02:00
|
|
|
collation(item.collation)
|
2003-01-25 01:25:52 +01:00
|
|
|
{
|
2003-11-03 13:01:59 +01:00
|
|
|
next= thd->free_list; // Put in free list
|
2003-01-30 17:07:39 +01:00
|
|
|
thd->free_list= this;
|
2003-01-25 01:25:52 +01:00
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
|
|
|
void Item::print_item_w_name(String *str)
|
|
|
|
{
|
|
|
|
print(str);
|
|
|
|
if (name)
|
|
|
|
{
|
2003-10-30 11:57:26 +01:00
|
|
|
str->append(" AS `", 5);
|
2003-10-16 14:54:47 +02:00
|
|
|
str->append(name);
|
|
|
|
str->append('`');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-17 16:35:34 +01:00
|
|
|
Item_ident::Item_ident(const char *db_name_par,const char *table_name_par,
|
|
|
|
const char *field_name_par)
|
|
|
|
:db_name(db_name_par),table_name(table_name_par),field_name(field_name_par),
|
|
|
|
depended_from(0)
|
|
|
|
{
|
|
|
|
name = (char*) field_name_par;
|
|
|
|
}
|
|
|
|
|
2003-01-30 17:07:39 +01:00
|
|
|
// Constructor used by Item_field & Item_ref (see Item comment)
|
|
|
|
Item_ident::Item_ident(THD *thd, Item_ident &item):
|
|
|
|
Item(thd, item),
|
2003-01-25 01:25:52 +01:00
|
|
|
db_name(item.db_name),
|
|
|
|
table_name(item.table_name),
|
|
|
|
field_name(item.field_name),
|
|
|
|
depended_from(item.depended_from)
|
|
|
|
{}
|
2002-12-06 20:55:53 +01:00
|
|
|
|
2003-07-02 12:12:18 +02:00
|
|
|
bool Item_ident::remove_dependence_processor(byte * arg)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_ident::remove_dependence_processor");
|
|
|
|
if (depended_from == (st_select_lex *) arg)
|
|
|
|
depended_from= 0;
|
2003-08-23 12:29:38 +02:00
|
|
|
DBUG_RETURN(0);
|
2003-07-02 12:12:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-15 19:32:09 +01:00
|
|
|
bool Item::check_cols(uint c)
|
|
|
|
{
|
|
|
|
if (c != 1)
|
|
|
|
{
|
2003-10-06 21:35:05 +02:00
|
|
|
my_error(ER_OPERAND_COLUMNS, MYF(0), c);
|
2002-11-15 19:32:09 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-05-21 20:39:58 +02:00
|
|
|
|
|
|
|
void Item::set_name(const char *str, uint length, CHARSET_INFO *cs)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
if (!length)
|
|
|
|
{
|
2003-05-21 20:39:58 +02:00
|
|
|
/* Empty string, used by AS or internal function like last_insert_id() */
|
|
|
|
name= (char*) str;
|
2003-09-13 16:47:59 +02:00
|
|
|
name_length= 0;
|
2003-05-21 20:39:58 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (length && !my_isgraph(cs,*str))
|
|
|
|
{ // Fix problem with yacc
|
|
|
|
length--;
|
|
|
|
str++;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2003-05-21 20:39:58 +02:00
|
|
|
if (!my_charset_same(cs, system_charset_info))
|
|
|
|
{
|
|
|
|
uint32 res_length;
|
2003-09-13 16:47:59 +02:00
|
|
|
name= sql_strmake_with_convert(str, name_length= length, cs,
|
2003-05-21 20:39:58 +02:00
|
|
|
MAX_ALIAS_NAME, system_charset_info,
|
|
|
|
&res_length);
|
|
|
|
}
|
|
|
|
else
|
2003-09-13 16:47:59 +02:00
|
|
|
name= sql_strmake(str, (name_length= min(length,MAX_ALIAS_NAME)));
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2003-05-21 20:39:58 +02:00
|
|
|
|
2002-03-22 13:03:42 +01:00
|
|
|
/*
|
2003-06-04 17:28:51 +02:00
|
|
|
This function is called when:
|
|
|
|
- Comparing items in the WHERE clause (when doing where optimization)
|
|
|
|
- When trying to find an ORDER BY/GROUP BY item in the SELECT part
|
2002-03-22 13:03:42 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
bool Item::eq(const Item *item, bool binary_cmp) const
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
return type() == item->type() && name && item->name &&
|
2002-03-12 18:37:58 +01:00
|
|
|
!my_strcasecmp(system_charset_info,name,item->name);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2002-03-22 13:03:42 +01:00
|
|
|
bool Item_string::eq(const Item *item, bool binary_cmp) const
|
|
|
|
{
|
|
|
|
if (type() == item->type())
|
|
|
|
{
|
|
|
|
if (binary_cmp)
|
2003-03-04 15:01:59 +01:00
|
|
|
return !sortcmp(&str_value, &item->str_value, &my_charset_bin);
|
2003-08-05 09:52:37 +02:00
|
|
|
return !sortcmp(&str_value, &item->str_value, collation.collation);
|
2002-03-22 13:03:42 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
/*
|
|
|
|
Get the value of the function as a TIME structure.
|
|
|
|
As a extra convenience the time structure is reset on error!
|
|
|
|
*/
|
|
|
|
|
2003-11-03 13:01:59 +01:00
|
|
|
bool Item::get_date(TIME *ltime,uint fuzzydate)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
char buff[40];
|
2003-01-29 14:31:20 +01:00
|
|
|
String tmp(buff,sizeof(buff), &my_charset_bin),*res;
|
2000-07-31 21:29:14 +02:00
|
|
|
if (!(res=val_str(&tmp)) ||
|
2003-11-03 13:01:59 +01:00
|
|
|
str_to_TIME(res->ptr(),res->length(),ltime,fuzzydate) <=
|
|
|
|
TIMESTAMP_DATETIME_ERROR)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
bzero((char*) ltime,sizeof(*ltime));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Get time of first argument.
|
|
|
|
As a extra convenience the time structure is reset on error!
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool Item::get_time(TIME *ltime)
|
|
|
|
{
|
|
|
|
char buff[40];
|
2003-01-29 14:31:20 +01:00
|
|
|
String tmp(buff,sizeof(buff),&my_charset_bin),*res;
|
2000-07-31 21:29:14 +02:00
|
|
|
if (!(res=val_str(&tmp)) ||
|
2003-11-03 13:01:59 +01:00
|
|
|
str_to_time(res->ptr(),res->length(),ltime))
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
bzero((char*) ltime,sizeof(*ltime));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-03-03 07:53:08 +01:00
|
|
|
CHARSET_INFO * Item::default_charset() const
|
2002-11-06 12:49:53 +01:00
|
|
|
{
|
2003-04-23 15:19:22 +02:00
|
|
|
return current_thd->variables.collation_connection;
|
2002-11-06 12:49:53 +01:00
|
|
|
}
|
|
|
|
|
Simplistic, experimental framework for Stored Procedures (SPs).
Implements creation and dropping of PROCEDUREs, IN, OUT, and INOUT parameters,
single-statement procedures, rudimentary multi-statement (begin-end) prodedures
(when the client can handle it), and local variables.
Missing most of the embedded SQL language, all attributes, FUNCTIONs, error handling,
reparses procedures at each call (no caching), etc, etc.
Certainly buggy too, but procedures can actually be created and called....
2002-12-08 19:59:22 +01:00
|
|
|
|
|
|
|
Item *
|
|
|
|
Item_splocal::this_item()
|
|
|
|
{
|
|
|
|
THD *thd= current_thd;
|
|
|
|
|
|
|
|
return thd->spcont->get_item(m_offset);
|
2002-11-06 12:49:53 +01:00
|
|
|
}
|
|
|
|
|
Simplistic, experimental framework for Stored Procedures (SPs).
Implements creation and dropping of PROCEDUREs, IN, OUT, and INOUT parameters,
single-statement procedures, rudimentary multi-statement (begin-end) prodedures
(when the client can handle it), and local variables.
Missing most of the embedded SQL language, all attributes, FUNCTIONs, error handling,
reparses procedures at each call (no caching), etc, etc.
Certainly buggy too, but procedures can actually be created and called....
2002-12-08 19:59:22 +01:00
|
|
|
Item *
|
|
|
|
Item_splocal::this_const_item() const
|
|
|
|
{
|
|
|
|
THD *thd= current_thd;
|
|
|
|
|
|
|
|
return thd->spcont->get_item(m_offset);
|
|
|
|
}
|
|
|
|
|
2003-12-04 15:17:55 +01:00
|
|
|
Item::Type
|
|
|
|
Item_splocal::type() const
|
|
|
|
{
|
|
|
|
THD *thd= current_thd;
|
|
|
|
|
|
|
|
if (thd->spcont)
|
|
|
|
return thd->spcont->get_item(m_offset)->type();
|
|
|
|
return NULL_ITEM; // Anything but SUBSELECT_ITEM
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-24 14:12:07 +02:00
|
|
|
bool DTCollation::aggregate(DTCollation &dt)
|
2003-03-19 12:55:17 +01:00
|
|
|
{
|
2003-06-24 14:12:07 +02:00
|
|
|
if (!my_charset_same(collation, dt.collation))
|
2003-03-19 12:55:17 +01:00
|
|
|
{
|
2003-06-24 14:12:07 +02:00
|
|
|
/*
|
|
|
|
We do allow to use binary strings (like BLOBS)
|
|
|
|
together with character strings.
|
2003-06-27 13:09:53 +02:00
|
|
|
Binaries have more precedance than a character
|
|
|
|
string of the same derivation.
|
2003-06-24 14:12:07 +02:00
|
|
|
*/
|
2003-06-27 13:08:52 +02:00
|
|
|
if (collation == &my_charset_bin)
|
2003-06-24 14:12:07 +02:00
|
|
|
{
|
2003-06-27 13:08:52 +02:00
|
|
|
if (derivation <= dt.derivation)
|
|
|
|
; // Do nothing
|
|
|
|
else
|
|
|
|
set(dt);
|
2003-06-24 14:12:07 +02:00
|
|
|
}
|
2003-06-27 13:08:52 +02:00
|
|
|
else if (dt.collation == &my_charset_bin)
|
2003-06-24 14:12:07 +02:00
|
|
|
{
|
2003-06-27 13:08:52 +02:00
|
|
|
if (dt.derivation <= derivation)
|
|
|
|
set(dt);
|
|
|
|
else
|
|
|
|
; // Do nothing
|
2003-06-24 14:12:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
set(0, DERIVATION_NONE);
|
|
|
|
return 1;
|
|
|
|
}
|
2003-03-19 12:55:17 +01:00
|
|
|
}
|
2003-06-24 14:12:07 +02:00
|
|
|
else if (derivation < dt.derivation)
|
2003-03-19 12:55:17 +01:00
|
|
|
{
|
2003-06-24 14:12:07 +02:00
|
|
|
// Do nothing
|
2003-03-19 12:55:17 +01:00
|
|
|
}
|
2003-06-24 14:12:07 +02:00
|
|
|
else if (dt.derivation < derivation)
|
2003-03-19 12:55:17 +01:00
|
|
|
{
|
2003-06-24 14:12:07 +02:00
|
|
|
set(dt);
|
2003-03-19 12:55:17 +01:00
|
|
|
}
|
2003-06-24 14:12:07 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (collation == dt.collation)
|
2003-03-19 14:24:46 +01:00
|
|
|
{
|
2003-06-24 14:12:07 +02:00
|
|
|
// Do nothing
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (derivation == DERIVATION_EXPLICIT)
|
2003-03-21 08:21:01 +01:00
|
|
|
{
|
2003-06-24 14:12:07 +02:00
|
|
|
set(0, DERIVATION_NONE);
|
|
|
|
return 1;
|
2003-03-21 08:21:01 +01:00
|
|
|
}
|
2003-06-24 14:12:07 +02:00
|
|
|
CHARSET_INFO *bin= get_charset_by_csname(collation->csname,
|
|
|
|
MY_CS_BINSORT,MYF(0));
|
|
|
|
set(bin, DERIVATION_NONE);
|
2003-03-19 14:24:46 +01:00
|
|
|
}
|
2003-03-19 12:55:17 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
Item_field::Item_field(Field *f) :Item_ident(NullS,f->table_name,f->field_name)
|
|
|
|
{
|
|
|
|
set_field(f);
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(DERIVATION_IMPLICIT);
|
2002-11-21 10:01:33 +01:00
|
|
|
fixed= 1; // This item is not needed in fix_fields
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2003-01-30 17:07:39 +01:00
|
|
|
// Constructor need to process subselect with temporary tables (see Item)
|
2003-10-19 13:25:33 +02:00
|
|
|
Item_field::Item_field(THD *thd, Item_field &item)
|
|
|
|
:Item_ident(thd, item),
|
|
|
|
field(item.field),
|
|
|
|
result_field(item.result_field)
|
|
|
|
{
|
|
|
|
collation.set(DERIVATION_IMPLICIT);
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
void Item_field::set_field(Field *field_par)
|
|
|
|
{
|
|
|
|
field=result_field=field_par; // for easy coding with fields
|
|
|
|
maybe_null=field->maybe_null();
|
|
|
|
max_length=field_par->field_length;
|
|
|
|
decimals= field->decimals();
|
|
|
|
table_name=field_par->table_name;
|
|
|
|
field_name=field_par->field_name;
|
2003-06-04 17:28:51 +02:00
|
|
|
db_name=field_par->table->table_cache_key;
|
2001-09-27 20:45:48 +02:00
|
|
|
unsigned_flag=test(field_par->flags & UNSIGNED_FLAG);
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(field_par->charset(), DERIVATION_IMPLICIT);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *Item_ident::full_name() const
|
|
|
|
{
|
|
|
|
char *tmp;
|
2003-11-23 01:01:15 +01:00
|
|
|
if (!table_name || !field_name)
|
2000-07-31 21:29:14 +02:00
|
|
|
return field_name ? field_name : name ? name : "tmp_field";
|
2002-12-17 20:04:37 +01:00
|
|
|
if (db_name && db_name[0])
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2000-08-21 23:18:32 +02:00
|
|
|
tmp=(char*) sql_alloc((uint) strlen(db_name)+(uint) strlen(table_name)+
|
|
|
|
(uint) strlen(field_name)+3);
|
2000-07-31 21:29:14 +02:00
|
|
|
strxmov(tmp,db_name,".",table_name,".",field_name,NullS);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-08-21 23:18:32 +02:00
|
|
|
tmp=(char*) sql_alloc((uint) strlen(table_name)+
|
|
|
|
(uint) strlen(field_name)+2);
|
2000-07-31 21:29:14 +02:00
|
|
|
strxmov(tmp,table_name,".",field_name,NullS);
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
|
|
|
String *Item_field::val_str(String *str)
|
|
|
|
{
|
|
|
|
if ((null_value=field->is_null()))
|
|
|
|
return 0;
|
2003-01-03 14:07:40 +01:00
|
|
|
str->set_charset(str_value.charset());
|
2000-07-31 21:29:14 +02:00
|
|
|
return field->val_str(str,&str_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
double Item_field::val()
|
|
|
|
{
|
|
|
|
if ((null_value=field->is_null()))
|
|
|
|
return 0.0;
|
|
|
|
return field->val_real();
|
|
|
|
}
|
|
|
|
|
|
|
|
longlong Item_field::val_int()
|
|
|
|
{
|
|
|
|
if ((null_value=field->is_null()))
|
|
|
|
return 0;
|
|
|
|
return field->val_int();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
String *Item_field::str_result(String *str)
|
|
|
|
{
|
|
|
|
if ((null_value=result_field->is_null()))
|
|
|
|
return 0;
|
2002-12-31 17:01:53 +01:00
|
|
|
str->set_charset(str_value.charset());
|
2000-07-31 21:29:14 +02:00
|
|
|
return result_field->val_str(str,&str_value);
|
|
|
|
}
|
|
|
|
|
2003-11-03 13:01:59 +01:00
|
|
|
bool Item_field::get_date(TIME *ltime,uint fuzzydate)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
if ((null_value=field->is_null()) || field->get_date(ltime,fuzzydate))
|
|
|
|
{
|
|
|
|
bzero((char*) ltime,sizeof(*ltime));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-11-03 13:01:59 +01:00
|
|
|
bool Item_field::get_date_result(TIME *ltime,uint fuzzydate)
|
2003-03-11 21:20:53 +01:00
|
|
|
{
|
|
|
|
if ((null_value=result_field->is_null()) ||
|
|
|
|
result_field->get_date(ltime,fuzzydate))
|
|
|
|
{
|
|
|
|
bzero((char*) ltime,sizeof(*ltime));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
bool Item_field::get_time(TIME *ltime)
|
|
|
|
{
|
|
|
|
if ((null_value=field->is_null()) || field->get_time(ltime))
|
|
|
|
{
|
|
|
|
bzero((char*) ltime,sizeof(*ltime));
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
double Item_field::val_result()
|
|
|
|
{
|
|
|
|
if ((null_value=result_field->is_null()))
|
|
|
|
return 0.0;
|
|
|
|
return result_field->val_real();
|
|
|
|
}
|
|
|
|
|
|
|
|
longlong Item_field::val_int_result()
|
|
|
|
{
|
|
|
|
if ((null_value=result_field->is_null()))
|
|
|
|
return 0;
|
|
|
|
return result_field->val_int();
|
|
|
|
}
|
|
|
|
|
2003-06-04 17:28:51 +02:00
|
|
|
|
2002-03-22 13:03:42 +01:00
|
|
|
bool Item_field::eq(const Item *item, bool binary_cmp) const
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2003-06-04 17:28:51 +02:00
|
|
|
if (item->type() != FIELD_ITEM)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
Item_field *item_field= (Item_field*) item;
|
|
|
|
if (item_field->field)
|
|
|
|
return item_field->field == field;
|
|
|
|
/*
|
|
|
|
We may come here when we are trying to find a function in a GROUP BY
|
|
|
|
clause from the select list.
|
|
|
|
In this case the '100 % correct' way to do this would be to first
|
|
|
|
run fix_fields() on the GROUP BY item and then retry this function, but
|
|
|
|
I think it's better to relax the checking a bit as we will in
|
|
|
|
most cases do the correct thing by just checking the field name.
|
|
|
|
(In cases where we would choose wrong we would have to generate a
|
|
|
|
ER_NON_UNIQ_ERROR).
|
|
|
|
*/
|
|
|
|
return (!my_strcasecmp(system_charset_info, item_field->name,
|
|
|
|
field_name) &&
|
|
|
|
(!item_field->table_name ||
|
|
|
|
(!my_strcasecmp(table_alias_charset, item_field->table_name,
|
|
|
|
table_name) &&
|
|
|
|
(!item_field->db_name ||
|
|
|
|
(item_field->db_name && !my_strcasecmp(table_alias_charset,
|
|
|
|
item_field->db_name,
|
|
|
|
db_name))))));
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2003-10-30 11:57:26 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
table_map Item_field::used_tables() const
|
|
|
|
{
|
|
|
|
if (field->table->const_table)
|
|
|
|
return 0; // const item
|
2003-05-06 00:38:38 +02:00
|
|
|
return (depended_from ? OUTER_REF_TABLE_BIT : field->table->map);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2003-10-30 11:57:26 +01:00
|
|
|
|
2003-01-30 17:07:39 +01:00
|
|
|
Item *Item_field::get_tmp_table_item(THD *thd)
|
2003-01-25 01:25:52 +01:00
|
|
|
{
|
2003-01-30 17:07:39 +01:00
|
|
|
Item_field *new_item= new Item_field(thd, *this);
|
2003-01-25 01:25:52 +01:00
|
|
|
if (new_item)
|
|
|
|
new_item->field= new_item->result_field;
|
|
|
|
return new_item;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2003-10-30 11:57:26 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
String *Item_int::val_str(String *str)
|
|
|
|
{
|
2003-11-03 11:28:36 +01:00
|
|
|
str->set(value, &my_charset_bin);
|
2000-07-31 21:29:14 +02:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Item_int::print(String *str)
|
|
|
|
{
|
2003-11-03 11:28:36 +01:00
|
|
|
// my_charset_bin is good enough for numbers
|
|
|
|
str_value.set(value, &my_charset_bin);
|
2003-10-16 14:54:47 +02:00
|
|
|
str->append(str_value);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2003-10-30 11:57:26 +01:00
|
|
|
|
2001-09-14 01:54:33 +02:00
|
|
|
String *Item_uint::val_str(String *str)
|
|
|
|
{
|
2003-11-03 11:28:36 +01:00
|
|
|
str->set((ulonglong) value, &my_charset_bin);
|
2001-09-14 01:54:33 +02:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2003-10-30 11:57:26 +01:00
|
|
|
|
2001-09-14 01:54:33 +02:00
|
|
|
void Item_uint::print(String *str)
|
|
|
|
{
|
2003-10-30 11:57:26 +01:00
|
|
|
// latin1 is good enough for numbers
|
2003-10-16 14:54:47 +02:00
|
|
|
str_value.set((ulonglong) value, default_charset());
|
|
|
|
str->append(str_value);
|
2001-09-14 01:54:33 +02:00
|
|
|
}
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
String *Item_real::val_str(String *str)
|
|
|
|
{
|
2003-11-03 11:28:36 +01:00
|
|
|
str->set(value,decimals,&my_charset_bin);
|
2000-07-31 21:29:14 +02:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2003-10-30 11:57:26 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
void Item_string::print(String *str)
|
|
|
|
{
|
2003-10-12 16:56:05 +02:00
|
|
|
str->append('_');
|
|
|
|
str->append(collation.collation->csname);
|
2000-07-31 21:29:14 +02:00
|
|
|
str->append('\'');
|
2003-11-03 11:28:36 +01:00
|
|
|
str_value.print(str);
|
2000-07-31 21:29:14 +02:00
|
|
|
str->append('\'');
|
|
|
|
}
|
|
|
|
|
2002-03-22 13:03:42 +01:00
|
|
|
bool Item_null::eq(const Item *item, bool binary_cmp) const
|
|
|
|
{ return item->type() == type(); }
|
2000-07-31 21:29:14 +02:00
|
|
|
double Item_null::val() { null_value=1; return 0.0; }
|
|
|
|
longlong Item_null::val_int() { null_value=1; return 0; }
|
|
|
|
/* ARGSUSED */
|
|
|
|
String *Item_null::val_str(String *str)
|
|
|
|
{ null_value=1; return 0;}
|
|
|
|
|
|
|
|
|
2002-06-12 23:13:12 +02:00
|
|
|
/* Item_param related */
|
|
|
|
void Item_param::set_null()
|
2003-09-02 13:37:06 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_param::set_null");
|
2003-11-22 22:48:18 +01:00
|
|
|
maybe_null= null_value= value_is_set= 1;
|
2003-09-02 13:37:06 +02:00
|
|
|
DBUG_VOID_RETURN;
|
2002-06-12 23:13:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Item_param::set_int(longlong i)
|
2003-09-02 13:37:06 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_param::set_int");
|
|
|
|
int_value= (longlong)i;
|
|
|
|
item_type= INT_ITEM;
|
2003-11-22 22:48:18 +01:00
|
|
|
value_is_set= 1;
|
2003-09-02 13:37:06 +02:00
|
|
|
DBUG_PRINT("info", ("integer: %lld", int_value));
|
|
|
|
DBUG_VOID_RETURN;
|
2002-06-12 23:13:12 +02:00
|
|
|
}
|
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
void Item_param::set_double(double value)
|
2003-09-02 13:37:06 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_param::set_double");
|
2002-06-12 23:13:12 +02:00
|
|
|
real_value=value;
|
2003-09-02 13:37:06 +02:00
|
|
|
item_type= REAL_ITEM;
|
2003-11-22 22:48:18 +01:00
|
|
|
value_is_set= 1;
|
2003-09-02 13:37:06 +02:00
|
|
|
DBUG_PRINT("info", ("double: %lg", real_value));
|
|
|
|
DBUG_VOID_RETURN;
|
2002-06-12 23:13:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-22 19:04:42 +01:00
|
|
|
void Item_param::set_value(const char *str, uint length)
|
2003-09-02 13:37:06 +02:00
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_param::set_value");
|
|
|
|
str_value.copy(str,length,default_charset());
|
|
|
|
item_type= STRING_ITEM;
|
2003-11-22 22:48:18 +01:00
|
|
|
value_is_set= 1;
|
2003-09-02 13:37:06 +02:00
|
|
|
DBUG_PRINT("info", ("string: %s", str_value.ptr()));
|
|
|
|
DBUG_VOID_RETURN;
|
2002-06-12 23:13:12 +02:00
|
|
|
}
|
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
|
2003-01-24 07:32:39 +01:00
|
|
|
void Item_param::set_time(TIME *tm, timestamp_type type)
|
|
|
|
{
|
|
|
|
ltime.year= tm->year;
|
|
|
|
ltime.month= tm->month;
|
|
|
|
ltime.day= tm->day;
|
|
|
|
|
|
|
|
ltime.hour= tm->hour;
|
|
|
|
ltime.minute= tm->minute;
|
|
|
|
ltime.second= tm->second;
|
|
|
|
|
|
|
|
ltime.second_part= tm->second_part;
|
|
|
|
|
|
|
|
ltime.time_type= type;
|
|
|
|
|
|
|
|
item_is_time= true;
|
|
|
|
item_type= STRING_ITEM;
|
2003-11-22 22:48:18 +01:00
|
|
|
value_is_set= 1;
|
2003-01-24 07:32:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-11-22 19:04:42 +01:00
|
|
|
void Item_param::set_longdata(const char *str, ulong length)
|
|
|
|
{
|
|
|
|
str_value.append(str,length);
|
|
|
|
long_data_supplied= 1;
|
2003-11-22 22:48:18 +01:00
|
|
|
value_is_set= 1;
|
2002-06-12 23:13:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-07 08:39:11 +01:00
|
|
|
int Item_param::save_in_field(Field *field, bool no_conversions)
|
2002-06-12 23:13:12 +02:00
|
|
|
{
|
2003-07-30 11:01:53 +02:00
|
|
|
THD *thd= current_thd;
|
|
|
|
|
2003-12-02 13:09:35 +01:00
|
|
|
DBUG_ASSERT(thd->command == COM_EXECUTE);
|
2003-07-30 11:01:53 +02:00
|
|
|
|
2002-06-12 23:13:12 +02:00
|
|
|
if (null_value)
|
2002-10-02 12:33:08 +02:00
|
|
|
return (int) set_field_to_null(field);
|
2002-06-12 23:13:12 +02:00
|
|
|
|
|
|
|
field->set_notnull();
|
|
|
|
if (item_result_type == INT_RESULT)
|
|
|
|
{
|
|
|
|
longlong nr=val_int();
|
2002-08-24 13:49:04 +02:00
|
|
|
return (field->store(nr)) ? -1 : 0;
|
2002-06-12 23:13:12 +02:00
|
|
|
}
|
|
|
|
if (item_result_type == REAL_RESULT)
|
|
|
|
{
|
|
|
|
double nr=val();
|
2002-08-24 13:49:04 +02:00
|
|
|
return (field->store(nr)) ? -1 : 0;
|
2003-01-24 07:32:39 +01:00
|
|
|
}
|
|
|
|
if (item_is_time)
|
|
|
|
{
|
|
|
|
field->store_time(<ime, ltime.time_type);
|
|
|
|
return 0;
|
2002-06-12 23:13:12 +02:00
|
|
|
}
|
2002-11-06 14:01:12 +01:00
|
|
|
String *result=val_str(&str_value);
|
|
|
|
return (field->store(result->ptr(),result->length(),field->charset())) ? -1 : 0;
|
2002-06-12 23:13:12 +02:00
|
|
|
}
|
|
|
|
|
2003-01-24 07:32:39 +01:00
|
|
|
bool Item_param::get_time(TIME *res)
|
|
|
|
{
|
|
|
|
*res=ltime;
|
|
|
|
return 0;
|
|
|
|
}
|
2002-10-02 12:33:08 +02:00
|
|
|
|
2002-06-12 23:13:12 +02:00
|
|
|
double Item_param::val()
|
|
|
|
{
|
2003-01-16 14:17:07 +01:00
|
|
|
int err;
|
2002-10-02 12:33:08 +02:00
|
|
|
switch (item_result_type) {
|
2002-06-12 23:13:12 +02:00
|
|
|
case STRING_RESULT:
|
2003-01-14 13:28:36 +01:00
|
|
|
return (double) my_strntod(str_value.charset(), (char*) str_value.ptr(),
|
2003-01-16 14:17:07 +01:00
|
|
|
str_value.length(), (char**) 0, &err);
|
2002-06-12 23:13:12 +02:00
|
|
|
case INT_RESULT:
|
|
|
|
return (double)int_value;
|
|
|
|
default:
|
|
|
|
return real_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
|
2002-06-12 23:13:12 +02:00
|
|
|
longlong Item_param::val_int()
|
|
|
|
{
|
2003-01-16 14:17:07 +01:00
|
|
|
int err;
|
2002-10-02 12:33:08 +02:00
|
|
|
switch (item_result_type) {
|
2002-06-12 23:13:12 +02:00
|
|
|
case STRING_RESULT:
|
2003-01-16 14:17:07 +01:00
|
|
|
return my_strntoll(str_value.charset(),
|
|
|
|
str_value.ptr(),str_value.length(),10,
|
|
|
|
(char**) 0,&err);
|
2002-06-12 23:13:12 +02:00
|
|
|
case REAL_RESULT:
|
|
|
|
return (longlong) (real_value+(real_value > 0 ? 0.5 : -0.5));
|
|
|
|
default:
|
|
|
|
return int_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
|
2002-06-12 23:13:12 +02:00
|
|
|
String *Item_param::val_str(String* str)
|
|
|
|
{
|
2002-10-02 12:33:08 +02:00
|
|
|
switch (item_result_type) {
|
2002-06-12 23:13:12 +02:00
|
|
|
case INT_RESULT:
|
2003-12-19 15:25:50 +01:00
|
|
|
str->set(int_value, &my_charset_bin);
|
2002-06-12 23:13:12 +02:00
|
|
|
return str;
|
|
|
|
case REAL_RESULT:
|
2003-12-19 15:25:50 +01:00
|
|
|
str->set(real_value, 2, &my_charset_bin);
|
2002-06-12 23:13:12 +02:00
|
|
|
return str;
|
|
|
|
default:
|
|
|
|
return (String*) &str_value;
|
|
|
|
}
|
|
|
|
}
|
2003-04-04 19:33:17 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
Return Param item values in string format, for generating the dynamic
|
|
|
|
query used in update/binary logs
|
|
|
|
*/
|
|
|
|
|
|
|
|
String *Item_param::query_val_str(String* str)
|
|
|
|
{
|
|
|
|
switch (item_result_type) {
|
|
|
|
case INT_RESULT:
|
|
|
|
case REAL_RESULT:
|
2003-04-16 20:49:52 +02:00
|
|
|
return val_str(str);
|
2003-04-04 19:33:17 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
str->set("'", 1, default_charset());
|
|
|
|
|
|
|
|
if (!item_is_time)
|
|
|
|
{
|
|
|
|
str->append(str_value);
|
|
|
|
const char *from= str->ptr();
|
|
|
|
uint32 length= 1;
|
|
|
|
|
|
|
|
// Escape misc cases
|
|
|
|
char *to= (char *)from, *end= (char *)to+str->length();
|
|
|
|
for (to++; to != end ; length++, to++)
|
|
|
|
{
|
|
|
|
switch(*to) {
|
|
|
|
case '\'':
|
|
|
|
case '"':
|
|
|
|
case '\r':
|
|
|
|
case '\n':
|
|
|
|
case '\\': // TODO: Add remaining ..
|
|
|
|
str->replace(length,0,"\\",1);
|
|
|
|
to++; end++; length++;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-11-03 13:01:59 +01:00
|
|
|
char buff[40];
|
|
|
|
String tmp(buff,sizeof(buff), &my_charset_bin);
|
2003-04-04 19:33:17 +02:00
|
|
|
|
|
|
|
switch (ltime.time_type) {
|
2003-11-03 13:01:59 +01:00
|
|
|
case TIMESTAMP_NONE:
|
|
|
|
case TIMESTAMP_DATETIME_ERROR:
|
|
|
|
tmp.length(0); // Should never happen
|
|
|
|
break;
|
|
|
|
case TIMESTAMP_DATE:
|
|
|
|
make_date((DATE_TIME_FORMAT*) 0, <ime, &tmp);
|
|
|
|
break;
|
|
|
|
case TIMESTAMP_DATETIME:
|
|
|
|
make_datetime((DATE_TIME_FORMAT*) 0, <ime, &tmp);
|
|
|
|
break;
|
|
|
|
case TIMESTAMP_TIME:
|
|
|
|
make_time((DATE_TIME_FORMAT*) 0, <ime, &tmp);
|
|
|
|
break;
|
2003-04-04 19:33:17 +02:00
|
|
|
}
|
2003-11-03 13:01:59 +01:00
|
|
|
str->append(tmp);
|
2003-04-04 19:33:17 +02:00
|
|
|
}
|
2003-10-30 11:57:26 +01:00
|
|
|
str->append('\'');
|
2003-04-04 19:33:17 +02:00
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
2002-06-12 23:13:12 +02:00
|
|
|
/* End of Item_param related */
|
|
|
|
|
2002-10-02 12:33:08 +02:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
void Item_copy_string::copy()
|
|
|
|
{
|
|
|
|
String *res=item->val_str(&str_value);
|
|
|
|
if (res && res != &str_value)
|
|
|
|
str_value.copy(*res);
|
|
|
|
null_value=item->null_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
|
|
|
String *Item_copy_string::val_str(String *str)
|
|
|
|
{
|
|
|
|
if (null_value)
|
|
|
|
return (String*) 0;
|
|
|
|
return &str_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2002-10-02 12:33:08 +02:00
|
|
|
Functions to convert item to field (for send_fields)
|
2000-07-31 21:29:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* ARGSUSED */
|
|
|
|
bool Item::fix_fields(THD *thd,
|
2002-07-01 13:14:51 +02:00
|
|
|
struct st_table_list *list,
|
|
|
|
Item ** ref)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-11-21 10:01:33 +01:00
|
|
|
fixed= 1;
|
2000-07-31 21:29:14 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-12-06 20:55:53 +01:00
|
|
|
double Item_ref_null_helper::val()
|
|
|
|
{
|
|
|
|
double tmp= (*ref)->val_result();
|
2002-12-10 17:10:00 +01:00
|
|
|
owner->was_null|= null_value= (*ref)->null_value;
|
2002-12-06 20:55:53 +01:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
longlong Item_ref_null_helper::val_int()
|
|
|
|
{
|
|
|
|
longlong tmp= (*ref)->val_int_result();
|
2002-12-10 17:10:00 +01:00
|
|
|
owner->was_null|= null_value= (*ref)->null_value;
|
2002-12-06 20:55:53 +01:00
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
String* Item_ref_null_helper::val_str(String* s)
|
|
|
|
{
|
|
|
|
String* tmp= (*ref)->str_result(s);
|
2002-12-10 17:10:00 +01:00
|
|
|
owner->was_null|= null_value= (*ref)->null_value;
|
2002-12-06 20:55:53 +01:00
|
|
|
return tmp;
|
|
|
|
}
|
2003-11-03 13:01:59 +01:00
|
|
|
bool Item_ref_null_helper::get_date(TIME *ltime, uint fuzzydate)
|
2002-12-06 20:55:53 +01:00
|
|
|
{
|
|
|
|
return (owner->was_null|= null_value= (*ref)->get_date(ltime, fuzzydate));
|
|
|
|
}
|
2002-10-27 22:27:00 +01:00
|
|
|
|
2003-06-20 09:15:58 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
Mark item and SELECT_LEXs as dependent if it is not outer resolving
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
mark_as_dependent()
|
2003-07-25 00:02:42 +02:00
|
|
|
thd - thread handler
|
2003-06-20 09:15:58 +02:00
|
|
|
last - select from which current item depend
|
|
|
|
current - current select
|
|
|
|
item - item which should be marked
|
|
|
|
*/
|
|
|
|
|
2003-07-25 00:02:42 +02:00
|
|
|
static void mark_as_dependent(THD *thd, SELECT_LEX *last, SELECT_LEX *current,
|
2003-06-20 09:15:58 +02:00
|
|
|
Item_ident *item)
|
|
|
|
{
|
2003-07-02 00:45:22 +02:00
|
|
|
// store pointer on SELECT_LEX from wich item is dependent
|
|
|
|
item->depended_from= last;
|
|
|
|
current->mark_as_dependent(last);
|
2003-11-19 15:19:46 +01:00
|
|
|
if (thd->lex->describe & DESCRIBE_EXTENDED)
|
2003-07-25 00:02:42 +02:00
|
|
|
{
|
|
|
|
char warn_buff[MYSQL_ERRMSG_SIZE];
|
|
|
|
sprintf(warn_buff, ER(ER_WARN_FIELD_RESOLVED),
|
|
|
|
(item->db_name?item->db_name:""), (item->db_name?".":""),
|
|
|
|
(item->table_name?item->table_name:""), (item->table_name?".":""),
|
|
|
|
item->field_name,
|
|
|
|
current->select_number, last->select_number);
|
|
|
|
push_warning(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
|
|
|
|
ER_WARN_FIELD_RESOLVED, warn_buff);
|
|
|
|
}
|
2003-06-20 09:15:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-07-01 13:14:51 +02:00
|
|
|
bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2001-09-21 02:38:35 +02:00
|
|
|
if (!field) // If field is not checked
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-12-26 00:28:59 +01:00
|
|
|
TABLE_LIST *where= 0;
|
2003-10-11 16:41:15 +02:00
|
|
|
bool upward_lookup= 0;
|
2002-12-26 00:28:59 +01:00
|
|
|
Field *tmp= (Field *)not_found_field;
|
2003-07-02 00:45:22 +02:00
|
|
|
if ((tmp= find_field_in_tables(thd, this, tables, &where, 0)) ==
|
2002-12-26 00:28:59 +01:00
|
|
|
not_found_field)
|
2002-05-26 21:50:32 +02:00
|
|
|
{
|
|
|
|
/*
|
2003-10-11 13:06:55 +02:00
|
|
|
We can't find table field in table list of current select,
|
2002-05-26 21:50:32 +02:00
|
|
|
consequently we have to find it in outer subselect(s).
|
2003-10-11 13:06:55 +02:00
|
|
|
We can't join lists of outer & current select, because of scope
|
|
|
|
of view rules. For example if both tables (outer & current) have
|
|
|
|
field 'field' it is not mistake to refer to this field without
|
2002-05-26 21:50:32 +02:00
|
|
|
mention of table name, but if we join tables in one list it will
|
|
|
|
cause error ER_NON_UNIQ_ERROR in find_field_in_tables.
|
|
|
|
*/
|
2002-07-01 13:14:51 +02:00
|
|
|
SELECT_LEX *last= 0;
|
2002-07-11 10:43:21 +02:00
|
|
|
#ifdef EMBEDDED_LIBRARY
|
|
|
|
thd->net.last_errno= 0;
|
|
|
|
#endif
|
2003-05-21 22:35:51 +02:00
|
|
|
TABLE_LIST *table_list;
|
2002-11-21 10:01:33 +01:00
|
|
|
Item **refer= (Item **)not_found_item;
|
2003-01-30 17:07:39 +01:00
|
|
|
uint counter;
|
2002-11-11 09:49:41 +01:00
|
|
|
// Prevent using outer fields in subselects, that is not supported now
|
2003-12-19 18:52:13 +01:00
|
|
|
SELECT_LEX *cursel= (SELECT_LEX *) thd->lex->current_select;
|
2003-07-02 00:45:22 +02:00
|
|
|
if (cursel->master_unit()->first_select()->linkage != DERIVED_TABLE_TYPE)
|
2003-10-16 23:36:01 +02:00
|
|
|
{
|
|
|
|
SELECT_LEX_UNIT *prev_unit= cursel->master_unit();
|
|
|
|
for (SELECT_LEX *sl= prev_unit->outer_select();
|
2002-11-11 09:49:41 +01:00
|
|
|
sl;
|
2003-10-16 23:36:01 +02:00
|
|
|
sl= (prev_unit= sl->master_unit())->outer_select())
|
2002-11-21 10:01:33 +01:00
|
|
|
{
|
2003-10-11 16:41:15 +02:00
|
|
|
upward_lookup= 1;
|
2003-05-21 22:35:51 +02:00
|
|
|
table_list= (last= sl)->get_table_list();
|
2003-07-29 15:59:46 +02:00
|
|
|
if (sl->resolve_mode == SELECT_LEX::INSERT_MODE && table_list)
|
2003-05-21 22:35:51 +02:00
|
|
|
{
|
|
|
|
// it is primary INSERT st_select_lex => skip first table resolving
|
|
|
|
table_list= table_list->next;
|
|
|
|
}
|
2003-10-23 19:50:53 +02:00
|
|
|
|
|
|
|
Item_subselect *prev_subselect_item= prev_unit->item;
|
2002-11-11 09:49:41 +01:00
|
|
|
if ((tmp= find_field_in_tables(thd, this,
|
2003-05-21 22:35:51 +02:00
|
|
|
table_list, &where,
|
2002-11-11 09:49:41 +01:00
|
|
|
0)) != not_found_field)
|
2003-10-16 23:36:01 +02:00
|
|
|
{
|
2003-10-23 19:50:53 +02:00
|
|
|
prev_subselect_item->used_tables_cache|= tmp->table->map;
|
|
|
|
prev_subselect_item->const_item_cache= 0;
|
2002-11-11 09:49:41 +01:00
|
|
|
break;
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
2003-07-29 15:59:46 +02:00
|
|
|
if (sl->resolve_mode == SELECT_LEX::SELECT_MODE &&
|
2003-10-11 13:06:55 +02:00
|
|
|
(refer= find_item_in_list(this, sl->item_list, &counter,
|
|
|
|
REPORT_EXCEPT_NOT_FOUND)) !=
|
2003-05-13 10:15:11 +02:00
|
|
|
(Item **) not_found_item)
|
2003-10-16 23:36:01 +02:00
|
|
|
{
|
|
|
|
if (*refer && (*refer)->fixed) // Avoid crash in case of error
|
|
|
|
{
|
2003-10-23 19:50:53 +02:00
|
|
|
prev_subselect_item->used_tables_cache|= (*refer)->used_tables();
|
|
|
|
prev_subselect_item->const_item_cache&= (*refer)->const_item();
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
2002-11-21 10:01:33 +01:00
|
|
|
break;
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reference is not found => depend from outer (or just error)
|
2003-10-23 19:50:53 +02:00
|
|
|
prev_subselect_item->used_tables_cache|= OUTER_REF_TABLE_BIT;
|
|
|
|
prev_subselect_item->const_item_cache= 0;
|
2003-10-16 23:36:01 +02:00
|
|
|
|
2002-12-17 22:18:19 +01:00
|
|
|
if (sl->master_unit()->first_select()->linkage ==
|
|
|
|
DERIVED_TABLE_TYPE)
|
2002-11-25 09:58:49 +01:00
|
|
|
break; // do not look over derived table
|
2002-11-21 10:01:33 +01:00
|
|
|
}
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
2002-05-26 21:50:32 +02:00
|
|
|
if (!tmp)
|
2002-10-08 13:50:12 +02:00
|
|
|
return -1;
|
2002-11-21 10:01:33 +01:00
|
|
|
else if (!refer)
|
|
|
|
return 1;
|
|
|
|
else if (tmp == not_found_field && refer == (Item **)not_found_item)
|
2002-10-03 15:35:08 +02:00
|
|
|
{
|
2003-10-11 16:41:15 +02:00
|
|
|
if (upward_lookup)
|
2003-11-02 15:56:39 +01:00
|
|
|
{
|
2003-10-11 16:41:15 +02:00
|
|
|
// We can't say exactly what absend table or field
|
|
|
|
my_printf_error(ER_BAD_FIELD_ERROR, ER(ER_BAD_FIELD_ERROR), MYF(0),
|
|
|
|
full_name(), thd->where);
|
2003-11-02 15:56:39 +01:00
|
|
|
}
|
2003-10-11 16:41:15 +02:00
|
|
|
else
|
2003-11-02 15:56:39 +01:00
|
|
|
{
|
2003-10-11 16:41:15 +02:00
|
|
|
// Call to report error
|
|
|
|
find_field_in_tables(thd, this, tables, &where, 1);
|
2003-11-02 15:56:39 +01:00
|
|
|
}
|
2002-10-03 15:35:08 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2002-11-21 10:01:33 +01:00
|
|
|
else if (refer != (Item **)not_found_item)
|
|
|
|
{
|
2003-01-25 01:25:52 +01:00
|
|
|
if (!(*refer)->fixed)
|
|
|
|
{
|
|
|
|
my_error(ER_ILLEGAL_REFERENCE, MYF(0), name,
|
|
|
|
"forward reference in item list");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-06-20 09:15:58 +02:00
|
|
|
Item_ref *rf;
|
|
|
|
*ref= rf= new Item_ref(last->ref_pointer_array + counter,
|
|
|
|
(char *)table_name,
|
|
|
|
(char *)field_name);
|
|
|
|
if (!rf)
|
2002-11-21 10:01:33 +01:00
|
|
|
return 1;
|
2003-06-20 09:15:58 +02:00
|
|
|
if (rf->fix_fields(thd, tables, ref) || rf->check_cols(1))
|
2002-11-29 11:30:04 +01:00
|
|
|
return 1;
|
2003-06-20 09:15:58 +02:00
|
|
|
|
2003-07-25 00:02:42 +02:00
|
|
|
mark_as_dependent(thd, last, cursel, rf);
|
2002-11-21 10:01:33 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2002-05-26 21:50:32 +02:00
|
|
|
else
|
2002-07-01 13:14:51 +02:00
|
|
|
{
|
2003-07-25 00:02:42 +02:00
|
|
|
mark_as_dependent(thd, last, cursel, this);
|
2003-06-20 09:15:58 +02:00
|
|
|
if (last->having_fix_field)
|
2002-12-26 00:28:59 +01:00
|
|
|
{
|
|
|
|
Item_ref *rf;
|
|
|
|
*ref= rf= new Item_ref((where->db[0]?where->db:0),
|
|
|
|
(char *)where->alias,
|
|
|
|
(char *)field_name);
|
|
|
|
if (!rf)
|
|
|
|
return 1;
|
2003-01-21 12:55:26 +01:00
|
|
|
return rf->fix_fields(thd, tables, ref) || rf->check_cols(1);
|
2002-12-26 00:28:59 +01:00
|
|
|
}
|
2002-07-01 13:14:51 +02:00
|
|
|
}
|
2003-06-04 17:28:51 +02:00
|
|
|
}
|
2002-10-08 13:50:12 +02:00
|
|
|
else if (!tmp)
|
|
|
|
return -1;
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
set_field(tmp);
|
|
|
|
}
|
2003-10-31 15:52:00 +01:00
|
|
|
else if (thd->set_query_id && field->query_id != thd->query_id)
|
2001-09-21 02:38:35 +02:00
|
|
|
{
|
|
|
|
/* We only come here in unions */
|
|
|
|
TABLE *table=field->table;
|
|
|
|
field->query_id=thd->query_id;
|
|
|
|
table->used_fields++;
|
2003-10-11 13:06:55 +02:00
|
|
|
table->used_keys.intersect(field->part_of_key);
|
2001-09-21 02:38:35 +02:00
|
|
|
}
|
2002-11-21 10:01:33 +01:00
|
|
|
fixed= 1;
|
2000-07-31 21:29:14 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Item::init_make_field(Send_field *tmp_field,
|
|
|
|
enum enum_field_types field_type)
|
2003-10-11 13:06:55 +02:00
|
|
|
{
|
2003-02-04 02:19:19 +01:00
|
|
|
char *empty_name= (char*) "";
|
2003-10-11 13:06:55 +02:00
|
|
|
tmp_field->db_name= empty_name;
|
2003-02-04 02:19:19 +01:00
|
|
|
tmp_field->org_table_name= empty_name;
|
|
|
|
tmp_field->org_col_name= empty_name;
|
|
|
|
tmp_field->table_name= empty_name;
|
|
|
|
tmp_field->col_name= name;
|
2003-10-11 13:06:55 +02:00
|
|
|
tmp_field->charsetnr= collation.collation->number;
|
2000-07-31 21:29:14 +02:00
|
|
|
tmp_field->flags=maybe_null ? 0 : NOT_NULL_FLAG;
|
|
|
|
tmp_field->type=field_type;
|
|
|
|
tmp_field->length=max_length;
|
|
|
|
tmp_field->decimals=decimals;
|
2001-09-27 20:45:48 +02:00
|
|
|
if (unsigned_flag)
|
|
|
|
tmp_field->flags |= UNSIGNED_FLAG;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2002-12-11 08:17:51 +01:00
|
|
|
void Item::make_field(Send_field *tmp_field)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-12-11 08:17:51 +01:00
|
|
|
init_make_field(tmp_field, field_type());
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-21 20:21:07 +02:00
|
|
|
void Item_empty_string::make_field(Send_field *tmp_field)
|
|
|
|
{
|
|
|
|
init_make_field(tmp_field,FIELD_TYPE_VAR_STRING);
|
|
|
|
}
|
|
|
|
|
2002-07-25 00:00:56 +02:00
|
|
|
|
2002-12-11 08:17:51 +01:00
|
|
|
enum_field_types Item::field_type() const
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-12-11 08:17:51 +01:00
|
|
|
return ((result_type() == STRING_RESULT) ? FIELD_TYPE_VAR_STRING :
|
|
|
|
(result_type() == INT_RESULT) ? FIELD_TYPE_LONGLONG :
|
|
|
|
FIELD_TYPE_DOUBLE);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2003-11-03 13:01:59 +01:00
|
|
|
|
2003-08-28 01:11:54 +02:00
|
|
|
Field *Item::tmp_table_field_from_field_type(TABLE *table)
|
|
|
|
{
|
2003-12-15 16:58:15 +01:00
|
|
|
/*
|
|
|
|
The field functions defines a field to be not null if null_ptr is not 0
|
|
|
|
*/
|
|
|
|
uchar *null_ptr= maybe_null ? (uchar*) "" : 0;
|
|
|
|
|
|
|
|
switch (field_type()) {
|
2003-08-28 01:11:54 +02:00
|
|
|
case MYSQL_TYPE_DECIMAL:
|
2003-12-15 16:58:15 +01:00
|
|
|
return new Field_decimal((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table, decimals, 0, unsigned_flag);
|
2003-08-28 01:11:54 +02:00
|
|
|
case MYSQL_TYPE_TINY:
|
2003-12-15 16:58:15 +01:00
|
|
|
return new Field_tiny((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table, 0, unsigned_flag);
|
2003-08-28 01:11:54 +02:00
|
|
|
case MYSQL_TYPE_SHORT:
|
2003-12-15 16:58:15 +01:00
|
|
|
return new Field_short((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table, 0, unsigned_flag);
|
2003-08-28 01:11:54 +02:00
|
|
|
case MYSQL_TYPE_LONG:
|
2003-12-15 16:58:15 +01:00
|
|
|
return new Field_long((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table, 0, unsigned_flag);
|
2003-08-28 01:11:54 +02:00
|
|
|
#ifdef HAVE_LONG_LONG
|
|
|
|
case MYSQL_TYPE_LONGLONG:
|
2003-12-15 16:58:15 +01:00
|
|
|
return new Field_longlong((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table, 0, unsigned_flag);
|
2003-08-28 01:11:54 +02:00
|
|
|
#endif
|
2003-12-15 16:58:15 +01:00
|
|
|
case MYSQL_TYPE_FLOAT:
|
|
|
|
return new Field_float((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table, decimals, 0, unsigned_flag);
|
|
|
|
case MYSQL_TYPE_DOUBLE:
|
|
|
|
return new Field_double((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table, decimals, 0, unsigned_flag);
|
|
|
|
case MYSQL_TYPE_NULL:
|
|
|
|
return new Field_null((char*) 0, max_length, Field::NONE,
|
|
|
|
name, table, &my_charset_bin);
|
2003-08-28 01:11:54 +02:00
|
|
|
case MYSQL_TYPE_NEWDATE:
|
|
|
|
case MYSQL_TYPE_INT24:
|
2003-12-15 16:58:15 +01:00
|
|
|
return new Field_medium((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table, 0, unsigned_flag);
|
2003-08-28 01:11:54 +02:00
|
|
|
case MYSQL_TYPE_DATE:
|
|
|
|
return new Field_date(maybe_null, name, table, &my_charset_bin);
|
|
|
|
case MYSQL_TYPE_TIME:
|
|
|
|
return new Field_time(maybe_null, name, table, &my_charset_bin);
|
|
|
|
case MYSQL_TYPE_TIMESTAMP:
|
|
|
|
case MYSQL_TYPE_DATETIME:
|
|
|
|
return new Field_datetime(maybe_null, name, table, &my_charset_bin);
|
|
|
|
case MYSQL_TYPE_YEAR:
|
2003-12-15 16:58:15 +01:00
|
|
|
return new Field_year((char*) 0, max_length, null_ptr, 0, Field::NONE,
|
|
|
|
name, table);
|
|
|
|
default:
|
|
|
|
/* This case should never be choosen */
|
|
|
|
DBUG_ASSERT(0);
|
|
|
|
/* If something goes awfully wrong, it's better to get a string than die */
|
2003-08-28 01:11:54 +02:00
|
|
|
case MYSQL_TYPE_ENUM:
|
|
|
|
case MYSQL_TYPE_SET:
|
2003-12-15 16:58:15 +01:00
|
|
|
case MYSQL_TYPE_VAR_STRING:
|
|
|
|
if (max_length > 255)
|
|
|
|
break; // If blob
|
|
|
|
return new Field_varstring(max_length, maybe_null, name, table,
|
|
|
|
collation.collation);
|
|
|
|
case MYSQL_TYPE_STRING:
|
|
|
|
if (max_length > 255) // If blob
|
|
|
|
break;
|
|
|
|
return new Field_string(max_length, maybe_null, name, table,
|
|
|
|
collation.collation);
|
2003-08-28 01:11:54 +02:00
|
|
|
case MYSQL_TYPE_TINY_BLOB:
|
|
|
|
case MYSQL_TYPE_MEDIUM_BLOB:
|
|
|
|
case MYSQL_TYPE_LONG_BLOB:
|
|
|
|
case MYSQL_TYPE_BLOB:
|
|
|
|
case MYSQL_TYPE_GEOMETRY:
|
2003-12-15 16:58:15 +01:00
|
|
|
break; // Blob handled outside of case
|
2003-08-28 01:11:54 +02:00
|
|
|
}
|
2003-12-15 16:58:15 +01:00
|
|
|
|
|
|
|
/* blob is special as it's generated for both blobs and long strings */
|
|
|
|
return new Field_blob(max_length, maybe_null, name, table,
|
|
|
|
collation.collation);
|
2003-08-28 01:11:54 +02:00
|
|
|
}
|
|
|
|
|
2003-12-15 16:58:15 +01:00
|
|
|
|
2002-12-11 08:17:51 +01:00
|
|
|
/* ARGSUSED */
|
|
|
|
void Item_field::make_field(Send_field *tmp_field)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-12-11 08:17:51 +01:00
|
|
|
field->make_field(tmp_field);
|
|
|
|
if (name)
|
|
|
|
tmp_field->col_name=name; // Use user supplied name
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Set a field:s value from a item
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
void Item_field::save_org_in_field(Field *to)
|
|
|
|
{
|
|
|
|
if (field->is_null())
|
|
|
|
{
|
|
|
|
null_value=1;
|
2002-12-03 12:08:25 +01:00
|
|
|
set_field_to_null_with_conversions(to, 1);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
to->set_notnull();
|
|
|
|
field_conv(to,field);
|
|
|
|
null_value=0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-12-05 18:38:42 +01:00
|
|
|
int Item_field::save_in_field(Field *to, bool no_conversions)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
if (result_field->is_null())
|
|
|
|
{
|
|
|
|
null_value=1;
|
2002-12-03 12:08:25 +01:00
|
|
|
return set_field_to_null_with_conversions(to, no_conversions);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
to->set_notnull();
|
|
|
|
field_conv(to,result_field);
|
|
|
|
null_value=0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-10-16 09:32:45 +02:00
|
|
|
|
2002-10-16 21:48:51 +02:00
|
|
|
/*
|
|
|
|
Store null in field
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
save_in_field()
|
|
|
|
field Field where we want to store NULL
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
This is used on INSERT.
|
|
|
|
Allow NULL to be inserted in timestamp and auto_increment values
|
|
|
|
|
|
|
|
RETURN VALUES
|
|
|
|
0 ok
|
|
|
|
1 Field doesn't support NULL values and can't handle 'field = NULL'
|
|
|
|
*/
|
|
|
|
|
2002-12-05 18:38:42 +01:00
|
|
|
int Item_null::save_in_field(Field *field, bool no_conversions)
|
2002-10-16 21:48:51 +02:00
|
|
|
{
|
2002-12-03 12:08:25 +01:00
|
|
|
return set_field_to_null_with_conversions(field, no_conversions);
|
2002-10-16 21:48:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-10-16 09:32:45 +02:00
|
|
|
/*
|
|
|
|
Store null in field
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
save_safe_in_field()
|
|
|
|
field Field where we want to store NULL
|
|
|
|
|
|
|
|
RETURN VALUES
|
|
|
|
0 ok
|
|
|
|
1 Field doesn't support NULL values
|
|
|
|
*/
|
|
|
|
|
2002-10-16 18:30:24 +02:00
|
|
|
int Item_null::save_safe_in_field(Field *field)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
return set_field_to_null(field);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-05 18:38:42 +01:00
|
|
|
int Item::save_in_field(Field *field, bool no_conversions)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-08-24 13:49:04 +02:00
|
|
|
int error;
|
2000-07-31 21:29:14 +02:00
|
|
|
if (result_type() == STRING_RESULT ||
|
|
|
|
result_type() == REAL_RESULT &&
|
|
|
|
field->result_type() == STRING_RESULT)
|
|
|
|
{
|
|
|
|
String *result;
|
2003-08-05 09:52:37 +02:00
|
|
|
CHARSET_INFO *cs= collation.collation;
|
2000-07-31 21:29:14 +02:00
|
|
|
char buff[MAX_FIELD_WIDTH]; // Alloc buffer for small columns
|
2002-05-17 13:29:52 +02:00
|
|
|
str_value.set_quick(buff,sizeof(buff),cs);
|
2000-07-31 21:29:14 +02:00
|
|
|
result=val_str(&str_value);
|
|
|
|
if (null_value)
|
2002-12-03 12:08:25 +01:00
|
|
|
return set_field_to_null_with_conversions(field, no_conversions);
|
2000-07-31 21:29:14 +02:00
|
|
|
field->set_notnull();
|
2002-08-24 13:49:04 +02:00
|
|
|
error=field->store(result->ptr(),result->length(),cs);
|
2002-05-17 13:29:52 +02:00
|
|
|
str_value.set_quick(0, 0, cs);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
else if (result_type() == REAL_RESULT)
|
|
|
|
{
|
|
|
|
double nr=val();
|
|
|
|
if (null_value)
|
|
|
|
return set_field_to_null(field);
|
|
|
|
field->set_notnull();
|
2002-08-24 13:49:04 +02:00
|
|
|
error=field->store(nr);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
longlong nr=val_int();
|
|
|
|
if (null_value)
|
2002-12-03 12:08:25 +01:00
|
|
|
return set_field_to_null_with_conversions(field, no_conversions);
|
2000-07-31 21:29:14 +02:00
|
|
|
field->set_notnull();
|
2002-08-24 13:49:04 +02:00
|
|
|
error=field->store(nr);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2002-08-24 13:49:04 +02:00
|
|
|
return (error) ? -1 : 0;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2002-10-16 09:32:45 +02:00
|
|
|
|
2002-12-05 18:38:42 +01:00
|
|
|
int Item_string::save_in_field(Field *field, bool no_conversions)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
String *result;
|
|
|
|
result=val_str(&str_value);
|
|
|
|
if (null_value)
|
|
|
|
return set_field_to_null(field);
|
|
|
|
field->set_notnull();
|
2003-08-05 09:52:37 +02:00
|
|
|
return (field->store(result->ptr(),result->length(),collation.collation)) ?
|
|
|
|
-1 : 0;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2003-11-20 21:30:48 +01:00
|
|
|
int Item_uint::save_in_field(Field *field, bool no_conversions)
|
2003-11-16 17:37:15 +01:00
|
|
|
{
|
2003-11-20 23:17:46 +01:00
|
|
|
/*
|
|
|
|
TODO: To be fixed when wen have a
|
|
|
|
field->store(longlong, unsigned_flag) method
|
|
|
|
*/
|
2003-11-21 00:53:01 +01:00
|
|
|
return Item_int::save_in_field(field, no_conversions);
|
2003-11-16 17:37:15 +01:00
|
|
|
}
|
|
|
|
|
2002-12-05 18:38:42 +01:00
|
|
|
|
|
|
|
int Item_int::save_in_field(Field *field, bool no_conversions)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
longlong nr=val_int();
|
|
|
|
if (null_value)
|
|
|
|
return set_field_to_null(field);
|
|
|
|
field->set_notnull();
|
2002-08-24 13:49:04 +02:00
|
|
|
return (field->store(nr)) ? -1 : 0;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2002-12-05 18:38:42 +01:00
|
|
|
|
|
|
|
int Item_real::save_in_field(Field *field, bool no_conversions)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
double nr=val();
|
|
|
|
if (null_value)
|
|
|
|
return set_field_to_null(field);
|
|
|
|
field->set_notnull();
|
2002-08-24 13:49:04 +02:00
|
|
|
return (field->store(nr)) ? -1 : 0;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
** varbinary item
|
|
|
|
** In string context this is a binary string
|
|
|
|
** In number context this is a longlong value.
|
|
|
|
****************************************************************************/
|
|
|
|
|
2001-01-25 21:38:26 +01:00
|
|
|
inline uint char_val(char X)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
return (uint) (X >= '0' && X <= '9' ? X-'0' :
|
|
|
|
X >= 'A' && X <= 'Z' ? X-'A'+10 :
|
|
|
|
X-'a'+10);
|
|
|
|
}
|
|
|
|
|
2003-04-27 21:12:08 +02:00
|
|
|
|
2002-10-25 10:58:32 +02:00
|
|
|
Item_varbinary::Item_varbinary(const char *str, uint str_length)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
name=(char*) str-2; // Lex makes this start with 0x
|
|
|
|
max_length=(str_length+1)/2;
|
|
|
|
char *ptr=(char*) sql_alloc(max_length+1);
|
|
|
|
if (!ptr)
|
|
|
|
return;
|
2003-01-29 14:31:20 +01:00
|
|
|
str_value.set(ptr,max_length,&my_charset_bin);
|
2000-07-31 21:29:14 +02:00
|
|
|
char *end=ptr+max_length;
|
|
|
|
if (max_length*2 != str_length)
|
|
|
|
*ptr++=char_val(*str++); // Not even, assume 0 prefix
|
|
|
|
while (ptr != end)
|
|
|
|
{
|
|
|
|
*ptr++= (char) (char_val(str[0])*16+char_val(str[1]));
|
|
|
|
str+=2;
|
|
|
|
}
|
|
|
|
*ptr=0; // Keep purify happy
|
2003-08-05 09:52:37 +02:00
|
|
|
collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
longlong Item_varbinary::val_int()
|
|
|
|
{
|
|
|
|
char *end=(char*) str_value.ptr()+str_value.length(),
|
|
|
|
*ptr=end-min(str_value.length(),sizeof(longlong));
|
|
|
|
|
|
|
|
ulonglong value=0;
|
|
|
|
for (; ptr != end ; ptr++)
|
|
|
|
value=(value << 8)+ (ulonglong) (uchar) *ptr;
|
|
|
|
return (longlong) value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-05 18:38:42 +01:00
|
|
|
int Item_varbinary::save_in_field(Field *field, bool no_conversions)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-08-24 13:49:04 +02:00
|
|
|
int error;
|
2000-07-31 21:29:14 +02:00
|
|
|
field->set_notnull();
|
|
|
|
if (field->result_type() == STRING_RESULT)
|
|
|
|
{
|
2003-08-05 09:52:37 +02:00
|
|
|
error=field->store(str_value.ptr(),str_value.length(),collation.collation);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
longlong nr=val_int();
|
2002-08-24 13:49:04 +02:00
|
|
|
error=field->store(nr);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2002-08-24 13:49:04 +02:00
|
|
|
return (error) ? -1 : 0;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-11 08:17:51 +01:00
|
|
|
/*
|
|
|
|
Pack data in buffer for sending
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool Item_null::send(Protocol *protocol, String *packet)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-12-11 08:17:51 +01:00
|
|
|
return protocol->store_null();
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2002-12-11 08:17:51 +01:00
|
|
|
This is only called from items that is not of type item_field
|
2000-07-31 21:29:14 +02:00
|
|
|
*/
|
|
|
|
|
2002-12-11 08:17:51 +01:00
|
|
|
bool Item::send(Protocol *protocol, String *buffer)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-12-11 08:17:51 +01:00
|
|
|
bool result;
|
|
|
|
enum_field_types type;
|
|
|
|
LINT_INIT(result);
|
|
|
|
|
|
|
|
switch ((type=field_type())) {
|
|
|
|
default:
|
2002-12-14 16:43:01 +01:00
|
|
|
case MYSQL_TYPE_NULL:
|
|
|
|
case MYSQL_TYPE_DECIMAL:
|
|
|
|
case MYSQL_TYPE_ENUM:
|
|
|
|
case MYSQL_TYPE_SET:
|
|
|
|
case MYSQL_TYPE_TINY_BLOB:
|
|
|
|
case MYSQL_TYPE_MEDIUM_BLOB:
|
|
|
|
case MYSQL_TYPE_LONG_BLOB:
|
|
|
|
case MYSQL_TYPE_BLOB:
|
|
|
|
case MYSQL_TYPE_GEOMETRY:
|
2002-12-11 08:17:51 +01:00
|
|
|
case MYSQL_TYPE_STRING:
|
|
|
|
case MYSQL_TYPE_VAR_STRING:
|
|
|
|
{
|
|
|
|
String *res;
|
|
|
|
if ((res=val_str(buffer)))
|
2003-03-17 10:14:04 +01:00
|
|
|
result= protocol->store(res->ptr(),res->length(),res->charset());
|
2002-12-11 08:17:51 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MYSQL_TYPE_TINY:
|
|
|
|
{
|
|
|
|
longlong nr;
|
|
|
|
nr= val_int();
|
|
|
|
if (!null_value)
|
|
|
|
result= protocol->store_tiny(nr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MYSQL_TYPE_SHORT:
|
|
|
|
{
|
|
|
|
longlong nr;
|
|
|
|
nr= val_int();
|
|
|
|
if (!null_value)
|
|
|
|
result= protocol->store_short(nr);
|
|
|
|
break;
|
|
|
|
}
|
2002-12-14 16:43:01 +01:00
|
|
|
case MYSQL_TYPE_INT24:
|
2002-12-11 08:17:51 +01:00
|
|
|
case MYSQL_TYPE_LONG:
|
|
|
|
{
|
|
|
|
longlong nr;
|
|
|
|
nr= val_int();
|
|
|
|
if (!null_value)
|
|
|
|
result= protocol->store_long(nr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MYSQL_TYPE_LONGLONG:
|
|
|
|
{
|
|
|
|
longlong nr;
|
|
|
|
nr= val_int();
|
|
|
|
if (!null_value)
|
|
|
|
result= protocol->store_longlong(nr, unsigned_flag);
|
|
|
|
break;
|
|
|
|
}
|
2003-10-20 15:52:45 +02:00
|
|
|
case MYSQL_TYPE_FLOAT:
|
|
|
|
{
|
|
|
|
float nr;
|
2003-11-20 21:06:25 +01:00
|
|
|
nr= (float) val();
|
2003-10-20 15:52:45 +02:00
|
|
|
if (!null_value)
|
|
|
|
result= protocol->store(nr, decimals, buffer);
|
|
|
|
break;
|
|
|
|
}
|
2002-12-11 08:17:51 +01:00
|
|
|
case MYSQL_TYPE_DOUBLE:
|
|
|
|
{
|
|
|
|
double nr;
|
|
|
|
nr= val();
|
|
|
|
if (!null_value)
|
|
|
|
result= protocol->store(nr, decimals, buffer);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MYSQL_TYPE_DATETIME:
|
|
|
|
case MYSQL_TYPE_DATE:
|
2002-12-14 16:43:01 +01:00
|
|
|
case MYSQL_TYPE_TIMESTAMP:
|
2002-12-11 08:17:51 +01:00
|
|
|
{
|
|
|
|
TIME tm;
|
2003-11-03 13:01:59 +01:00
|
|
|
get_date(&tm, TIME_FUZZY_DATE);
|
2002-12-11 08:17:51 +01:00
|
|
|
if (!null_value)
|
|
|
|
{
|
|
|
|
if (type == MYSQL_TYPE_DATE)
|
|
|
|
return protocol->store_date(&tm);
|
|
|
|
else
|
|
|
|
result= protocol->store(&tm);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case MYSQL_TYPE_TIME:
|
|
|
|
{
|
|
|
|
TIME tm;
|
|
|
|
get_time(&tm);
|
|
|
|
if (!null_value)
|
|
|
|
result= protocol->store_time(&tm);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (null_value)
|
|
|
|
result= protocol->store_null();
|
|
|
|
return result;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
2002-12-11 08:17:51 +01:00
|
|
|
|
|
|
|
bool Item_field::send(Protocol *protocol, String *buffer)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2002-12-11 08:17:51 +01:00
|
|
|
return protocol->store(result_field);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
This is used for HAVING clause
|
|
|
|
Find field in select list having the same name
|
|
|
|
*/
|
|
|
|
|
2002-07-01 13:14:51 +02:00
|
|
|
bool Item_ref::fix_fields(THD *thd,TABLE_LIST *tables, Item **reference)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2003-01-30 17:07:39 +01:00
|
|
|
uint counter;
|
2000-07-31 21:29:14 +02:00
|
|
|
if (!ref)
|
|
|
|
{
|
2003-05-21 22:35:51 +02:00
|
|
|
TABLE_LIST *where= 0, *table_list;
|
2003-10-11 16:41:15 +02:00
|
|
|
bool upward_lookup= 0;
|
2003-11-19 15:19:46 +01:00
|
|
|
SELECT_LEX_UNIT *prev_unit= thd->lex->current_select->master_unit();
|
2003-10-16 23:36:01 +02:00
|
|
|
SELECT_LEX *sl= prev_unit->outer_select();
|
2002-11-11 09:49:41 +01:00
|
|
|
/*
|
|
|
|
Finding only in current select will be performed for selects that have
|
|
|
|
not outer one and for derived tables (which not support using outer
|
|
|
|
fields for now)
|
|
|
|
*/
|
2003-07-02 00:45:22 +02:00
|
|
|
if ((ref= find_item_in_list(this,
|
2003-05-05 20:54:37 +02:00
|
|
|
*(thd->lex->current_select->get_item_list()),
|
2003-01-25 01:25:52 +01:00
|
|
|
&counter,
|
2002-11-11 09:49:41 +01:00
|
|
|
((sl &&
|
2003-05-05 20:54:37 +02:00
|
|
|
thd->lex->current_select->master_unit()->
|
2002-12-17 22:18:19 +01:00
|
|
|
first_select()->linkage !=
|
2002-11-11 09:49:41 +01:00
|
|
|
DERIVED_TABLE_TYPE) ?
|
|
|
|
REPORT_EXCEPT_NOT_FOUND :
|
|
|
|
REPORT_ALL_ERRORS))) ==
|
2002-10-08 14:34:39 +02:00
|
|
|
(Item **)not_found_item)
|
2002-07-01 13:14:51 +02:00
|
|
|
{
|
2003-10-11 16:41:15 +02:00
|
|
|
upward_lookup= 1;
|
2002-11-24 20:10:52 +01:00
|
|
|
Field *tmp= (Field*) not_found_field;
|
2002-07-01 13:14:51 +02:00
|
|
|
/*
|
2002-10-27 17:22:58 +01:00
|
|
|
We can't find table field in table list of current select,
|
2002-07-01 13:14:51 +02:00
|
|
|
consequently we have to find it in outer subselect(s).
|
2002-10-27 17:22:58 +01:00
|
|
|
We can't join lists of outer & current select, because of scope
|
|
|
|
of view rules. For example if both tables (outer & current) have
|
|
|
|
field 'field' it is not mistake to refer to this field without
|
2002-07-01 13:14:51 +02:00
|
|
|
mention of table name, but if we join tables in one list it will
|
2002-10-08 13:50:12 +02:00
|
|
|
cause error ER_NON_UNIQ_ERROR in find_item_in_list.
|
2002-07-01 13:14:51 +02:00
|
|
|
*/
|
|
|
|
SELECT_LEX *last=0;
|
2003-10-16 23:36:01 +02:00
|
|
|
for ( ; sl ; sl= (prev_unit= sl->master_unit())->outer_select())
|
2002-11-24 20:10:52 +01:00
|
|
|
{
|
2003-07-29 15:59:46 +02:00
|
|
|
last= sl;
|
2003-10-23 19:50:53 +02:00
|
|
|
Item_subselect *prev_subselect_item= prev_unit->item;
|
2003-07-29 15:59:46 +02:00
|
|
|
if (sl->resolve_mode == SELECT_LEX::SELECT_MODE &&
|
|
|
|
(ref= find_item_in_list(this, sl->item_list,
|
2003-01-25 01:25:52 +01:00
|
|
|
&counter,
|
|
|
|
REPORT_EXCEPT_NOT_FOUND)) !=
|
2002-10-08 14:34:39 +02:00
|
|
|
(Item **)not_found_item)
|
2003-10-16 23:36:01 +02:00
|
|
|
{
|
|
|
|
if (*ref && (*ref)->fixed) // Avoid crash in case of error
|
|
|
|
{
|
2003-10-23 19:50:53 +02:00
|
|
|
prev_subselect_item->used_tables_cache|= (*ref)->used_tables();
|
|
|
|
prev_subselect_item->const_item_cache&= (*ref)->const_item();
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
2002-10-08 13:50:12 +02:00
|
|
|
break;
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
2003-05-21 22:35:51 +02:00
|
|
|
table_list= sl->get_table_list();
|
2003-07-29 15:59:46 +02:00
|
|
|
if (sl->resolve_mode == SELECT_LEX::INSERT_MODE && table_list)
|
2003-05-21 22:35:51 +02:00
|
|
|
{
|
|
|
|
// it is primary INSERT st_select_lex => skip first table resolving
|
|
|
|
table_list= table_list->next;
|
|
|
|
}
|
2002-11-24 20:10:52 +01:00
|
|
|
if ((tmp= find_field_in_tables(thd, this,
|
2003-05-21 22:35:51 +02:00
|
|
|
table_list, &where,
|
2003-01-21 20:07:59 +01:00
|
|
|
0)) != not_found_field)
|
2003-10-16 23:36:01 +02:00
|
|
|
{
|
2003-10-23 19:50:53 +02:00
|
|
|
prev_subselect_item->used_tables_cache|= tmp->table->map;
|
|
|
|
prev_subselect_item->const_item_cache= 0;
|
2003-01-21 20:07:59 +01:00
|
|
|
break;
|
2003-10-16 23:36:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Reference is not found => depend from outer (or just error)
|
2003-10-23 19:50:53 +02:00
|
|
|
prev_subselect_item->used_tables_cache|= OUTER_REF_TABLE_BIT;
|
|
|
|
prev_subselect_item->const_item_cache= 0;
|
2003-10-16 23:36:01 +02:00
|
|
|
|
2002-12-17 22:18:19 +01:00
|
|
|
if (sl->master_unit()->first_select()->linkage ==
|
|
|
|
DERIVED_TABLE_TYPE)
|
2002-11-25 09:58:49 +01:00
|
|
|
break; // do not look over derived table
|
2002-11-24 20:10:52 +01:00
|
|
|
}
|
2002-10-08 13:50:12 +02:00
|
|
|
|
2002-07-01 13:14:51 +02:00
|
|
|
if (!ref)
|
2002-10-08 13:50:12 +02:00
|
|
|
return 1;
|
2002-11-24 20:10:52 +01:00
|
|
|
else if (!tmp)
|
|
|
|
return -1;
|
|
|
|
else if (ref == (Item **)not_found_item && tmp == not_found_field)
|
2002-10-03 15:35:08 +02:00
|
|
|
{
|
2003-10-11 16:41:15 +02:00
|
|
|
if (upward_lookup)
|
2003-11-02 15:56:39 +01:00
|
|
|
{
|
2003-10-11 16:41:15 +02:00
|
|
|
// We can't say exactly what absend (table or field)
|
|
|
|
my_printf_error(ER_BAD_FIELD_ERROR, ER(ER_BAD_FIELD_ERROR), MYF(0),
|
|
|
|
full_name(), thd->where);
|
2003-11-02 15:56:39 +01:00
|
|
|
}
|
2003-10-11 16:41:15 +02:00
|
|
|
else
|
2003-11-02 15:56:39 +01:00
|
|
|
{
|
2003-10-11 16:41:15 +02:00
|
|
|
// Call to report error
|
|
|
|
find_item_in_list(this,
|
2003-11-19 15:19:46 +01:00
|
|
|
*(thd->lex->current_select->get_item_list()),
|
2003-10-11 16:41:15 +02:00
|
|
|
&counter,
|
|
|
|
REPORT_ALL_ERRORS);
|
2003-11-02 15:56:39 +01:00
|
|
|
}
|
2002-10-30 12:18:52 +01:00
|
|
|
ref= 0;
|
2002-07-01 13:14:51 +02:00
|
|
|
return 1;
|
2002-10-03 15:35:08 +02:00
|
|
|
}
|
2002-11-24 20:10:52 +01:00
|
|
|
else if (tmp != not_found_field)
|
|
|
|
{
|
|
|
|
ref= 0; // To prevent "delete *ref;" on ~Item_erf() of this item
|
2003-06-20 09:15:58 +02:00
|
|
|
Item_field* fld;
|
|
|
|
if (!((*reference)= fld= new Item_field(tmp)))
|
2002-11-24 20:10:52 +01:00
|
|
|
return 1;
|
2003-09-24 11:29:38 +02:00
|
|
|
mark_as_dependent(thd, last, thd->lex->current_select, fld);
|
2002-11-24 20:10:52 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2002-07-01 13:14:51 +02:00
|
|
|
else
|
|
|
|
{
|
2003-01-25 01:25:52 +01:00
|
|
|
if (!(*ref)->fixed)
|
|
|
|
{
|
|
|
|
my_error(ER_ILLEGAL_REFERENCE, MYF(0), name,
|
|
|
|
"forward reference in item list");
|
|
|
|
return -1;
|
|
|
|
}
|
2003-09-24 11:29:38 +02:00
|
|
|
mark_as_dependent(thd, last, thd->lex->current_select,
|
2003-06-20 09:15:58 +02:00
|
|
|
this);
|
|
|
|
ref= last->ref_pointer_array + counter;
|
2002-07-01 13:14:51 +02:00
|
|
|
}
|
|
|
|
}
|
2002-10-08 13:50:12 +02:00
|
|
|
else if (!ref)
|
2000-07-31 21:29:14 +02:00
|
|
|
return 1;
|
2003-01-25 01:25:52 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(*ref)->fixed)
|
|
|
|
{
|
|
|
|
my_error(ER_ILLEGAL_REFERENCE, MYF(0), name,
|
|
|
|
"forward reference in item list");
|
|
|
|
return -1;
|
|
|
|
}
|
2003-05-05 20:54:37 +02:00
|
|
|
ref= thd->lex->current_select->ref_pointer_array + counter;
|
2003-01-25 01:25:52 +01:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2003-01-25 01:25:52 +01:00
|
|
|
|
2003-05-14 20:51:33 +02:00
|
|
|
/*
|
|
|
|
The following conditional is changed as to correctly identify
|
|
|
|
incorrect references in group functions or forward references
|
|
|
|
with sub-select's / derived tables, while it prevents this
|
|
|
|
check when Item_ref is created in an expression involving
|
|
|
|
summing function, which is to be placed in the user variable.
|
|
|
|
*/
|
2003-03-17 14:16:26 +01:00
|
|
|
if (((*ref)->with_sum_func && name &&
|
2003-05-14 20:51:33 +02:00
|
|
|
(depended_from ||
|
2003-05-05 20:54:37 +02:00
|
|
|
!(thd->lex->current_select->linkage != GLOBAL_OPTIONS_TYPE &&
|
2003-08-26 11:51:09 +02:00
|
|
|
thd->lex->current_select->having_fix_field))) ||
|
2002-11-21 10:01:33 +01:00
|
|
|
!(*ref)->fixed)
|
|
|
|
{
|
|
|
|
my_error(ER_ILLEGAL_REFERENCE, MYF(0), name,
|
|
|
|
((*ref)->with_sum_func?
|
|
|
|
"reference on group function":
|
|
|
|
"forward reference in item list"));
|
|
|
|
return 1;
|
|
|
|
}
|
2003-01-29 18:42:39 +01:00
|
|
|
max_length= (*ref)->max_length;
|
|
|
|
maybe_null= (*ref)->maybe_null;
|
|
|
|
decimals= (*ref)->decimals;
|
2003-07-30 11:15:25 +02:00
|
|
|
collation.set((*ref)->collation);
|
2003-03-26 17:37:38 +01:00
|
|
|
with_sum_func= (*ref)->with_sum_func;
|
2002-11-21 10:01:33 +01:00
|
|
|
fixed= 1;
|
2003-02-14 10:47:41 +01:00
|
|
|
|
2002-11-15 19:32:09 +01:00
|
|
|
if (ref && (*ref)->check_cols(1))
|
|
|
|
return 1;
|
2000-07-31 21:29:14 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-02-14 10:47:41 +01:00
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
void Item_ref::print(String *str)
|
|
|
|
{
|
|
|
|
if (ref && *ref)
|
|
|
|
(*ref)->print(str);
|
|
|
|
else
|
|
|
|
Item_ident::print(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Item_ref_null_helper::print(String *str)
|
|
|
|
{
|
2003-10-30 11:57:26 +01:00
|
|
|
str->append("<ref_null_helper>(", 18);
|
2003-10-16 14:54:47 +02:00
|
|
|
if (ref && *ref)
|
|
|
|
(*ref)->print(str);
|
|
|
|
else
|
|
|
|
str->append('?');
|
|
|
|
str->append(')');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Item_null_helper::print(String *str)
|
|
|
|
{
|
2003-10-30 11:57:26 +01:00
|
|
|
str->append("<null_helper>(", 14);
|
2003-10-16 14:54:47 +02:00
|
|
|
store->print(str);
|
|
|
|
str->append(')');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-01-05 11:07:24 +01:00
|
|
|
bool Item_default_value::eq(const Item *item, bool binary_cmp) const
|
|
|
|
{
|
2003-01-22 17:08:12 +01:00
|
|
|
return item->type() == DEFAULT_VALUE_ITEM &&
|
2003-01-05 11:07:24 +01:00
|
|
|
((Item_default_value *)item)->arg->eq(arg, binary_cmp);
|
|
|
|
}
|
|
|
|
|
2003-02-14 10:47:41 +01:00
|
|
|
|
2003-01-05 11:07:24 +01:00
|
|
|
bool Item_default_value::fix_fields(THD *thd, struct st_table_list *table_list, Item **items)
|
|
|
|
{
|
2003-01-21 17:20:46 +01:00
|
|
|
if (!arg)
|
|
|
|
return false;
|
2003-01-05 11:07:24 +01:00
|
|
|
bool res= arg->fix_fields(thd, table_list, items);
|
|
|
|
if (res)
|
|
|
|
return res;
|
2003-01-21 17:20:46 +01:00
|
|
|
/* arg->type() can be only REF_ITEM or FIELD_ITEM for it defined as
|
|
|
|
simple_ident in sql_yacc.yy
|
|
|
|
*/
|
2003-01-05 11:07:24 +01:00
|
|
|
if (arg->type() == REF_ITEM)
|
|
|
|
{
|
|
|
|
Item_ref *ref= (Item_ref *)arg;
|
|
|
|
if (ref->ref[0]->type() != FIELD_ITEM)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
arg= ref->ref[0];
|
|
|
|
}
|
|
|
|
Item_field *field_arg= (Item_field *)arg;
|
|
|
|
Field *def_field= (Field*) sql_alloc(field_arg->field->size_of());
|
|
|
|
if (!def_field)
|
|
|
|
return 1;
|
|
|
|
memcpy(def_field, field_arg->field, field_arg->field->size_of());
|
2003-05-03 01:16:56 +02:00
|
|
|
def_field->move_field(def_field->table->default_values -
|
|
|
|
def_field->table->record[0]);
|
2003-01-05 11:07:24 +01:00
|
|
|
set_field(def_field);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-01-05 14:56:11 +01:00
|
|
|
void Item_default_value::print(String *str)
|
|
|
|
{
|
2003-01-21 17:20:46 +01:00
|
|
|
if (!arg)
|
|
|
|
{
|
2003-10-31 10:52:01 +01:00
|
|
|
str->append("default", 7);
|
2003-01-22 17:08:12 +01:00
|
|
|
return;
|
2003-01-21 17:20:46 +01:00
|
|
|
}
|
2003-10-31 10:52:01 +01:00
|
|
|
str->append("default(", 8);
|
2003-01-05 14:56:11 +01:00
|
|
|
arg->print(str);
|
|
|
|
str->append(')');
|
|
|
|
}
|
2002-12-03 12:08:25 +01:00
|
|
|
|
2003-05-03 01:16:56 +02:00
|
|
|
bool Item_insert_value::eq(const Item *item, bool binary_cmp) const
|
|
|
|
{
|
|
|
|
return item->type() == INSERT_VALUE_ITEM &&
|
|
|
|
((Item_default_value *)item)->arg->eq(arg, binary_cmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-28 11:18:13 +01:00
|
|
|
bool Item_insert_value::fix_fields(THD *thd,
|
|
|
|
struct st_table_list *table_list,
|
|
|
|
Item **items)
|
2003-05-03 01:16:56 +02:00
|
|
|
{
|
|
|
|
bool res= arg->fix_fields(thd, table_list, items);
|
|
|
|
if (res)
|
|
|
|
return res;
|
|
|
|
/*
|
|
|
|
arg->type() can be only REF_ITEM or FIELD_ITEM as arg is
|
|
|
|
a simple_ident in sql_yacc.yy
|
|
|
|
*/
|
|
|
|
if (arg->type() == REF_ITEM)
|
|
|
|
{
|
|
|
|
Item_ref *ref= (Item_ref *)arg;
|
|
|
|
if (ref->ref[0]->type() != FIELD_ITEM)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
arg= ref->ref[0];
|
|
|
|
}
|
|
|
|
Item_field *field_arg= (Item_field *)arg;
|
|
|
|
if (field_arg->field->table->insert_values)
|
|
|
|
{
|
|
|
|
Field *def_field= (Field*) sql_alloc(field_arg->field->size_of());
|
|
|
|
if (!def_field)
|
|
|
|
return 1;
|
|
|
|
memcpy(def_field, field_arg->field, field_arg->field->size_of());
|
|
|
|
def_field->move_field(def_field->table->insert_values -
|
|
|
|
def_field->table->record[0]);
|
|
|
|
set_field(def_field);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2003-11-28 11:18:13 +01:00
|
|
|
Field *tmp_field= field_arg->field;
|
2003-05-03 01:16:56 +02:00
|
|
|
/* charset doesn't matter here, it's to avoid sigsegv only */
|
2003-11-28 11:18:13 +01:00
|
|
|
set_field(new Field_null(0, 0, Field::NONE, tmp_field->field_name,
|
|
|
|
tmp_field->table, &my_charset_bin));
|
2003-05-03 01:16:56 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Item_insert_value::print(String *str)
|
|
|
|
{
|
2003-10-30 11:57:26 +01:00
|
|
|
str->append("values(", 7);
|
2003-05-03 01:16:56 +02:00
|
|
|
arg->print(str);
|
|
|
|
str->append(')');
|
|
|
|
}
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
/*
|
2002-12-03 12:08:25 +01:00
|
|
|
If item is a const function, calculate it and return a const item
|
|
|
|
The original item is freed if not returned
|
2000-07-31 21:29:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
Item_result item_cmp_type(Item_result a,Item_result b)
|
|
|
|
{
|
|
|
|
if (a == STRING_RESULT && b == STRING_RESULT)
|
|
|
|
return STRING_RESULT;
|
2003-12-10 20:26:31 +01:00
|
|
|
if (a == INT_RESULT && b == INT_RESULT)
|
2000-07-31 21:29:14 +02:00
|
|
|
return INT_RESULT;
|
2002-11-15 19:32:09 +01:00
|
|
|
else if (a == ROW_RESULT || b == ROW_RESULT)
|
|
|
|
return ROW_RESULT;
|
2003-12-10 20:26:31 +01:00
|
|
|
return REAL_RESULT;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Item *resolve_const_item(Item *item,Item *comp_item)
|
|
|
|
{
|
|
|
|
if (item->basic_const_item())
|
|
|
|
return item; // Can't be better
|
|
|
|
Item_result res_type=item_cmp_type(comp_item->result_type(),
|
|
|
|
item->result_type());
|
|
|
|
char *name=item->name; // Alloced by sql_alloc
|
|
|
|
|
|
|
|
if (res_type == STRING_RESULT)
|
|
|
|
{
|
|
|
|
char buff[MAX_FIELD_WIDTH];
|
2003-01-29 14:31:20 +01:00
|
|
|
String tmp(buff,sizeof(buff),&my_charset_bin),*result;
|
2000-07-31 21:29:14 +02:00
|
|
|
result=item->val_str(&tmp);
|
|
|
|
if (item->null_value)
|
|
|
|
{
|
|
|
|
#ifdef DELETE_ITEMS
|
|
|
|
delete item;
|
|
|
|
#endif
|
|
|
|
return new Item_null(name);
|
|
|
|
}
|
|
|
|
uint length=result->length();
|
|
|
|
char *tmp_str=sql_strmake(result->ptr(),length);
|
|
|
|
#ifdef DELETE_ITEMS
|
|
|
|
delete item;
|
|
|
|
#endif
|
2002-12-20 15:08:49 +01:00
|
|
|
return new Item_string(name,tmp_str,length,result->charset());
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
if (res_type == INT_RESULT)
|
|
|
|
{
|
|
|
|
longlong result=item->val_int();
|
|
|
|
uint length=item->max_length;
|
|
|
|
bool null_value=item->null_value;
|
|
|
|
#ifdef DELETE_ITEMS
|
|
|
|
delete item;
|
|
|
|
#endif
|
|
|
|
return (null_value ? (Item*) new Item_null(name) :
|
|
|
|
(Item*) new Item_int(name,result,length));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // It must REAL_RESULT
|
|
|
|
double result=item->val();
|
|
|
|
uint length=item->max_length,decimals=item->decimals;
|
|
|
|
bool null_value=item->null_value;
|
|
|
|
#ifdef DELETE_ITEMS
|
|
|
|
delete item;
|
|
|
|
#endif
|
|
|
|
return (null_value ? (Item*) new Item_null(name) :
|
|
|
|
(Item*) new Item_real(name,result,decimals,length));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
Return true if the value stored in the field is equal to the const item
|
|
|
|
We need to use this on the range optimizer because in some cases
|
|
|
|
we can't store the value in the field without some precision/character loss.
|
|
|
|
*/
|
|
|
|
|
|
|
|
bool field_is_equal_to_item(Field *field,Item *item)
|
|
|
|
{
|
|
|
|
|
|
|
|
Item_result res_type=item_cmp_type(field->result_type(),
|
|
|
|
item->result_type());
|
|
|
|
if (res_type == STRING_RESULT)
|
|
|
|
{
|
|
|
|
char item_buff[MAX_FIELD_WIDTH];
|
|
|
|
char field_buff[MAX_FIELD_WIDTH];
|
2003-01-29 14:31:20 +01:00
|
|
|
String item_tmp(item_buff,sizeof(item_buff),&my_charset_bin),*item_result;
|
|
|
|
String field_tmp(field_buff,sizeof(field_buff),&my_charset_bin);
|
2000-07-31 21:29:14 +02:00
|
|
|
item_result=item->val_str(&item_tmp);
|
|
|
|
if (item->null_value)
|
|
|
|
return 1; // This must be true
|
|
|
|
field->val_str(&field_tmp,&field_tmp);
|
2003-03-04 15:01:59 +01:00
|
|
|
return !sortcmp(&field_tmp,item_result,&my_charset_bin);
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
|
|
|
if (res_type == INT_RESULT)
|
|
|
|
return 1; // Both where of type int
|
|
|
|
double result=item->val();
|
|
|
|
if (item->null_value)
|
|
|
|
return 1;
|
|
|
|
return result == field->val_real();
|
|
|
|
}
|
|
|
|
|
2002-12-19 06:38:33 +01:00
|
|
|
Item_cache* Item_cache::get_cache(Item_result type)
|
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case INT_RESULT:
|
|
|
|
return new Item_cache_int();
|
|
|
|
case REAL_RESULT:
|
|
|
|
return new Item_cache_real();
|
|
|
|
case STRING_RESULT:
|
|
|
|
return new Item_cache_str();
|
2002-12-19 20:15:09 +01:00
|
|
|
case ROW_RESULT:
|
|
|
|
return new Item_cache_row();
|
2002-12-19 06:38:33 +01:00
|
|
|
default:
|
|
|
|
// should never be in real life
|
|
|
|
DBUG_ASSERT(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-10-16 14:54:47 +02:00
|
|
|
|
|
|
|
void Item_cache::print(String *str)
|
|
|
|
{
|
2003-10-30 11:57:26 +01:00
|
|
|
str->append("<cache>(", 8);
|
2003-10-16 14:54:47 +02:00
|
|
|
if (example)
|
|
|
|
example->print(str);
|
|
|
|
else
|
|
|
|
Item::print(str);
|
|
|
|
str->append(')');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Item_cache_int::store(Item *item)
|
|
|
|
{
|
|
|
|
value= item->val_int_result();
|
|
|
|
null_value= item->null_value;
|
|
|
|
collation.set(item->collation);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Item_cache_real::store(Item *item)
|
|
|
|
{
|
|
|
|
value= item->val_result();
|
|
|
|
null_value= item->null_value;
|
|
|
|
collation.set(item->collation);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-12-19 06:38:33 +01:00
|
|
|
void Item_cache_str::store(Item *item)
|
|
|
|
{
|
2003-08-11 10:51:33 +02:00
|
|
|
value_buff.set(buffer, sizeof(buffer), item->collation.collation);
|
2003-06-26 14:07:42 +02:00
|
|
|
value= item->str_result(&value_buff);
|
2002-12-19 06:38:33 +01:00
|
|
|
if ((null_value= item->null_value))
|
|
|
|
value= 0;
|
2003-06-26 14:07:42 +02:00
|
|
|
else if (value != &value_buff)
|
2002-12-19 06:38:33 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
We copy string value to avoid changing value if 'item' is table field
|
|
|
|
in queries like following (where t1.c is varchar):
|
|
|
|
select a,
|
|
|
|
(select a,b,c from t1 where t1.a=t2.a) = ROW(a,2,'a'),
|
|
|
|
(select c from t1 where a=t2.a)
|
|
|
|
from t2;
|
|
|
|
*/
|
2003-06-26 14:07:42 +02:00
|
|
|
value_buff.copy(*value);
|
|
|
|
value= &value_buff;
|
2002-12-19 06:38:33 +01:00
|
|
|
}
|
2003-08-11 12:17:48 +02:00
|
|
|
collation.set(item->collation);
|
2002-12-19 06:38:33 +01:00
|
|
|
}
|
2003-11-23 01:01:15 +01:00
|
|
|
|
|
|
|
|
2002-12-19 06:38:33 +01:00
|
|
|
double Item_cache_str::val()
|
|
|
|
{
|
2003-01-16 14:17:07 +01:00
|
|
|
int err;
|
2002-12-19 06:38:33 +01:00
|
|
|
if (value)
|
2003-01-14 13:28:36 +01:00
|
|
|
return my_strntod(value->charset(), (char*) value->ptr(),
|
2003-01-16 14:17:07 +01:00
|
|
|
value->length(), (char**) 0, &err);
|
2002-12-19 06:38:33 +01:00
|
|
|
else
|
|
|
|
return (double)0;
|
|
|
|
}
|
2003-11-23 01:01:15 +01:00
|
|
|
|
|
|
|
|
2002-12-19 06:38:33 +01:00
|
|
|
longlong Item_cache_str::val_int()
|
|
|
|
{
|
2003-01-16 14:17:07 +01:00
|
|
|
int err;
|
2002-12-19 06:38:33 +01:00
|
|
|
if (value)
|
|
|
|
return my_strntoll(value->charset(), value->ptr(),
|
2003-01-16 14:17:07 +01:00
|
|
|
value->length(), 10, (char**) 0, &err);
|
2002-12-19 06:38:33 +01:00
|
|
|
else
|
|
|
|
return (longlong)0;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
bool Item_cache_row::allocate(uint num)
|
|
|
|
{
|
2002-12-28 00:01:05 +01:00
|
|
|
item_count= num;
|
2002-12-19 20:15:09 +01:00
|
|
|
THD *thd= current_thd;
|
2002-12-28 00:01:05 +01:00
|
|
|
return (!(values=
|
|
|
|
(Item_cache **) thd->calloc(sizeof(Item_cache *)*item_count)));
|
2002-12-19 20:15:09 +01:00
|
|
|
}
|
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
bool Item_cache_row::setup(Item * item)
|
|
|
|
{
|
2003-10-16 14:54:47 +02:00
|
|
|
example= item;
|
2002-12-19 20:15:09 +01:00
|
|
|
if (!values && allocate(item->cols()))
|
|
|
|
return 1;
|
2002-12-28 00:01:05 +01:00
|
|
|
for (uint i= 0; i < item_count; i++)
|
2002-12-19 20:15:09 +01:00
|
|
|
{
|
2002-12-31 17:39:16 +01:00
|
|
|
Item *el= item->el(i);
|
2003-01-02 11:24:33 +01:00
|
|
|
Item_cache *tmp;
|
|
|
|
if (!(tmp= values[i]= Item_cache::get_cache(el->result_type())))
|
2002-12-19 20:15:09 +01:00
|
|
|
return 1;
|
2003-01-02 11:24:33 +01:00
|
|
|
tmp->setup(el);
|
2002-12-19 20:15:09 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
void Item_cache_row::store(Item * item)
|
|
|
|
{
|
|
|
|
null_value= 0;
|
|
|
|
item->bring_value();
|
2002-12-28 00:01:05 +01:00
|
|
|
for (uint i= 0; i < item_count; i++)
|
2002-12-19 20:15:09 +01:00
|
|
|
{
|
|
|
|
values[i]->store(item->el(i));
|
|
|
|
null_value|= values[i]->null_value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
void Item_cache_row::illegal_method_call(const char *method)
|
|
|
|
{
|
|
|
|
DBUG_ENTER("Item_cache_row::illegal_method_call");
|
|
|
|
DBUG_PRINT("error", ("!!! %s method was called for row item", method));
|
|
|
|
DBUG_ASSERT(0);
|
2003-10-06 21:35:05 +02:00
|
|
|
my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
|
2002-12-19 20:15:09 +01:00
|
|
|
DBUG_VOID_RETURN;
|
|
|
|
}
|
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
bool Item_cache_row::check_cols(uint c)
|
|
|
|
{
|
2002-12-28 00:01:05 +01:00
|
|
|
if (c != item_count)
|
2002-12-19 20:15:09 +01:00
|
|
|
{
|
2003-10-06 21:35:05 +02:00
|
|
|
my_error(ER_OPERAND_COLUMNS, MYF(0), c);
|
2002-12-19 20:15:09 +01:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
bool Item_cache_row::null_inside()
|
|
|
|
{
|
2002-12-28 00:01:05 +01:00
|
|
|
for (uint i= 0; i < item_count; i++)
|
2002-12-19 20:15:09 +01:00
|
|
|
{
|
|
|
|
if (values[i]->cols() > 1)
|
|
|
|
{
|
|
|
|
if (values[i]->null_inside())
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
values[i]->val_int();
|
|
|
|
if (values[i]->null_value)
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
|
2002-12-19 20:15:09 +01:00
|
|
|
void Item_cache_row::bring_value()
|
|
|
|
{
|
2002-12-28 00:01:05 +01:00
|
|
|
for (uint i= 0; i < item_count; i++)
|
2002-12-19 20:15:09 +01:00
|
|
|
values[i]->bring_value();
|
|
|
|
return;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
|
|
|
|
Item_type_holder::Item_type_holder(THD *thd, Item *item)
|
|
|
|
:Item(thd, *item), item_type(item->result_type())
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(item->fixed);
|
2003-11-23 20:26:43 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
It is safe assign pointer on field, because it will be used just after
|
|
|
|
all JOIN::prepare calls and before any SELECT execution
|
|
|
|
*/
|
2003-11-23 01:01:15 +01:00
|
|
|
if (item->type() == Item::FIELD_ITEM)
|
2003-11-23 20:26:43 +01:00
|
|
|
field_example= ((Item_field*) item)->field;
|
2003-11-23 01:01:15 +01:00
|
|
|
else
|
|
|
|
field_example= 0;
|
2003-11-25 22:52:10 +01:00
|
|
|
collation.set(item->collation);
|
2003-11-23 01:01:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-11-25 22:52:10 +01:00
|
|
|
/*
|
|
|
|
STRING_RESULT, REAL_RESULT, INT_RESULT, ROW_RESULT
|
|
|
|
|
|
|
|
ROW_RESULT should never appear in Item_type_holder::join_types,
|
|
|
|
but it is included in following table just to make table full
|
|
|
|
(there DBUG_ASSERT in function to catch ROW_RESULT)
|
|
|
|
*/
|
2003-11-23 01:01:15 +01:00
|
|
|
static Item_result type_convertor[4][4]=
|
|
|
|
{{STRING_RESULT, STRING_RESULT, STRING_RESULT, ROW_RESULT},
|
|
|
|
{STRING_RESULT, REAL_RESULT, REAL_RESULT, ROW_RESULT},
|
|
|
|
{STRING_RESULT, REAL_RESULT, INT_RESULT, ROW_RESULT},
|
|
|
|
{ROW_RESULT, ROW_RESULT, ROW_RESULT, ROW_RESULT}};
|
|
|
|
|
2003-11-25 22:52:10 +01:00
|
|
|
bool Item_type_holder::join_types(THD *thd, Item *item)
|
2003-11-23 01:01:15 +01:00
|
|
|
{
|
|
|
|
bool change_field= 0, skip_store_field= 0;
|
|
|
|
Item_result new_type= type_convertor[item_type][item->result_type()];
|
|
|
|
|
|
|
|
// we have both fields
|
|
|
|
if (field_example && item->type() == Item::FIELD_ITEM)
|
|
|
|
{
|
|
|
|
Field *field= ((Item_field *)item)->field;
|
2003-11-23 20:26:43 +01:00
|
|
|
if (field_example->field_cast_type() != field->field_cast_type())
|
2003-11-23 01:01:15 +01:00
|
|
|
{
|
2003-11-23 20:26:43 +01:00
|
|
|
if (!(change_field=
|
|
|
|
field_example->field_cast_compatible(field->field_cast_type())))
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
if old field can't store value of 'worse' new field we will make
|
|
|
|
decision about result field type based only on Item result type
|
|
|
|
*/
|
|
|
|
if (!field->field_cast_compatible(field_example->field_cast_type()))
|
|
|
|
skip_store_field= 1;
|
|
|
|
}
|
2003-11-23 01:01:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// size/type should be changed
|
|
|
|
if (change_field ||
|
|
|
|
(new_type != item_type) ||
|
|
|
|
(max_length < item->max_length) ||
|
|
|
|
((new_type == INT_RESULT) &&
|
|
|
|
(decimals < item->decimals)) ||
|
2003-11-25 22:52:10 +01:00
|
|
|
(!maybe_null && item->maybe_null) ||
|
|
|
|
(item_type == STRING_RESULT && new_type == STRING_RESULT &&
|
|
|
|
!my_charset_same(collation.collation, item->collation.collation)))
|
2003-11-23 01:01:15 +01:00
|
|
|
{
|
|
|
|
// new field has some parameters worse then current
|
|
|
|
skip_store_field|= (change_field &&
|
|
|
|
(max_length > item->max_length) ||
|
|
|
|
((new_type == INT_RESULT) &&
|
|
|
|
(decimals > item->decimals)) ||
|
2003-11-25 22:52:10 +01:00
|
|
|
(maybe_null && !item->maybe_null) ||
|
|
|
|
(item_type == STRING_RESULT &&
|
|
|
|
new_type == STRING_RESULT &&
|
|
|
|
!my_charset_same(collation.collation,
|
|
|
|
item->collation.collation)));
|
2003-11-23 20:26:43 +01:00
|
|
|
/*
|
|
|
|
It is safe assign pointer on field, because it will be used just after
|
|
|
|
all JOIN::prepare calls and before any SELECT execution
|
|
|
|
*/
|
2003-11-23 01:01:15 +01:00
|
|
|
if (skip_store_field || item->type() != Item::FIELD_ITEM)
|
|
|
|
field_example= 0;
|
|
|
|
else
|
2003-11-23 20:26:43 +01:00
|
|
|
field_example= ((Item_field*) item)->field;
|
|
|
|
|
2003-11-25 22:52:10 +01:00
|
|
|
const char *old_cs= collation.collation->name,
|
|
|
|
*old_derivation= collation.derivation_name();
|
|
|
|
if (item_type == STRING_RESULT && collation.aggregate(item->collation))
|
|
|
|
{
|
|
|
|
my_error(ER_CANT_AGGREGATE_2COLLATIONS, MYF(0),
|
|
|
|
old_cs, old_derivation,
|
|
|
|
item->collation.collation->name,
|
|
|
|
item->collation.derivation_name(),
|
|
|
|
"UNION");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2003-11-23 01:01:15 +01:00
|
|
|
max_length= max(max_length, item->max_length);
|
|
|
|
decimals= max(decimals, item->decimals);
|
|
|
|
maybe_null|= item->maybe_null;
|
|
|
|
item_type= new_type;
|
|
|
|
}
|
|
|
|
DBUG_ASSERT(item_type != ROW_RESULT);
|
2003-11-25 22:52:10 +01:00
|
|
|
return 0;
|
2003-11-23 01:01:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
double Item_type_holder::val()
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(0); // should never be called
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
longlong Item_type_holder::val_int()
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(0); // should never be called
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
String *Item_type_holder::val_str(String*)
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(0); // should never be called
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
/*****************************************************************************
|
|
|
|
** Instantiate templates
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
template class List<Item>;
|
|
|
|
template class List_iterator<Item>;
|
2001-08-02 05:29:50 +02:00
|
|
|
template class List_iterator_fast<Item>;
|
2000-07-31 21:29:14 +02:00
|
|
|
template class List<List_item>;
|
|
|
|
#endif
|