item.cc 22.1 KB
Newer Older
unknown's avatar
unknown committed
1
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
unknown's avatar
unknown committed
2

unknown's avatar
unknown committed
3 4 5 6
   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.
unknown's avatar
unknown committed
7

unknown's avatar
unknown committed
8 9 10 11
   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.
unknown's avatar
unknown committed
12

unknown's avatar
unknown committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
   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"

/*****************************************************************************
** Item functions
*****************************************************************************/

/* Init all special items */

void item_init(void)
{
  item_user_lock_init();
}

Item::Item()
{
  marker=0;
40
  binary=maybe_null=null_value=with_sum_func=unsigned_flag=0;
unknown's avatar
unknown committed
41 42 43 44 45 46 47 48 49 50 51 52
  name=0;
  decimals=0; max_length=0;
  next=current_thd->free_list;			// Put in free list
  current_thd->free_list=this;
}

void Item::set_name(char *str,uint length)
{
  if (!length)
    name=str;					// Used by AS
  else
  {
53
    while (length && !my_isgraph(system_charset_info,*str))
unknown's avatar
unknown committed
54 55 56 57 58 59 60 61
    {						// Fix problem with yacc
      length--;
      str++;
    }
    name=sql_strmake(str,min(length,MAX_FIELD_WIDTH));
  }
}

62 63 64 65 66
/*
  This function is only called when comparing items in the WHERE clause
*/

bool Item::eq(const Item *item, bool binary_cmp) const
unknown's avatar
unknown committed
67 68
{
  return type() == item->type() && name && item->name &&
69
    !my_strcasecmp(system_charset_info,name,item->name);
unknown's avatar
unknown committed
70 71
}

72 73 74 75 76 77 78 79 80 81 82 83
bool Item_string::eq(const Item *item, bool binary_cmp) const
{
  if (type() == item->type())
  {
    if (binary_cmp)
      return !stringcmp(&str_value, &item->str_value);
    return !sortcmp(&str_value, &item->str_value);
  }
  return 0;
}


unknown's avatar
unknown committed
84 85 86 87 88 89 90 91
/*
  Get the value of the function as a TIME structure.
  As a extra convenience the time structure is reset on error!
 */

bool Item::get_date(TIME *ltime,bool fuzzydate)
{
  char buff[40];
92
  String tmp(buff,sizeof(buff),default_charset_info),*res;
unknown's avatar
unknown committed
93
  if (!(res=val_str(&tmp)) ||
94
      str_to_TIME(res->ptr(),res->length(),ltime,fuzzydate) == TIMESTAMP_NONE)
unknown's avatar
unknown committed
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
  {
    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];
110
  String tmp(buff,sizeof(buff),default_charset_info),*res;
unknown's avatar
unknown committed
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
  if (!(res=val_str(&tmp)) ||
      str_to_time(res->ptr(),res->length(),ltime))
  {
    bzero((char*) ltime,sizeof(*ltime));
    return 1;
  }
  return 0;
}

Item_field::Item_field(Field *f) :Item_ident(NullS,f->table_name,f->field_name)
{
  set_field(f);
}


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;
  binary=field_par->binary();
135
  unsigned_flag=test(field_par->flags & UNSIGNED_FLAG);
136 137 138
  /* For string fields copy character set from original field */
  if (!field_par->binary())
    str_value.set_charset(((Field_str*)field_par)->charset());
unknown's avatar
unknown committed
139 140 141 142 143 144 145 146 147
}

const char *Item_ident::full_name() const
{
  char *tmp;
  if (!table_name)
    return field_name ? field_name : name ? name : "tmp_field";
  if (db_name)
  {
unknown's avatar
unknown committed
148 149
    tmp=(char*) sql_alloc((uint) strlen(db_name)+(uint) strlen(table_name)+
			  (uint) strlen(field_name)+3);
unknown's avatar
unknown committed
150 151 152 153
    strxmov(tmp,db_name,".",table_name,".",field_name,NullS);
  }
  else
  {
unknown's avatar
unknown committed
154 155
    tmp=(char*) sql_alloc((uint) strlen(table_name)+
			  (uint) strlen(field_name)+2);
unknown's avatar
unknown committed
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
    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;
  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;
  return result_field->val_str(str,&str_value);
}

bool Item_field::get_date(TIME *ltime,bool fuzzydate)
{
  if ((null_value=field->is_null()) || field->get_date(ltime,fuzzydate))
  {
    bzero((char*) ltime,sizeof(*ltime));
    return 1;
  }
  return 0;
}

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();
}

225
bool Item_field::eq(const Item *item, bool binary_cmp) const
unknown's avatar
unknown committed
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
{
  return item->type() == FIELD_ITEM && ((Item_field*) item)->field == field;
}

table_map Item_field::used_tables() const
{
  if (field->table->const_table)
    return 0;					// const item
  return field->table->map;
}


String *Item_int::val_str(String *str)
{
  str->set(value);
  return str;
}

void Item_int::print(String *str)
{
  if (!name)
  {
    str_value.set(value);
    name=str_value.c_ptr();
  }
  str->append(name);
}

unknown's avatar
unknown committed
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
String *Item_uint::val_str(String *str)
{
  str->set((ulonglong) value);
  return str;
}

void Item_uint::print(String *str)
{
  if (!name)
  {
    str_value.set((ulonglong) value);
    name=str_value.c_ptr();
  }
  str->append(name);
}

unknown's avatar
unknown committed
270 271 272 273 274 275 276 277 278 279 280 281 282 283

String *Item_real::val_str(String *str)
{
  str->set(value,decimals);
  return str;
}

void Item_string::print(String *str)
{
  str->append('\'');
  str->append(full_name());
  str->append('\'');
}

284 285
bool Item_null::eq(const Item *item, bool binary_cmp) const
{ return item->type() == type(); }
unknown's avatar
unknown committed
286 287 288 289 290 291 292
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;}


unknown's avatar
unknown committed
293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
/* Item_param related */
void Item_param::set_null()
{ 
  maybe_null=null_value=1;    
}

void Item_param::set_int(longlong i)
{  
  int_value=(longlong)i; 
  item_result_type = INT_RESULT;
  item_type = INT_ITEM;
}

void Item_param::set_double(double i)
{  
  double value = (double)i;
  real_value=value;
  item_result_type = REAL_RESULT;
  item_type = REAL_ITEM;
}

void Item_param::set_double(float i)
{  
  float value = (float)i;
  real_value=(double)value;
  item_result_type = REAL_RESULT;
  item_type = REAL_ITEM;
}

void Item_param::set_value(const char *str, uint length)
{  
  str_value.set(str,length,default_charset_info);  
  item_result_type = STRING_RESULT;
  item_type = STRING_ITEM;
}

void Item_param::set_longdata(const char *str, ulong length)
{
  /* TODO: Fix this for binary handling by making use of 
     buffer_type.. 
  */  
  str_value.append(str,length);    
}

void Item_param::set_long_end() 
{ 
  long_data_supplied = true; 
  item_result_type = STRING_RESULT;
};

bool Item_param::save_in_field(Field *field)
{
  if (null_value)
    return set_field_to_null(field);   
    
  field->set_notnull();
  if (item_result_type == INT_RESULT)
  {
    longlong nr=val_int();
    field->store(nr);
    return 0;
  }
  if (item_result_type == REAL_RESULT)
  {
    double nr=val();    
    field->store(nr);   
    return 0;
  }
  String *result;
  CHARSET_INFO *cs=default_charset_info;//fix this
  result=val_str(&str_value);
  field->store(result->ptr(),result->length(),cs);
  return 0;
}

void Item_param::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_STRING);
}

double Item_param::val() 
{
  /* Cross check whether we need need this conversions ? or direct 
     return(real_value) is enough ?
  */

  switch(item_result_type) {
  
  case STRING_RESULT:
    return (double)atof(str_value.ptr()); 
  case INT_RESULT:
    return (double)int_value;
  default:
    return real_value;
  }
} 

longlong Item_param::val_int() 
{ 
  /* Cross check whether we need need this conversions ? or direct 
     return(int_value) is enough ?
  */
  
 switch(item_result_type) {

  case STRING_RESULT:
    return (longlong)strtoll(str_value.ptr(),(char**) 0,10);
  case REAL_RESULT:
    return (longlong) (real_value+(real_value > 0 ? 0.5 : -0.5));
  default:
    return int_value;
  }
}

String *Item_param::val_str(String* str) 
{ 
  /* Cross check whether we need need this conversions ? or direct 
     return(&str_value) is enough ?
  */
  
  switch(item_result_type) {
  
  case INT_RESULT:
    str->set(int_value);
    return str;
  case REAL_RESULT:
    str->set(real_value);
    return str;
  default:
    return (String*) &str_value;
  }
}
/* End of Item_param related */

unknown's avatar
unknown committed
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
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;
}

/*
** Functions to convert item to field (for send_fields)
*/

/* ARGSUSED */
bool Item::fix_fields(THD *thd,
unknown's avatar
unknown committed
449 450
		      struct st_table_list *list,
		      Item ** ref)
unknown's avatar
unknown committed
451 452 453 454
{
  return 0;
}

unknown's avatar
unknown committed
455
bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
unknown's avatar
unknown committed
456
{
457
  if (!field)					// If field is not checked
unknown's avatar
unknown committed
458 459 460
  {
    Field *tmp;
    if (!(tmp=find_field_in_tables(thd,this,tables)))
461 462 463 464 465 466 467 468 469 470
    {
      /*
	We can't find table field in table list of current select, 
	consequently we have to find it in outer subselect(s).
	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 
	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.
      */
unknown's avatar
unknown committed
471
      SELECT_LEX *last= 0;
472 473 474 475
      for (SELECT_LEX *sl= thd->lex.select->outer_select();
	   sl && !tmp;
	   sl= sl->outer_select())
	tmp=find_field_in_tables(thd, this,
unknown's avatar
unknown committed
476
				 (TABLE_LIST*)(last= sl)->table_list.first);
477 478 479
      if (!tmp)
	return 1;
      else
unknown's avatar
unknown committed
480 481
      {
	depended_from= last;
unknown's avatar
unknown committed
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
	/*
	  Mark all selects from resolved to 1 before select where was 
	  found table as depended (of select where was found table)
	*/
	for (SELECT_LEX *s= thd->lex.select;
	     s &&s != last;
	     s= s->outer_select())
	  if( !s->depended )
	  {
	    s->depended= 1; //Select is depended of outer select
	    //Tables will be reopened many times
	    for (TABLE_LIST *tbl= 
		   (TABLE_LIST*)s->table_list.first;
		 tbl;
		 tbl= tbl->next)
	      tbl->shared= 1;
	  }
unknown's avatar
unknown committed
499
      }
500
    }
unknown's avatar
unknown committed
501 502
    set_field(tmp);
  }
503 504 505 506 507 508 509 510
  else if (thd && thd->set_query_id && field->query_id != thd->query_id)
  {
    /* We only come here in unions */
    TABLE *table=field->table;
    field->query_id=thd->query_id;
    table->used_fields++;
    table->used_keys&=field->part_of_key;
  }
unknown's avatar
unknown committed
511 512 513 514 515 516 517 518
  if (depended_from != 0 && depended_from->having_fix_field)
  {
    *ref= new Item_ref((char *)db_name, (char *)table_name,
		       (char *)field_name);
    if (!*ref)
      return 1;
    return (*ref)->fix_fields(thd, tables, ref);
  }
unknown's avatar
unknown committed
519 520 521 522 523 524
  return 0;
}


void Item::init_make_field(Send_field *tmp_field,
			   enum enum_field_types field_type)
unknown's avatar
unknown committed
525 526 527 528
{  
  tmp_field->db_name=(char*) "";
  tmp_field->org_table_name=(char*) "";
  tmp_field->org_col_name=(char*) "";
unknown's avatar
unknown committed
529 530 531 532 533 534
  tmp_field->table_name=(char*) "";
  tmp_field->col_name=name;
  tmp_field->flags=maybe_null ? 0 : NOT_NULL_FLAG;
  tmp_field->type=field_type;
  tmp_field->length=max_length;
  tmp_field->decimals=decimals;
535 536
  if (unsigned_flag)
    tmp_field->flags |= UNSIGNED_FLAG;
unknown's avatar
unknown committed
537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
}

/* ARGSUSED */
void Item_field::make_field(Send_field *tmp_field)
{
  field->make_field(tmp_field);
  if (name)
    tmp_field->col_name=name;			// Use user supplied name
}

void Item_int::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_LONGLONG);
}

unknown's avatar
unknown committed
552 553 554 555
void Item_uint::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_LONGLONG);
  tmp_field->flags|= UNSIGNED_FLAG;
556
  unsigned_flag=1;
unknown's avatar
unknown committed
557 558
}

unknown's avatar
unknown committed
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647
void Item_real::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_DOUBLE);
}

void Item_string::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_STRING);
}

void Item_datetime::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_DATETIME);
}

void Item_null::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_NULL);
  tmp_field->length=4;
}

void Item_func::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field, ((result_type() == STRING_RESULT) ?
			      FIELD_TYPE_VAR_STRING :
			      (result_type() == INT_RESULT) ?
			      FIELD_TYPE_LONGLONG : FIELD_TYPE_DOUBLE));
}

void Item_avg_field::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_DOUBLE);
}

void Item_std_field::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_DOUBLE);
}

/*
** Set a field:s value from a item
*/


void Item_field::save_org_in_field(Field *to)
{
  if (field->is_null())
  {
    null_value=1;
    set_field_to_null(to);
  }
  else
  {
    to->set_notnull();
    field_conv(to,field);
    null_value=0;
  }
}

bool Item_field::save_in_field(Field *to)
{
  if (result_field->is_null())
  {
    null_value=1;
    return set_field_to_null(to);
  }
  else
  {
    to->set_notnull();
    field_conv(to,result_field);
    null_value=0;
  }
  return 0;
}


bool Item_null::save_in_field(Field *field)
{
  return set_field_to_null(field);
}


bool Item::save_in_field(Field *field)
{
  if (result_type() == STRING_RESULT ||
      result_type() == REAL_RESULT &&
      field->result_type() == STRING_RESULT)
  {
    String *result;
648
    CHARSET_INFO *cs=field->binary()?default_charset_info:((Field_str*)field)->charset();
unknown's avatar
unknown committed
649
    char buff[MAX_FIELD_WIDTH];		// Alloc buffer for small columns
650
    str_value.set_quick(buff,sizeof(buff),cs);
unknown's avatar
unknown committed
651 652 653 654
    result=val_str(&str_value);
    if (null_value)
      return set_field_to_null(field);
    field->set_notnull();
655 656
    field->store(result->ptr(),result->length(),cs);
    str_value.set_quick(0, 0, cs);
unknown's avatar
unknown committed
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
  }
  else if (result_type() == REAL_RESULT)
  {
    double nr=val();
    if (null_value)
      return set_field_to_null(field);
    field->set_notnull();
    field->store(nr);
  }
  else
  {
    longlong nr=val_int();
    if (null_value)
      return set_field_to_null(field);
    field->set_notnull();
    field->store(nr);
  }
  return 0;
}

bool Item_string::save_in_field(Field *field)
{
  String *result;
680
  CHARSET_INFO *cs=field->binary()?default_charset_info:((Field_str*)field)->charset();
unknown's avatar
unknown committed
681 682 683 684
  result=val_str(&str_value);
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
685
  field->store(result->ptr(),result->length(),cs);
unknown's avatar
unknown committed
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
  return 0;
}

bool Item_int::save_in_field(Field *field)
{
  longlong nr=val_int();
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
  field->store(nr);
  return 0;
}

bool Item_real::save_in_field(Field *field)
{
  double nr=val();
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
  field->store(nr);
  return 0;
}

/****************************************************************************
** varbinary item
** In string context this is a binary string
** In number context this is a longlong value.
****************************************************************************/

unknown's avatar
unknown committed
715
inline uint char_val(char X)
unknown's avatar
unknown committed
716 717 718 719 720 721
{
  return (uint) (X >= '0' && X <= '9' ? X-'0' :
		 X >= 'A' && X <= 'Z' ? X-'A'+10 :
		 X-'a'+10);
}

722
Item_varbinary::Item_varbinary(const char *str, uint str_length, CHARSET_INFO *cs)
unknown's avatar
unknown committed
723 724 725 726 727 728
{
  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;
729
  str_value.set(ptr,max_length,cs);
unknown's avatar
unknown committed
730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
  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
  binary=1;					// Binary is default
}

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;
}


bool Item_varbinary::save_in_field(Field *field)
{
756
  CHARSET_INFO *cs=field->binary()?default_charset_info:((Field_str*)field)->charset();
unknown's avatar
unknown committed
757 758 759
  field->set_notnull();
  if (field->result_type() == STRING_RESULT)
  {
760
    field->store(str_value.ptr(),str_value.length(),cs);
unknown's avatar
unknown committed
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
  }
  else
  {
    longlong nr=val_int();
    field->store(nr);
  }
  return 0;
}


void Item_varbinary::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_STRING);
}

/*
** pack data in buffer for sending
*/

780
bool Item::send(THD *thd, String *packet)
unknown's avatar
unknown committed
781 782
{
  char buff[MAX_FIELD_WIDTH];
783
  CONVERT *convert;
784
  String s(buff,sizeof(buff),packet->charset()),*res;
unknown's avatar
unknown committed
785 786
  if (!(res=val_str(&s)))
    return net_store_null(packet);
787
  if ((convert=thd->convert_set))
unknown's avatar
unknown committed
788 789 790 791
    return convert->store(packet,res->ptr(),res->length());
  return net_store_data(packet,res->ptr(),res->length());
}

792
bool Item_null::send(THD *thd, String *packet)
unknown's avatar
unknown committed
793 794 795 796 797 798 799 800 801
{
  return net_store_null(packet);
}

/*
  This is used for HAVING clause
  Find field in select list having the same name
 */

unknown's avatar
unknown committed
802
bool Item_ref::fix_fields(THD *thd,TABLE_LIST *tables, Item **reference)
unknown's avatar
unknown committed
803 804 805
{
  if (!ref)
  {
unknown's avatar
unknown committed
806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845
        if (!(ref= find_item_in_list(this,thd->lex.select->item_list)))
    {
      /*
	We can't find table field in table list of current select, 
	consequently we have to find it in outer subselect(s).
	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 
	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.
      */
      SELECT_LEX *last=0;
      for (SELECT_LEX *sl= thd->lex.select->outer_select();
	   sl && !ref;
	   sl= sl->outer_select())
	ref= find_item_in_list(this, (last= sl)->item_list);
      if (!ref)
	return 1;
      else
      {
	depended_from= last;
	/*
	  Mark all selects from resolved to 1 before select where was 
	  found table as depended (of select where was found table)
	*/
	for (SELECT_LEX *s= thd->lex.select;
	     s &&s != last;
	     s= s->outer_select())
	  if( !s->depended )
	  {
	    s->depended= 1; //Select is depended of outer select
	    //Tables will be reopened many times
	    for (TABLE_LIST *tbl= 
		   (TABLE_LIST*)s->table_list.first;
		 tbl;
		 tbl= tbl->next)
	      tbl->shared= 1;
	  }
      }
    }
unknown's avatar
unknown committed
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
    max_length= (*ref)->max_length;
    maybe_null= (*ref)->maybe_null;
    decimals=	(*ref)->decimals;
    binary=	(*ref)->binary;
  }
  return 0;
}

/*
** If item is a const function, calculate it and return a const item
** The original item is freed if not returned
*/

Item_result item_cmp_type(Item_result a,Item_result b)
{
  if (a == STRING_RESULT && b == STRING_RESULT)
    return STRING_RESULT;
  else if (a == INT_RESULT && b == INT_RESULT)
    return INT_RESULT;
  else
    return REAL_RESULT;
}


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];
881
    String tmp(buff,sizeof(buff),default_charset_info),*result;
unknown's avatar
unknown committed
882 883 884 885 886 887 888 889 890 891 892 893 894
    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
895
    return new Item_string(name,tmp_str,length,default_charset_info);
unknown's avatar
unknown committed
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935
  }
  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];
936 937
    String item_tmp(item_buff,sizeof(item_buff),default_charset_info),*item_result;
    String field_tmp(field_buff,sizeof(field_buff),default_charset_info);
unknown's avatar
unknown committed
938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959
    item_result=item->val_str(&item_tmp);
    if (item->null_value)
      return 1;					// This must be true
    field->val_str(&field_tmp,&field_tmp);
    return !stringcmp(&field_tmp,item_result);
  }
  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();
}


/*****************************************************************************
** Instantiate templates
*****************************************************************************/

#ifdef __GNUC__
template class List<Item>;
template class List_iterator<Item>;
unknown's avatar
unknown committed
960
template class List_iterator_fast<Item>;
unknown's avatar
unknown committed
961 962
template class List<List_item>;
#endif