item.cc 76.8 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
   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"

26 27
static void mark_as_dependent(THD *thd,
			      SELECT_LEX *last, SELECT_LEX *current,
unknown's avatar
unknown committed
28 29
			      Item_ident *item);

30 31
const String my_null_string("NULL", 4, default_charset_info);

unknown's avatar
unknown committed
32 33 34 35 36 37 38 39 40 41 42
/*****************************************************************************
** Item functions
*****************************************************************************/

/* Init all special items */

void item_init(void)
{
  item_user_lock_init();
}

43 44
Item::Item():
  fixed(0)
unknown's avatar
unknown committed
45
{
46
  marker= 0;
47
  maybe_null=null_value=with_sum_func=unsigned_flag=0;
48
  collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
49 50
  name= 0;
  decimals= 0; max_length= 0;
51 52 53 54

  /* Put item in free list so that we can free all items at end */
  THD *thd= current_thd;
  next= thd->free_list;
55
  thd->free_list= this;
56
  /*
57
    Item constructor can be called during execution other then SQL_COM
58
    command => we should check thd->lex->current_select on zero (thd->lex
unknown's avatar
unknown committed
59
    can be uninitialised)
60
  */
61
  if (thd->lex->current_select)
62
  {
63
    enum_parsing_place place= 
64
      thd->lex->current_select->parsing_place;
65 66
    if (place == SELECT_LIST ||
	place == IN_HAVING)
67
      thd->lex->current_select->select_n_having_items++;
68
  }
unknown's avatar
unknown committed
69 70
}

71
/*
72
  Constructor used by Item_field, Item_*_ref & agregate (sum) functions.
73 74 75
  Used for duplicating lists in processing queries with temporary
  tables
*/
76 77 78 79 80 81 82 83 84 85 86 87
Item::Item(THD *thd, Item *item):
  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),
  fixed(item->fixed),
  collation(item->collation)
88
{
89
  next= thd->free_list;				// Put in free list
90
  thd->free_list= this;
91 92
}

unknown's avatar
unknown committed
93 94 95 96 97 98

void Item::print_item_w_name(String *str)
{
  print(str);
  if (name)
  {
99
    str->append(" AS `", 5);
unknown's avatar
unknown committed
100 101 102 103 104 105
    str->append(name);
    str->append('`');
  }
}


unknown's avatar
unknown committed
106 107
Item_ident::Item_ident(const char *db_name_par,const char *table_name_par,
		       const char *field_name_par)
unknown's avatar
unknown committed
108
  :orig_db_name(db_name_par), orig_table_name(table_name_par), 
109
   orig_field_name(field_name_par),
110 111 112
   db_name(db_name_par), table_name(table_name_par), 
   field_name(field_name_par), cached_field_index(NO_CACHED_FIELD_INDEX), 
   cached_table(0), depended_from(0)
unknown's avatar
unknown committed
113 114 115 116
{
  name = (char*) field_name_par;
}

117
// Constructor used by Item_field & Item_*_ref (see Item comment)
118 119
Item_ident::Item_ident(THD *thd, Item_ident *item)
  :Item(thd, item),
120 121 122
   orig_db_name(item->orig_db_name),
   orig_table_name(item->orig_table_name), 
   orig_field_name(item->orig_field_name),
123 124 125
   db_name(item->db_name),
   table_name(item->table_name),
   field_name(item->field_name),
126
   cached_field_index(item->cached_field_index),
127
   cached_table(item->cached_table),
128
   depended_from(item->depended_from)
129
{}
130

131 132
void Item_ident::cleanup()
{
unknown's avatar
unknown committed
133 134 135 136 137
  DBUG_ENTER("Item_ident::cleanup");
  DBUG_PRINT("enter", ("b:%s(%s), t:%s(%s), f:%s(%s)",
		       db_name, orig_db_name,
		       table_name, orig_table_name,
		       field_name, orig_field_name));
138
  Item::cleanup();
139 140 141
  db_name= orig_db_name; 
  table_name= orig_table_name;
  field_name= orig_field_name;
unknown's avatar
unknown committed
142
  DBUG_VOID_RETURN;
143 144
}

unknown's avatar
unknown committed
145 146 147 148 149
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;
150
  DBUG_RETURN(0);
unknown's avatar
unknown committed
151 152 153
}


unknown's avatar
unknown committed
154 155 156 157
bool Item::check_cols(uint c)
{
  if (c != 1)
  {
unknown's avatar
unknown committed
158
    my_error(ER_OPERAND_COLUMNS, MYF(0), c);
unknown's avatar
unknown committed
159 160 161 162 163
    return 1;
  }
  return 0;
}

unknown's avatar
unknown committed
164 165

void Item::set_name(const char *str, uint length, CHARSET_INFO *cs)
unknown's avatar
unknown committed
166 167 168
{
  if (!length)
  {
unknown's avatar
unknown committed
169 170 171 172
    /* Empty string, used by AS or internal function like last_insert_id() */
    name= (char*) str;
    return;
  }
173 174 175 176 177 178 179 180 181
  if (cs->ctype)
  {
    // This will probably need a better implementation in the future:
    // a function in CHARSET_INFO structure.
    while (length && !my_isgraph(cs,*str))
    {						// Fix problem with yacc
      length--;
      str++;
    }
unknown's avatar
unknown committed
182
  }
unknown's avatar
unknown committed
183 184 185 186 187 188 189 190 191
  if (!my_charset_same(cs, system_charset_info))
  {
    uint32 res_length;
    name= sql_strmake_with_convert(str, length, cs,
				   MAX_ALIAS_NAME, system_charset_info,
				   &res_length);
  }
  else
    name=sql_strmake(str, min(length,MAX_ALIAS_NAME));
unknown's avatar
unknown committed
192 193
}

unknown's avatar
unknown committed
194

195
/*
196 197 198
  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
199 200 201
*/

bool Item::eq(const Item *item, bool binary_cmp) const
unknown's avatar
unknown committed
202 203
{
  return type() == item->type() && name && item->name &&
204
    !my_strcasecmp(system_charset_info,name,item->name);
unknown's avatar
unknown committed
205 206
}

unknown's avatar
unknown committed
207

unknown's avatar
unknown committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238
Item *Item::safe_charset_converter(CHARSET_INFO *tocs)
{
  /*
    Don't allow automatic conversion to non-Unicode charsets,
    as it potentially loses data.
  */
  if (!(tocs->state & MY_CS_UNICODE))
    return NULL; // safe conversion is not possible
  return new Item_func_conv_charset(this, tocs);
}


Item *Item_string::safe_charset_converter(CHARSET_INFO *tocs)
{
  Item_string *conv;
  uint conv_errors;
  String tmp, cstr, *ostr= val_str(&tmp);
  cstr.copy(ostr->ptr(), ostr->length(), ostr->charset(), tocs, &conv_errors);
  if (conv_errors || !(conv= new Item_string(cstr.ptr(), cstr.length(),
                                             cstr.charset(),
                                             collation.derivation)))
  {
    /*
      Safe conversion is not possible (or EOM).
      We could not convert a string into the requested character set
      without data loss. The target charset does not cover all the
      characters from the string. Operation cannot be done correctly.
    */
    return NULL;
  }
  conv->str_value.copy();
239 240 241 242 243 244 245 246 247 248 249 250
  /* 
    The above line executes str_value.realloc() internally,
    which alligns Alloced_length using ALLIGN_SIZE.
    In the case of Item_string::str_value we don't want
    Alloced_length to be longer than str_length.
    Otherwise, some functions like Item_func_concat::val_str()
    try to reuse str_value as a buffer for concatenation result
    for optimization purposes, so our string constant become
    corrupted. See bug#8785 for more details.
    Let's shrink Alloced_length to str_length to avoid this problem.
  */
  conv->str_value.shrink_to_length();
unknown's avatar
unknown committed
251 252 253 254
  return conv;
}


255 256 257 258 259
bool Item_string::eq(const Item *item, bool binary_cmp) const
{
  if (type() == item->type())
  {
    if (binary_cmp)
unknown's avatar
unknown committed
260
      return !stringcmp(&str_value, &item->str_value);
261
    return !sortcmp(&str_value, &item->str_value, collation.collation);
262 263 264 265 266
  }
  return 0;
}


unknown's avatar
unknown committed
267 268 269 270 271
/*
  Get the value of the function as a TIME structure.
  As a extra convenience the time structure is reset on error!
 */

272
bool Item::get_date(TIME *ltime,uint fuzzydate)
unknown's avatar
unknown committed
273 274
{
  char buff[40];
unknown's avatar
unknown committed
275
  String tmp(buff,sizeof(buff), &my_charset_bin),*res;
unknown's avatar
unknown committed
276
  if (!(res=val_str(&tmp)) ||
277 278
      str_to_datetime_with_warn(res->ptr(), res->length(),
                                ltime, fuzzydate) <= MYSQL_TIMESTAMP_ERROR)
unknown's avatar
unknown committed
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
  {
    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];
unknown's avatar
unknown committed
294
  String tmp(buff,sizeof(buff),&my_charset_bin),*res;
unknown's avatar
unknown committed
295
  if (!(res=val_str(&tmp)) ||
296
      str_to_time_with_warn(res->ptr(), res->length(), ltime))
unknown's avatar
unknown committed
297 298 299 300 301 302 303
  {
    bzero((char*) ltime,sizeof(*ltime));
    return 1;
  }
  return 0;
}

304
CHARSET_INFO *Item::default_charset()
305
{
unknown's avatar
unknown committed
306
  return current_thd->variables.collation_connection;
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
/*
  Move SUM items out from item tree and replace with reference

  SYNOPSIS
    split_sum_func2()
    thd			Thread handler
    ref_pointer_array	Pointer to array of reference fields
    fields		All fields in select
    ref			Pointer to item

  NOTES
   This is from split_sum_func2() for items that should be split

   All found SUM items are added FIRST in the fields list and
   we replace the item with a reference.

   thd->fatal_error() may be called if we are out of memory
*/


void Item::split_sum_func2(THD *thd, Item **ref_pointer_array,
                           List<Item> &fields, Item **ref)
{
  if (type() != SUM_FUNC_ITEM && with_sum_func)
  {
    /* Will split complicated items and ignore simple ones */
    split_sum_func(thd, ref_pointer_array, fields);
  }
  else if ((type() == SUM_FUNC_ITEM ||
            (used_tables() & ~PARAM_TABLE_BIT)) &&
           type() != REF_ITEM)
  {
    /*
      Replace item with a reference so that we can easily calculate
      it (in case of sum functions) or copy it (in case of fields)

      The test above is to ensure we don't do a reference for things
      that are constants (PARAM_TABLE_BIT is in effect a constant)
      or already referenced (for example an item in HAVING)
    */
    uint el= fields.elements;
    Item *new_item;    
    ref_pointer_array[el]= this;
    if (!(new_item= new Item_ref(ref_pointer_array + el, 0, name)))
      return;                                   // fatal_error is set
    fields.push_front(this);
    ref_pointer_array[el]= this;
    thd->change_item_tree(ref, new_item);
  }
}


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
/*
   Aggregate two collations together taking
   into account their coercibility (aka derivation):

   0 == DERIVATION_EXPLICIT  - an explicitely written COLLATE clause
   1 == DERIVATION_NONE      - a mix of two different collations
   2 == DERIVATION_IMPLICIT  - a column
   3 == DERIVATION_COERCIBLE - a string constant

   The most important rules are:

   1. If collations are the same:
      chose this collation, and the strongest derivation.

   2. If collations are different:
     - Character sets may differ, but only if conversion without
       data loss is possible. The caller provides flags whether
       character set conversion attempts should be done. If no
       flags are substituted, then the character sets must be the same.
       Currently processed flags are:
         MY_COLL_ALLOW_SUPERSET_CONV  - allow conversion to a superset
         MY_COLL_ALLOW_COERCIBLE_CONV - allow conversion of a coercible value
     - two EXPLICIT collations produce an error, e.g. this is wrong:
       CONCAT(expr1 collate latin1_swedish_ci, expr2 collate latin1_german_ci)
     - the side with smaller derivation value wins,
       i.e. a column is stronger than a string constant,
       an explicit COLLATE clause is stronger than a column.
     - if derivations are the same, we have DERIVATION_NONE,
       we'll wait for an explicit COLLATE clause which possibly can
       come from another argument later: for example, this is valid,
       but we don't know yet when collecting the first two arguments:
         CONCAT(latin1_swedish_ci_column,
                latin1_german1_ci_column,
                expr COLLATE latin1_german2_ci)
*/
bool DTCollation::aggregate(DTCollation &dt, uint flags)
398
{
399
  if (!my_charset_same(collation, dt.collation))
400
  {
401 402 403
    /* 
       We do allow to use binary strings (like BLOBS)
       together with character strings.
unknown's avatar
unknown committed
404 405
       Binaries have more precedance than a character
       string of the same derivation.
406
    */
407
    if (collation == &my_charset_bin)
408
    {
409 410 411
      if (derivation <= dt.derivation)
	; // Do nothing
      else
412 413 414
      {
	set(dt); 
      }
415
    }
416
    else if (dt.collation == &my_charset_bin)
417
    {
418
      if (dt.derivation <= derivation)
419
      {
420
        set(dt);
421
      }
422 423
      else
       ; // Do nothing
424
    }
425 426 427
    else if ((flags & MY_COLL_ALLOW_SUPERSET_CONV) &&
             derivation < dt.derivation &&
             collation->state & MY_CS_UNICODE)
428
    {
429 430 431 432 433 434 435 436 437 438
      // Do nothing
    }
    else if ((flags & MY_COLL_ALLOW_SUPERSET_CONV) &&
             dt.derivation < derivation &&
             dt.collation->state & MY_CS_UNICODE)
    {
      set(dt);
    }
    else if ((flags & MY_COLL_ALLOW_COERCIBLE_CONV) &&
             derivation < dt.derivation &&
439
             dt.derivation >= DERIVATION_SYSCONST)
440 441 442 443 444
    {
      // Do nothing;
    }
    else if ((flags & MY_COLL_ALLOW_COERCIBLE_CONV) &&
             dt.derivation < derivation &&
445
             derivation >= DERIVATION_SYSCONST)
446 447
    {
      set(dt);
448
    }
449 450
    else
    {
451
      // Cannot apply conversion
452
      set(0, DERIVATION_NONE);
453
      return 1;
454
    }
455
  }
456
  else if (derivation < dt.derivation)
457
  {
458
    // Do nothing
459
  }
460
  else if (dt.derivation < derivation)
461
  {
462
    set(dt);
463
  }
464 465 466
  else
  { 
    if (collation == dt.collation)
467
    {
468 469 470 471 472
      // Do nothing
    }
    else 
    {
      if (derivation == DERIVATION_EXPLICIT)
473
      {
474 475
	set(0, DERIVATION_NONE);
	return 1;
476
      }
477 478 479
      CHARSET_INFO *bin= get_charset_by_csname(collation->csname, 
					       MY_CS_BINSORT,MYF(0));
      set(bin, DERIVATION_NONE);
480
    }
481 482 483 484
  }
  return 0;
}

unknown's avatar
unknown committed
485
Item_field::Item_field(Field *f)
486
  :Item_ident(NullS, f->table_name, f->field_name)
unknown's avatar
unknown committed
487 488
{
  set_field(f);
489 490 491 492 493
  /*
    field_name and talbe_name should not point to garbage
    if this item is to be reused
  */
  orig_table_name= orig_field_name= "";
unknown's avatar
unknown committed
494 495
}

496
Item_field::Item_field(THD *thd, Field *f)
497
  :Item_ident(f->table->table_cache_key, f->table_name, f->field_name)
498
{
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519
  /*
    We always need to provide Item_field with a fully qualified field
    name to avoid ambiguity when executing prepared statements like
    SELECT * from d1.t1, d2.t1; (assuming d1.t1 and d2.t1 have columns
    with same names).
    This is because prepared statements never deal with wildcards in
    select list ('*') and always fix fields using fully specified path
    (i.e. db.table.column).
    No check for OOM: if db_name is NULL, we'll just get
    "Field not found" error.
    We need to copy db_name, table_name and field_name because they must
    be allocated in the statement memory, not in table memory (the table
    structure can go away and pop up again between subsequent executions
    of a prepared statement).
  */
  if (thd->current_arena->is_stmt_prepare())
  {
    if (db_name)
      orig_db_name= thd->strdup(db_name);
    orig_table_name= thd->strdup(table_name);
    orig_field_name= thd->strdup(field_name);
520 521 522 523 524 525
    /*
      We don't restore 'name' in cleanup because it's not changed
      during execution. Still we need it to point to persistent
      memory if this item is to be reused.
    */
    name= (char*) orig_field_name;
526
  }
527 528 529
  set_field(f);
}

530
// Constructor need to process subselect with temporary tables (see Item)
531
Item_field::Item_field(THD *thd, Item_field *item)
532
  :Item_ident(thd, item),
533 534
   field(item->field),
   result_field(item->result_field)
535 536 537
{
  collation.set(DERIVATION_IMPLICIT);
}
unknown's avatar
unknown committed
538 539 540 541 542 543 544 545 546

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;
547
  db_name=field_par->table->table_cache_key;
548
  unsigned_flag=test(field_par->flags & UNSIGNED_FLAG);
549
  collation.set(field_par->charset(), DERIVATION_IMPLICIT);
550
  fixed= 1;
unknown's avatar
unknown committed
551 552
}

553 554 555 556 557 558 559 560 561 562 563 564 565 566

/*
  Reset this item to point to a field from the new temporary table.
  This is used when we create a new temporary table for each execution
  of prepared statement.
*/

void Item_field::reset_field(Field *f)
{
  set_field(f);
  /* 'name' is pointing at field->field_name of old field */
  name= (char*) f->field_name;
}

unknown's avatar
unknown committed
567 568 569
const char *Item_ident::full_name() const
{
  char *tmp;
570
  if (!table_name || !field_name)
unknown's avatar
unknown committed
571
    return field_name ? field_name : name ? name : "tmp_field";
unknown's avatar
unknown committed
572
  if (db_name && db_name[0])
unknown's avatar
unknown committed
573
  {
unknown's avatar
unknown committed
574 575
    tmp=(char*) sql_alloc((uint) strlen(db_name)+(uint) strlen(table_name)+
			  (uint) strlen(field_name)+3);
unknown's avatar
unknown committed
576 577 578 579
    strxmov(tmp,db_name,".",table_name,".",field_name,NullS);
  }
  else
  {
580 581 582 583 584 585 586 587
    if (table_name[0])
    {
      tmp= (char*) sql_alloc((uint) strlen(table_name) +
			     (uint) strlen(field_name) + 2);
      strxmov(tmp, table_name, ".", field_name, NullS);
    }
    else
      tmp= (char*) field_name;
unknown's avatar
unknown committed
588 589 590 591 592 593 594
  }
  return tmp;
}

/* ARGSUSED */
String *Item_field::val_str(String *str)
{
595
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
596 597
  if ((null_value=field->is_null()))
    return 0;
598
  str->set_charset(str_value.charset());
unknown's avatar
unknown committed
599 600 601 602 603
  return field->val_str(str,&str_value);
}

double Item_field::val()
{
604
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
605 606 607 608 609 610 611
  if ((null_value=field->is_null()))
    return 0.0;
  return field->val_real();
}

longlong Item_field::val_int()
{
612
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
613 614 615 616 617 618 619 620 621 622
  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;
623
  str->set_charset(str_value.charset());
unknown's avatar
unknown committed
624 625 626
  return result_field->val_str(str,&str_value);
}

627
bool Item_field::get_date(TIME *ltime,uint fuzzydate)
unknown's avatar
unknown committed
628 629 630 631 632 633 634 635 636
{
  if ((null_value=field->is_null()) || field->get_date(ltime,fuzzydate))
  {
    bzero((char*) ltime,sizeof(*ltime));
    return 1;
  }
  return 0;
}

637
bool Item_field::get_date_result(TIME *ltime,uint fuzzydate)
638 639 640 641 642 643 644 645 646 647
{
  if ((null_value=result_field->is_null()) ||
      result_field->get_date(ltime,fuzzydate))
  {
    bzero((char*) ltime,sizeof(*ltime));
    return 1;
  }
  return 0;
}

unknown's avatar
unknown committed
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
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();
}

672

673
bool Item_field::eq(const Item *item, bool binary_cmp) const
unknown's avatar
unknown committed
674
{
675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696
  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 ||
697 698
	     (item_field->db_name && !strcmp(item_field->db_name,
					     db_name))))));
unknown's avatar
unknown committed
699 700
}

701

unknown's avatar
unknown committed
702 703 704 705
table_map Item_field::used_tables() const
{
  if (field->table->const_table)
    return 0;					// const item
unknown's avatar
unknown committed
706
  return (depended_from ? OUTER_REF_TABLE_BIT : field->table->map);
unknown's avatar
unknown committed
707 708
}

709

710
Item *Item_field::get_tmp_table_item(THD *thd)
711
{
712
  Item_field *new_item= new Item_field(thd, this);
713 714 715 716
  if (new_item)
    new_item->field= new_item->result_field;
  return new_item;
}
unknown's avatar
unknown committed
717

718

unknown's avatar
unknown committed
719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734
/*
  Create an item from a string we KNOW points to a valid longlong/ulonglong
  end \0 terminated number string
*/

Item_int::Item_int(const char *str_arg, uint length)
{
  char *end_ptr= (char*) str_arg + length;
  int error;
  value= my_strtoll10(str_arg, &end_ptr, &error);
  max_length= (uint) (end_ptr - str_arg);
  name= (char*) str_arg;
  fixed= 1;
}


unknown's avatar
unknown committed
735 736
String *Item_int::val_str(String *str)
{
unknown's avatar
unknown committed
737
  // following assert is redundant, because fixed=1 assigned in constructor
738
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
739
  str->set(value, &my_charset_bin);
unknown's avatar
unknown committed
740 741 742 743 744
  return str;
}

void Item_int::print(String *str)
{
unknown's avatar
unknown committed
745 746
  // my_charset_bin is good enough for numbers
  str_value.set(value, &my_charset_bin);
unknown's avatar
unknown committed
747
  str->append(str_value);
unknown's avatar
unknown committed
748 749
}

750

unknown's avatar
unknown committed
751 752 753 754 755 756 757
Item_uint::Item_uint(const char *str_arg, uint length):
  Item_int(str_arg, length)
{
  unsigned_flag= 1;
}


unknown's avatar
unknown committed
758 759
String *Item_uint::val_str(String *str)
{
unknown's avatar
unknown committed
760
  // following assert is redundant, because fixed=1 assigned in constructor
761
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
762
  str->set((ulonglong) value, &my_charset_bin);
unknown's avatar
unknown committed
763 764 765
  return str;
}

766

unknown's avatar
unknown committed
767 768
void Item_uint::print(String *str)
{
769
  // latin1 is good enough for numbers
unknown's avatar
unknown committed
770 771
  str_value.set((ulonglong) value, default_charset());
  str->append(str_value);
unknown's avatar
unknown committed
772 773
}

unknown's avatar
unknown committed
774 775 776

String *Item_real::val_str(String *str)
{
unknown's avatar
unknown committed
777
  // following assert is redundant, because fixed=1 assigned in constructor
778
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
779
  str->set(value,decimals,&my_charset_bin);
unknown's avatar
unknown committed
780 781 782
  return str;
}

783

unknown's avatar
unknown committed
784 785
void Item_string::print(String *str)
{
786 787
  str->append('_');
  str->append(collation.collation->csname);
unknown's avatar
unknown committed
788
  str->append('\'');
unknown's avatar
unknown committed
789
  str_value.print(str);
unknown's avatar
unknown committed
790 791 792
  str->append('\'');
}

793 794
bool Item_null::eq(const Item *item, bool binary_cmp) const
{ return item->type() == type(); }
795 796
double Item_null::val()
{
unknown's avatar
unknown committed
797 798
  // following assert is redundant, because fixed=1 assigned in constructor
  DBUG_ASSERT(fixed == 1);
799 800 801 802 803
  null_value=1;
  return 0.0;
}
longlong Item_null::val_int()
{
unknown's avatar
unknown committed
804 805
  // following assert is redundant, because fixed=1 assigned in constructor
  DBUG_ASSERT(fixed == 1);
806 807 808
  null_value=1;
  return 0;
}
unknown's avatar
unknown committed
809 810
/* ARGSUSED */
String *Item_null::val_str(String *str)
811
{
unknown's avatar
unknown committed
812 813
  // following assert is redundant, because fixed=1 assigned in constructor
  DBUG_ASSERT(fixed == 1);
814 815 816
  null_value=1;
  return 0;
}
unknown's avatar
unknown committed
817 818


unknown's avatar
unknown committed
819 820 821 822 823 824
Item *Item_null::safe_charset_converter(CHARSET_INFO *tocs)
{
  collation.set(tocs);
  return this;
}

825 826 827 828 829 830 831 832 833 834 835 836 837 838 839
/*********************** Item_param related ******************************/

/* 
  Default function of Item_param::set_param_func, so in case
  of malformed packet the server won't SIGSEGV
*/

static void
default_set_param_func(Item_param *param,
                       uchar **pos __attribute__((unused)),
                       ulong len __attribute__((unused)))
{
  param->set_null();
}

840 841
Item_param::Item_param(unsigned pos_in_query_arg) :
  state(NO_VALUE),
842
  item_result_type(STRING_RESULT),
843 844
  /* Don't pretend to be a literal unless value for this item is set. */
  item_type(PARAM_ITEM),
845
  param_type(MYSQL_TYPE_STRING),
846
  pos_in_query(pos_in_query_arg),
847 848 849
  set_param_func(default_set_param_func)
{
  name= (char*) "?";
850 851 852 853 854 855
  /* 
    Since we can't say whenever this item can be NULL or cannot be NULL
    before mysql_stmt_execute(), so we assuming that it can be NULL until
    value is set.
  */
  maybe_null= 1;
856 857
}

unknown's avatar
unknown committed
858
void Item_param::set_null()
859 860
{
  DBUG_ENTER("Item_param::set_null");
861
  /* These are cleared after each execution by reset() method */
862
  max_length= 0;
863 864 865 866 867 868 869 870 871
  null_value= 1;
  /* 
    Because of NULL and string values we need to set max_length for each new
    placeholder value: user can submit NULL for any placeholder type, and 
    string length can be different in each execution.
  */
  max_length= 0;
  decimals= 0;
  state= NULL_VALUE;
872
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
873 874
}

875
void Item_param::set_int(longlong i, uint32 max_length_arg)
876 877
{
  DBUG_ENTER("Item_param::set_int");
878 879 880 881
  value.integer= (longlong) i;
  state= INT_VALUE;
  max_length= max_length_arg;
  decimals= 0;
882
  maybe_null= 0;
883
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
884 885
}

886
void Item_param::set_double(double d)
887 888
{
  DBUG_ENTER("Item_param::set_double");
889 890 891
  value.real= d;
  state= REAL_VALUE;
  max_length= DBL_DIG + 8;
892
  decimals= NOT_FIXED_DEC;
893
  maybe_null= 0;
894
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
895 896
}

897

898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
/*
  Set parameter value from TIME value.

  SYNOPSIS
    set_time()
      tm             - datetime value to set (time_type is ignored)
      type           - type of datetime value
      max_length_arg - max length of datetime value as string

  NOTE
    If we value to be stored is not normalized, zero value will be stored
    instead and proper warning will be produced. This function relies on
    the fact that even wrong value sent over binary protocol fits into
    MAX_DATE_STRING_REP_LENGTH buffer.
*/
913
void Item_param::set_time(TIME *tm, timestamp_type type, uint32 max_length_arg)
914
{ 
915
  DBUG_ENTER("Item_param::set_time");
916

917 918
  value.time= *tm;
  value.time.time_type= type;
919

920 921 922 923 924 925 926 927 928 929 930
  if (value.time.year > 9999 || value.time.month > 12 ||
      value.time.day > 31 ||
      type != MYSQL_TIMESTAMP_TIME && value.time.hour > 23 ||
      value.time.minute > 59 || value.time.second > 59)
  {
    char buff[MAX_DATE_STRING_REP_LENGTH];
    uint length= my_TIME_to_str(&value.time, buff);
    make_truncated_value_warning(current_thd, buff, length, type);
    set_zero_time(&value.time, MYSQL_TIMESTAMP_ERROR);
  }

931 932 933 934 935 936
  state= TIME_VALUE;
  maybe_null= 0;
  max_length= max_length_arg;
  decimals= 0;
  DBUG_VOID_RETURN;
}
unknown's avatar
unknown committed
937

938 939 940 941 942 943 944 945

bool Item_param::set_str(const char *str, ulong length)
{
  DBUG_ENTER("Item_param::set_str");
  /*
    Assign string with no conversion: data is converted only after it's
    been written to the binary log.
  */
946 947 948
  uint dummy_errors;
  if (str_value.copy(str, length, &my_charset_bin, &my_charset_bin,
                     &dummy_errors))
949 950
    DBUG_RETURN(TRUE);
  state= STRING_VALUE;
951
  maybe_null= 0;
952 953 954
  /* max_length and decimals are set after charset conversion */
  /* sic: str may be not null-terminated, don't add DBUG_PRINT here */
  DBUG_RETURN(FALSE);
955 956 957
}


958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973
bool Item_param::set_longdata(const char *str, ulong length)
{
  DBUG_ENTER("Item_param::set_longdata");

  /*
    If client character set is multibyte, end of long data packet
    may hit at the middle of a multibyte character.  Additionally,
    if binary log is open we must write long data value to the
    binary log in character set of client. This is why we can't
    convert long data to connection character set as it comes
    (here), and first have to concatenate all pieces together,
    write query to the binary log and only then perform conversion.
  */
  if (str_value.append(str, length, &my_charset_bin))
    DBUG_RETURN(TRUE);
  state= LONG_DATA_VALUE;
974
  maybe_null= 0;
975 976

  DBUG_RETURN(FALSE);
977 978 979
}


980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998
/*
  Set parameter value from user variable value.

  SYNOPSIS
   set_from_user_var
     thd   Current thread
     entry User variable structure (NULL means use NULL value)

  RETURN
    0 OK
    1 Out of memort
*/

bool Item_param::set_from_user_var(THD *thd, const user_var_entry *entry)
{
  DBUG_ENTER("Item_param::set_from_user_var");
  if (entry && entry->value)
  {
    item_result_type= entry->type;
unknown's avatar
unknown committed
999 1000 1001
    switch (entry->type) {
    case REAL_RESULT:
      set_double(*(double*)entry->value);
1002 1003
      item_type= Item::REAL_ITEM;
      item_result_type= REAL_RESULT;
unknown's avatar
unknown committed
1004 1005 1006
      break;
    case INT_RESULT:
      set_int(*(longlong*)entry->value, 21);
1007 1008
      item_type= Item::INT_ITEM;
      item_result_type= INT_RESULT;
unknown's avatar
unknown committed
1009 1010
      break;
    case STRING_RESULT:
1011
    {
unknown's avatar
unknown committed
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
      CHARSET_INFO *fromcs= entry->collation.collation;
      CHARSET_INFO *tocs= thd->variables.collation_connection;
      uint32 dummy_offset;

      value.cs_info.character_set_client= fromcs;
      /*
        Setup source and destination character sets so that they
        are different only if conversion is necessary: this will
        make later checks easier.
      */
      value.cs_info.final_character_set_of_str_value=
        String::needs_conversion(0, fromcs, tocs, &dummy_offset) ?
        tocs : fromcs;
      /*
        Exact value of max_length is not known unless data is converted to
        charset of connection, so we have to set it later.
      */
      item_type= Item::STRING_ITEM;
      item_result_type= STRING_RESULT;

      if (set_str((const char *)entry->value, entry->length))
        DBUG_RETURN(1);
      break;
    }
    default:
      DBUG_ASSERT(0);
      set_null();
1039 1040 1041 1042 1043 1044 1045 1046
    }
  }
  else
    set_null();

  DBUG_RETURN(0);
}

1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
/*
    Resets parameter after execution.
  
  SYNOPSIS
     Item_param::reset()
 
  NOTES
    We clear null_value here instead of setting it in set_* methods, 
    because we want more easily handle case for long data.
*/

void Item_param::reset()
1059 1060 1061 1062 1063 1064
{
  /* Shrink string buffer if it's bigger than max possible CHAR column */
  if (str_value.alloced_length() > MAX_CHAR_WIDTH)
    str_value.free();
  else
    str_value.length(0);
1065
  str_value_ptr.length(0);
1066
  /*
1067 1068
    We must prevent all charset conversions untill data has been written
    to the binary log.
1069 1070 1071
  */
  str_value.set_charset(&my_charset_bin);
  state= NO_VALUE;
1072 1073
  maybe_null= 1;
  null_value= 0;
1074 1075 1076 1077 1078 1079 1080 1081 1082
  /*
    Don't reset item_type to PARAM_ITEM: it's only needed to guard
    us from item optimizations at prepare stage, when item doesn't yet
    contain a literal of some kind.
    In all other cases when this object is accessed its value is
    set (this assumption is guarded by 'state' and
    DBUG_ASSERTS(state != NO_VALUE) in all Item_param::get_*
    methods).
  */
unknown's avatar
unknown committed
1083 1084 1085
}


unknown's avatar
unknown committed
1086
int Item_param::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
1087 1088
{
  field->set_notnull();
1089 1090 1091 1092 1093 1094 1095 1096

  switch (state) {
  case INT_VALUE:
    return field->store(value.integer);
  case REAL_VALUE:
    return field->store(value.real);
  case TIME_VALUE:
    field->store_time(&value.time, value.time.time_type);
1097
    return 0;
1098 1099 1100 1101 1102
  case STRING_VALUE:
  case LONG_DATA_VALUE:
    return field->store(str_value.ptr(), str_value.length(),
                        str_value.charset());
  case NULL_VALUE:
1103
    return set_field_to_null_with_conversions(field, no_conversions);
1104 1105 1106
  case NO_VALUE:
  default:
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
1107
  }
1108
  return 1;
unknown's avatar
unknown committed
1109 1110
}

1111

1112 1113
bool Item_param::get_time(TIME *res)
{
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
  if (state == TIME_VALUE)
  {
    *res= value.time;
    return 0;
  }
  /*
    If parameter value isn't supplied assertion will fire in val_str()
    which is called from Item::get_time().
  */
  return Item::get_time(res);
1124
}
1125

1126

1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137
bool Item_param::get_date(TIME *res, uint fuzzydate)
{
  if (state == TIME_VALUE)
  {
    *res= value.time;
    return 0;
  }
  return Item::get_date(res, fuzzydate);
}


unknown's avatar
unknown committed
1138 1139
double Item_param::val() 
{
1140 1141 1142 1143 1144 1145 1146 1147 1148
  switch (state) {
  case REAL_VALUE:
    return value.real;
  case INT_VALUE:
    return (double) value.integer;
  case STRING_VALUE:
  case LONG_DATA_VALUE:
    {
      int dummy_err;
unknown's avatar
unknown committed
1149
      char *end_not_used;
1150
      return my_strntod(str_value.charset(), (char*) str_value.ptr(),
unknown's avatar
unknown committed
1151
                        str_value.length(), &end_not_used, &dummy_err);
1152 1153 1154 1155 1156 1157
    }
  case TIME_VALUE:
    /*
      This works for example when user says SELECT ?+0.0 and supplies
      time value for the placeholder.
    */
1158
    return ulonglong2double(TIME_to_ulonglong(&value.time));
1159
  case NULL_VALUE:
1160
    return 0.0;
unknown's avatar
unknown committed
1161
  default:
1162
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
1163
  }
1164
  return 0.0;
unknown's avatar
unknown committed
1165 1166
} 

1167

unknown's avatar
unknown committed
1168 1169
longlong Item_param::val_int() 
{ 
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
  switch (state) {
  case REAL_VALUE:
    return (longlong) (value.real + (value.real > 0 ? 0.5 : -0.5));
  case INT_VALUE:
    return value.integer;
  case STRING_VALUE:
  case LONG_DATA_VALUE:
    {
      int dummy_err;
      return my_strntoll(str_value.charset(), str_value.ptr(),
                         str_value.length(), 10, (char**) 0, &dummy_err);
    }
  case TIME_VALUE:
    return (longlong) TIME_to_ulonglong(&value.time);
  case NULL_VALUE:
    return 0; 
unknown's avatar
unknown committed
1186
  default:
1187
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
1188
  }
1189
  return 0;
unknown's avatar
unknown committed
1190 1191
}

1192

unknown's avatar
unknown committed
1193 1194
String *Item_param::val_str(String* str) 
{ 
1195 1196 1197
  switch (state) {
  case STRING_VALUE:
  case LONG_DATA_VALUE:
1198
    return &str_value_ptr;
1199 1200 1201 1202 1203
  case REAL_VALUE:
    str->set(value.real, NOT_FIXED_DEC, &my_charset_bin);
    return str;
  case INT_VALUE:
    str->set(value.integer, &my_charset_bin);
unknown's avatar
unknown committed
1204
    return str;
1205 1206
  case TIME_VALUE:
  {
1207
    if (str->reserve(MAX_DATE_STRING_REP_LENGTH))
1208
      break;
1209 1210
    str->length((uint) my_TIME_to_str(&value.time, (char*) str->ptr()));
    str->set_charset(&my_charset_bin);
unknown's avatar
unknown committed
1211
    return str;
1212 1213 1214
  }
  case NULL_VALUE:
    return NULL; 
unknown's avatar
unknown committed
1215
  default:
1216
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
1217
  }
1218
  return str;
unknown's avatar
unknown committed
1219
}
1220 1221 1222 1223

/*
  Return Param item values in string format, for generating the dynamic 
  query used in update/binary logs
1224 1225
  TODO: change interface and implementation to fill log data in place
  and avoid one more memcpy/alloc between str and log string.
1226 1227
*/

1228
const String *Item_param::query_val_str(String* str) const
1229
{
1230 1231 1232 1233 1234 1235 1236 1237
  switch (state) {
  case INT_VALUE:
    str->set(value.integer, &my_charset_bin);
    break;
  case REAL_VALUE:
    str->set(value.real, NOT_FIXED_DEC, &my_charset_bin);
    break;
  case TIME_VALUE:
1238
    {
1239 1240 1241 1242 1243 1244
      char *buf, *ptr;
      str->length(0);
      /*
        TODO: in case of error we need to notify replication
        that binary log contains wrong statement 
      */
1245
      if (str->reserve(MAX_DATE_STRING_REP_LENGTH+3))
1246 1247 1248 1249 1250 1251
        break; 

      /* Create date string inplace */
      buf= str->c_ptr_quick();
      ptr= buf;
      *ptr++= '\'';
1252
      ptr+= (uint) my_TIME_to_str(&value.time, ptr);
1253 1254 1255
      *ptr++= '\'';
      str->length((uint32) (ptr - buf));
      break;
1256
    }
1257 1258
  case STRING_VALUE:
  case LONG_DATA_VALUE:
1259
    {
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272
      char *buf, *ptr;
      str->length(0);
      if (str->reserve(str_value.length()*2+3))
        break;

      buf= str->c_ptr_quick();
      ptr= buf;
      *ptr++= '\'';
      ptr+= escape_string_for_mysql(str_value.charset(), ptr,
                                    str_value.ptr(), str_value.length());
      *ptr++= '\'';
      str->length(ptr - buf);
      break;
1273
    }
1274 1275 1276 1277
  case NULL_VALUE:
    return &my_null_string;
  default:
    DBUG_ASSERT(0);
1278 1279 1280
  }
  return str;
}
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305


/*
  Convert string from client character set to the character set of
  connection.
*/

bool Item_param::convert_str_value(THD *thd)
{
  bool rc= FALSE;
  if (state == STRING_VALUE || state == LONG_DATA_VALUE)
  {
    /*
      Check is so simple because all charsets were set up properly
      in setup_one_conversion_function, where typecode of
      placeholder was also taken into account: the variables are different
      here only if conversion is really necessary.
    */
    if (value.cs_info.final_character_set_of_str_value !=
        value.cs_info.character_set_client)
    {
      rc= thd->convert_string(&str_value,
                              value.cs_info.character_set_client,
                              value.cs_info.final_character_set_of_str_value);
    }
1306 1307 1308 1309
    else
      str_value.set_charset(value.cs_info.final_character_set_of_str_value);
    /* Here str_value is guaranteed to be in final_character_set_of_str_value */

1310 1311
    max_length= str_value.length();
    decimals= 0;
1312 1313 1314 1315 1316 1317
    /*
      str_value_ptr is returned from val_str(). It must be not alloced
      to prevent it's modification by val_str() invoker.
    */
    str_value_ptr.set(str_value.ptr(), str_value.length(),
                      str_value.charset());
1318 1319 1320 1321
  }
  return rc;
}

unknown's avatar
unknown committed
1322 1323
/* End of Item_param related */

1324

unknown's avatar
unknown committed
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335
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)
{
1336
  // Item_copy_string is used without fix_fields call
unknown's avatar
unknown committed
1337 1338 1339 1340 1341
  if (null_value)
    return (String*) 0;
  return &str_value;
}

unknown's avatar
unknown committed
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351

int Item_copy_string::save_in_field(Field *field, bool no_conversions)
{
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
  return field->store(str_value.ptr(),str_value.length(),
		      collation.collation);
}

unknown's avatar
unknown committed
1352
/*
1353
  Functions to convert item to field (for send_fields)
unknown's avatar
unknown committed
1354 1355 1356 1357
*/

/* ARGSUSED */
bool Item::fix_fields(THD *thd,
unknown's avatar
unknown committed
1358 1359
		      struct st_table_list *list,
		      Item ** ref)
unknown's avatar
unknown committed
1360
{
1361 1362

  // We do not check fields which are fixed during construction
unknown's avatar
unknown committed
1363
  DBUG_ASSERT(fixed == 0 || basic_const_item());
1364
  fixed= 1;
unknown's avatar
unknown committed
1365 1366 1367
  return 0;
}

1368 1369
double Item_ref_null_helper::val()
{
1370
  DBUG_ASSERT(fixed == 1);
1371
  double tmp= (*ref)->val_result();
unknown's avatar
unknown committed
1372
  owner->was_null|= null_value= (*ref)->null_value;
1373 1374
  return tmp;
}
1375 1376


1377 1378
longlong Item_ref_null_helper::val_int()
{
1379
  DBUG_ASSERT(fixed == 1);
1380
  longlong tmp= (*ref)->val_int_result();
unknown's avatar
unknown committed
1381
  owner->was_null|= null_value= (*ref)->null_value;
1382 1383
  return tmp;
}
1384 1385


1386 1387
String* Item_ref_null_helper::val_str(String* s)
{
1388
  DBUG_ASSERT(fixed == 1);
1389
  String* tmp= (*ref)->str_result(s);
unknown's avatar
unknown committed
1390
  owner->was_null|= null_value= (*ref)->null_value;
1391 1392
  return tmp;
}
1393 1394


1395
bool Item_ref_null_helper::get_date(TIME *ltime, uint fuzzydate)
1396 1397 1398
{  
  return (owner->was_null|= null_value= (*ref)->get_date(ltime, fuzzydate));
}
unknown's avatar
unknown committed
1399

unknown's avatar
unknown committed
1400 1401 1402 1403 1404 1405

/*
  Mark item and SELECT_LEXs as dependent if it is not outer resolving

  SYNOPSIS
    mark_as_dependent()
1406
    thd - thread handler
unknown's avatar
unknown committed
1407 1408 1409 1410 1411
    last - select from which current item depend
    current  - current select
    item - item which should be marked
*/

1412
static void mark_as_dependent(THD *thd, SELECT_LEX *last, SELECT_LEX *current,
unknown's avatar
unknown committed
1413 1414
			      Item_ident *item)
{
1415
  // store pointer on SELECT_LEX from which item is dependent
unknown's avatar
unknown committed
1416 1417
  item->depended_from= last;
  current->mark_as_dependent(last);
1418
  if (thd->lex->describe & DESCRIBE_EXTENDED)
1419 1420 1421 1422 1423 1424 1425 1426 1427 1428
  {
    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);
  }
unknown's avatar
unknown committed
1429 1430 1431
}


unknown's avatar
unknown committed
1432
bool Item_field::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
unknown's avatar
unknown committed
1433
{
1434
  enum_parsing_place place= NO_MATTER;
unknown's avatar
unknown committed
1435
  DBUG_ASSERT(fixed == 0);
1436
  if (!field)					// If field is not checked
unknown's avatar
unknown committed
1437
  {
1438
    TABLE_LIST *where= 0;
1439
    bool upward_lookup= 0;
1440
    Field *tmp= (Field *)not_found_field;
unknown's avatar
unknown committed
1441
    if ((tmp= find_field_in_tables(thd, this, tables, &where, 0)) ==
1442
	not_found_field)
1443 1444
    {
      /*
1445
	We can't find table field in table list of current select,
1446
	consequently we have to find it in outer subselect(s).
1447 1448 1449
	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
1450 1451 1452
	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
1453
      SELECT_LEX *last= 0;
unknown's avatar
unknown committed
1454 1455 1456
#ifdef EMBEDDED_LIBRARY
      thd->net.last_errno= 0;
#endif
1457
      TABLE_LIST *table_list;
1458
      Item **refer= (Item **)not_found_item;
1459
      uint counter;
1460
      bool not_used;
1461
      // Prevent using outer fields in subselects, that is not supported now
1462
      SELECT_LEX *cursel= (SELECT_LEX *) thd->lex->current_select;
unknown's avatar
unknown committed
1463
      if (cursel->master_unit()->first_select()->linkage != DERIVED_TABLE_TYPE)
1464 1465 1466
      {
	SELECT_LEX_UNIT *prev_unit= cursel->master_unit();
	for (SELECT_LEX *sl= prev_unit->outer_select();
1467
	     sl;
1468
	     sl= (prev_unit= sl->master_unit())->outer_select())
1469
	{
1470
	  upward_lookup= 1;
1471
	  table_list= (last= sl)->get_table_list();
1472
	  if (sl->resolve_mode == SELECT_LEX::INSERT_MODE && table_list)
1473
	  {
1474 1475 1476 1477
            /*
              it is primary INSERT st_select_lex => skip first table
              resolving
            */
1478 1479
	    table_list= table_list->next;
	  }
unknown's avatar
unknown committed
1480 1481

	  Item_subselect *prev_subselect_item= prev_unit->item;
1482
          place= prev_subselect_item->parsing_place;
1483 1484
          /*
            check table fields only if subquery used somewhere out of HAVING
1485 1486
            or outer SELECT do not use groupping (i.e. tables are
            accessable)
1487
          */
1488
          if ((place != IN_HAVING ||
1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
               (sl->with_sum_func == 0 && sl->group_list.elements == 0)) &&
              (tmp= find_field_in_tables(thd, this,
                                         table_list, &where,
                                         0)) != not_found_field)
          {
            if (!tmp)
              return -1;
            prev_subselect_item->used_tables_cache|= tmp->table->map;
            prev_subselect_item->const_item_cache= 0;
            break;
          }
1500
	  if (sl->resolve_mode == SELECT_LEX::SELECT_MODE &&
1501
	      (refer= find_item_in_list(this, sl->item_list, &counter,
1502 1503
                                        REPORT_EXCEPT_NOT_FOUND,
                                        &not_used)) !=
1504
	       (Item **) not_found_item)
1505
	  {
1506
	    if (refer && (*refer)->fixed) // Avoid crash in case of error
1507
	    {
unknown's avatar
unknown committed
1508 1509
	      prev_subselect_item->used_tables_cache|= (*refer)->used_tables();
	      prev_subselect_item->const_item_cache&= (*refer)->const_item();
1510
	    }
1511
	    break;
1512 1513 1514
	  }

	  // Reference is not found => depend from outer (or just error)
unknown's avatar
unknown committed
1515 1516
	  prev_subselect_item->used_tables_cache|= OUTER_REF_TABLE_BIT;
	  prev_subselect_item->const_item_cache= 0;
1517

1518 1519
	  if (sl->master_unit()->first_select()->linkage ==
	      DERIVED_TABLE_TYPE)
1520
	    break; // do not look over derived table
1521
	}
1522
      }
1523
      if (!tmp)
1524
	return -1;
1525 1526 1527
      else if (!refer)
	return 1;
      else if (tmp == not_found_field && refer == (Item **)not_found_item)
unknown's avatar
unknown committed
1528
      {
1529
	if (upward_lookup)
unknown's avatar
unknown committed
1530
	{
1531 1532 1533
	  // 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);
unknown's avatar
unknown committed
1534
	}
1535
	else
unknown's avatar
unknown committed
1536
	{
1537 1538
	  // Call to report error
	  find_field_in_tables(thd, this, tables, &where, 1);
unknown's avatar
unknown committed
1539
	}
unknown's avatar
unknown committed
1540 1541
	return -1;
      }
1542 1543
      else if (refer != (Item **)not_found_item)
      {
1544
	if (!last->ref_pointer_array[counter])
1545 1546 1547 1548 1549
	{
	  my_error(ER_ILLEGAL_REFERENCE, MYF(0), name,
		   "forward reference in item list");
	  return -1;
	}
1550
        DBUG_ASSERT((*refer)->fixed);
1551 1552
        /*
          Here, a subset of actions performed by Item_ref::set_properties
unknown's avatar
unknown committed
1553 1554 1555
          is not enough. So we pass ptr to NULL into Item_[direct]_ref
          constructor, so no initialization is performed, and call 
          fix_fields() below.
1556 1557 1558
        */
        Item *save= last->ref_pointer_array[counter];
        last->ref_pointer_array[counter]= NULL;
1559 1560 1561
	Item_ref *rf= (place == IN_HAVING ?
                       new Item_ref(last->ref_pointer_array + counter,
                                    (char *)table_name,
1562
                                    (char *)field_name) :
1563 1564
                       new Item_direct_ref(last->ref_pointer_array + counter,
                                           (char *)table_name,
1565
                                           (char *)field_name));
unknown's avatar
unknown committed
1566
	if (!rf)
1567
	  return 1;
1568
        thd->change_item_tree(ref, rf);
1569
        last->ref_pointer_array[counter]= save;
1570 1571 1572 1573
	/*
	  rf is Item_ref => never substitute other items (in this case)
	  during fix_fields() => we can use rf after fix_fields()
	*/
unknown's avatar
unknown committed
1574
	if (rf->fix_fields(thd, tables, ref) || rf->check_cols(1))
unknown's avatar
unknown committed
1575
	  return 1;
unknown's avatar
unknown committed
1576

1577
	mark_as_dependent(thd, last, cursel, rf);
1578 1579
	return 0;
      }
1580
      else
unknown's avatar
unknown committed
1581
      {
1582
	mark_as_dependent(thd, last, cursel, this);
unknown's avatar
unknown committed
1583
	if (last->having_fix_field)
1584 1585
	{
	  Item_ref *rf;
1586 1587
          rf= new Item_ref((where->db[0] ? where->db : 0),
                           (char*) where->alias, (char*) field_name);
1588 1589
	  if (!rf)
	    return 1;
1590
          thd->change_item_tree(ref, rf);
1591 1592 1593 1594
	  /*
	    rf is Item_ref => never substitute other items (in this case)
	    during fix_fields() => we can use rf after fix_fields()
	  */
unknown's avatar
unknown committed
1595
	  return rf->fix_fields(thd, tables, ref) ||  rf->check_cols(1);
1596
	}
unknown's avatar
unknown committed
1597
      }
1598
    }
1599 1600 1601
    else if (!tmp)
      return -1;

unknown's avatar
unknown committed
1602 1603
    set_field(tmp);
  }
unknown's avatar
unknown committed
1604
  else if (thd->set_query_id && field->query_id != thd->query_id)
1605 1606 1607 1608 1609
  {
    /* We only come here in unions */
    TABLE *table=field->table;
    field->query_id=thd->query_id;
    table->used_fields++;
1610
    table->used_keys.intersect(field->part_of_key);
1611
    fixed= 1;
1612
  }
unknown's avatar
unknown committed
1613 1614 1615
  return 0;
}

unknown's avatar
unknown committed
1616 1617
void Item_field::cleanup()
{
unknown's avatar
unknown committed
1618
  DBUG_ENTER("Item_field::cleanup");
unknown's avatar
unknown committed
1619
  Item_ident::cleanup();
1620 1621 1622 1623 1624
  /*
    Even if this object was created by direct link to field in setup_wild()
    it will be linked correctly next tyme by name of field and table alias.
    I.e. we can drop 'field'.
   */
1625
  field= result_field= 0;
unknown's avatar
unknown committed
1626
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
1627
}
unknown's avatar
unknown committed
1628 1629 1630

void Item::init_make_field(Send_field *tmp_field,
			   enum enum_field_types field_type)
1631
{
1632
  char *empty_name= (char*) "";
1633
  tmp_field->db_name=		empty_name;
1634 1635 1636 1637
  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;
1638
  tmp_field->charsetnr=         collation.collation->number;
unknown's avatar
unknown committed
1639 1640 1641
  tmp_field->flags=             (maybe_null ? 0 : NOT_NULL_FLAG) | 
                                (my_binary_compare(collation.collation) ?
                                 BINARY_FLAG : 0);
unknown's avatar
unknown committed
1642 1643 1644
  tmp_field->type=field_type;
  tmp_field->length=max_length;
  tmp_field->decimals=decimals;
1645 1646
  if (unsigned_flag)
    tmp_field->flags |= UNSIGNED_FLAG;
unknown's avatar
unknown committed
1647 1648
}

1649
void Item::make_field(Send_field *tmp_field)
unknown's avatar
unknown committed
1650
{
1651
  init_make_field(tmp_field, field_type());
unknown's avatar
unknown committed
1652 1653 1654
}


1655 1656 1657 1658 1659
void Item_empty_string::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field,FIELD_TYPE_VAR_STRING);
}

unknown's avatar
unknown committed
1660

1661
enum_field_types Item::field_type() const
unknown's avatar
unknown committed
1662
{
1663 1664 1665
  return ((result_type() == STRING_RESULT) ? FIELD_TYPE_VAR_STRING :
	  (result_type() == INT_RESULT) ? FIELD_TYPE_LONGLONG :
	  FIELD_TYPE_DOUBLE);
unknown's avatar
unknown committed
1666 1667
}

1668

1669 1670
Field *Item::tmp_table_field_from_field_type(TABLE *table)
{
1671 1672 1673 1674 1675 1676
  /*
    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()) {
1677
  case MYSQL_TYPE_DECIMAL:
1678 1679
    return new Field_decimal((char*) 0, max_length, null_ptr, 0, Field::NONE,
			     name, table, decimals, 0, unsigned_flag);
1680
  case MYSQL_TYPE_TINY:
1681 1682
    return new Field_tiny((char*) 0, max_length, null_ptr, 0, Field::NONE,
			  name, table, 0, unsigned_flag);
1683
  case MYSQL_TYPE_SHORT:
1684 1685
    return new Field_short((char*) 0, max_length, null_ptr, 0, Field::NONE,
			   name, table, 0, unsigned_flag);
1686
  case MYSQL_TYPE_LONG:
1687 1688
    return new Field_long((char*) 0, max_length, null_ptr, 0, Field::NONE,
			  name, table, 0, unsigned_flag);
1689 1690
#ifdef HAVE_LONG_LONG
  case MYSQL_TYPE_LONGLONG:
1691 1692
    return new Field_longlong((char*) 0, max_length, null_ptr, 0, Field::NONE,
			      name, table, 0, unsigned_flag);
1693
#endif
1694 1695 1696 1697 1698 1699 1700 1701 1702
  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);
1703
  case MYSQL_TYPE_INT24:
1704 1705
    return new Field_medium((char*) 0, max_length, null_ptr, 0, Field::NONE,
			    name, table, 0, unsigned_flag);
1706
  case MYSQL_TYPE_NEWDATE:
1707 1708 1709 1710 1711 1712 1713 1714
  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:
1715 1716 1717 1718 1719 1720
    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 */
1721 1722
  case MYSQL_TYPE_ENUM:
  case MYSQL_TYPE_SET:
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732
  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);
1733 1734 1735 1736 1737
  case MYSQL_TYPE_TINY_BLOB:
  case MYSQL_TYPE_MEDIUM_BLOB:
  case MYSQL_TYPE_LONG_BLOB:
  case MYSQL_TYPE_BLOB:
  case MYSQL_TYPE_GEOMETRY:
1738
    break;					// Blob handled outside of case
1739
  }
1740 1741 1742 1743

  /* 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);
1744 1745
}

1746

1747 1748
/* ARGSUSED */
void Item_field::make_field(Send_field *tmp_field)
unknown's avatar
unknown committed
1749
{
1750
  field->make_field(tmp_field);
1751
  DBUG_ASSERT(tmp_field->table_name);
1752 1753
  if (name)
    tmp_field->col_name=name;			// Use user supplied name
unknown's avatar
unknown committed
1754 1755
}

1756

unknown's avatar
unknown committed
1757
/*
1758
  Set a field:s value from a item
unknown's avatar
unknown committed
1759 1760 1761 1762 1763 1764 1765
*/

void Item_field::save_org_in_field(Field *to)
{
  if (field->is_null())
  {
    null_value=1;
1766
    set_field_to_null_with_conversions(to, 1);
unknown's avatar
unknown committed
1767 1768 1769 1770 1771 1772 1773 1774 1775
  }
  else
  {
    to->set_notnull();
    field_conv(to,field);
    null_value=0;
  }
}

unknown's avatar
unknown committed
1776
int Item_field::save_in_field(Field *to, bool no_conversions)
unknown's avatar
unknown committed
1777 1778 1779 1780
{
  if (result_field->is_null())
  {
    null_value=1;
1781
    return set_field_to_null_with_conversions(to, no_conversions);
unknown's avatar
unknown committed
1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
  }
  else
  {
    to->set_notnull();
    field_conv(to,result_field);
    null_value=0;
  }
  return 0;
}

1792

unknown's avatar
unknown committed
1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
/*
  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'
*/   

unknown's avatar
unknown committed
1809
int Item_null::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
1810
{
1811
  return set_field_to_null_with_conversions(field, no_conversions);
unknown's avatar
unknown committed
1812 1813 1814
}


1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826
/*
  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
*/   

unknown's avatar
unknown committed
1827
int Item_null::save_safe_in_field(Field *field)
unknown's avatar
unknown committed
1828 1829 1830 1831 1832
{
  return set_field_to_null(field);
}


unknown's avatar
unknown committed
1833
int Item::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
1834
{
1835
  int error;
unknown's avatar
unknown committed
1836 1837 1838 1839 1840
  if (result_type() == STRING_RESULT ||
      result_type() == REAL_RESULT &&
      field->result_type() == STRING_RESULT)
  {
    String *result;
1841
    CHARSET_INFO *cs= collation.collation;
unknown's avatar
unknown committed
1842
    char buff[MAX_FIELD_WIDTH];		// Alloc buffer for small columns
unknown's avatar
unknown committed
1843 1844
    str_value.set_quick(buff, sizeof(buff), cs);
    result=val_str(&str_value);
unknown's avatar
unknown committed
1845
    if (null_value)
1846
    {
unknown's avatar
unknown committed
1847
      str_value.set_quick(0, 0, cs);
1848
      return set_field_to_null_with_conversions(field, no_conversions);
1849
    }
unknown's avatar
unknown committed
1850
    field->set_notnull();
1851
    error=field->store(result->ptr(),result->length(),cs);
1852
    str_value.set_quick(0, 0, cs);
unknown's avatar
unknown committed
1853 1854 1855 1856 1857 1858 1859
  }
  else if (result_type() == REAL_RESULT)
  {
    double nr=val();
    if (null_value)
      return set_field_to_null(field);
    field->set_notnull();
1860
    error=field->store(nr);
unknown's avatar
unknown committed
1861 1862 1863 1864 1865
  }
  else
  {
    longlong nr=val_int();
    if (null_value)
1866
      return set_field_to_null_with_conversions(field, no_conversions);
unknown's avatar
unknown committed
1867
    field->set_notnull();
1868
    error=field->store(nr);
unknown's avatar
unknown committed
1869
  }
unknown's avatar
unknown committed
1870
  return error;
unknown's avatar
unknown committed
1871 1872
}

1873

unknown's avatar
unknown committed
1874
int Item_string::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
1875 1876 1877 1878 1879 1880
{
  String *result;
  result=val_str(&str_value);
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
unknown's avatar
unknown committed
1881
  return field->store(result->ptr(),result->length(),collation.collation);
unknown's avatar
unknown committed
1882 1883
}

unknown's avatar
unknown committed
1884
int Item_uint::save_in_field(Field *field, bool no_conversions)
1885
{
1886 1887 1888 1889
  /*
    TODO: To be fixed when wen have a
    field->store(longlong, unsigned_flag) method 
  */
unknown's avatar
unknown committed
1890
  return Item_int::save_in_field(field, no_conversions);
1891 1892
}

unknown's avatar
unknown committed
1893 1894

int Item_int::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
1895 1896 1897 1898 1899
{
  longlong nr=val_int();
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
unknown's avatar
unknown committed
1900
  return field->store(nr);
unknown's avatar
unknown committed
1901 1902
}

unknown's avatar
unknown committed
1903 1904 1905 1906
Item_num *Item_uint::neg()
{
  return new Item_real(name, - ((double) value), 0, max_length);
}
unknown's avatar
unknown committed
1907 1908

int Item_real::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
1909 1910 1911 1912 1913
{
  double nr=val();
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
unknown's avatar
unknown committed
1914
  return field->store(nr);
unknown's avatar
unknown committed
1915 1916 1917 1918 1919 1920 1921 1922
}

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

unknown's avatar
unknown committed
1923
inline uint char_val(char X)
unknown's avatar
unknown committed
1924 1925 1926 1927 1928 1929
{
  return (uint) (X >= '0' && X <= '9' ? X-'0' :
		 X >= 'A' && X <= 'Z' ? X-'A'+10 :
		 X-'a'+10);
}

1930

1931
Item_varbinary::Item_varbinary(const char *str, uint str_length)
unknown's avatar
unknown committed
1932 1933 1934 1935 1936 1937
{
  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;
unknown's avatar
unknown committed
1938
  str_value.set(ptr,max_length,&my_charset_bin);
unknown's avatar
unknown committed
1939 1940 1941 1942 1943 1944 1945 1946 1947
  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
1948
  collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
unknown's avatar
unknown committed
1949
  fixed= 1;
unknown's avatar
unknown committed
1950 1951 1952 1953
}

longlong Item_varbinary::val_int()
{
unknown's avatar
unknown committed
1954
  // following assert is redundant, because fixed=1 assigned in constructor
1955
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
1956 1957 1958 1959 1960 1961 1962 1963 1964 1965
  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;
}


unknown's avatar
unknown committed
1966
int Item_varbinary::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
1967
{
1968
  int error;
unknown's avatar
unknown committed
1969 1970 1971
  field->set_notnull();
  if (field->result_type() == STRING_RESULT)
  {
1972
    error=field->store(str_value.ptr(),str_value.length(),collation.collation);
unknown's avatar
unknown committed
1973 1974 1975 1976
  }
  else
  {
    longlong nr=val_int();
1977
    error=field->store(nr);
unknown's avatar
unknown committed
1978
  }
unknown's avatar
unknown committed
1979
  return error;
unknown's avatar
unknown committed
1980 1981 1982
}


1983 1984 1985 1986 1987
/*
  Pack data in buffer for sending
*/

bool Item_null::send(Protocol *protocol, String *packet)
unknown's avatar
unknown committed
1988
{
1989
  return protocol->store_null();
unknown's avatar
unknown committed
1990 1991 1992
}

/*
1993
  This is only called from items that is not of type item_field
unknown's avatar
unknown committed
1994 1995
*/

1996
bool Item::send(Protocol *protocol, String *buffer)
unknown's avatar
unknown committed
1997
{
1998 1999 2000 2001 2002 2003
  bool result;
  enum_field_types type;
  LINT_INIT(result);

  switch ((type=field_type())) {
  default:
2004 2005 2006 2007 2008 2009 2010 2011 2012
  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:
2013 2014 2015 2016 2017
  case MYSQL_TYPE_STRING:
  case MYSQL_TYPE_VAR_STRING:
  {
    String *res;
    if ((res=val_str(buffer)))
2018
      result= protocol->store(res->ptr(),res->length(),res->charset());
2019 2020 2021 2022
    break;
  }
  case MYSQL_TYPE_TINY:
  {
2023
    longlong nr;
2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
    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;
  }
2037
  case MYSQL_TYPE_INT24:
2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053
  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;
  }
unknown's avatar
unknown committed
2054 2055 2056
  case MYSQL_TYPE_FLOAT:
  {
    float nr;
unknown's avatar
unknown committed
2057
    nr= (float) val();
unknown's avatar
unknown committed
2058 2059 2060 2061
    if (!null_value)
      result= protocol->store(nr, decimals, buffer);
    break;
  }
2062 2063 2064 2065 2066 2067 2068 2069 2070 2071
  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:
2072
  case MYSQL_TYPE_TIMESTAMP:
2073 2074
  {
    TIME tm;
2075
    get_date(&tm, TIME_FUZZY_DATE);
2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096
    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;
unknown's avatar
unknown committed
2097 2098
}

2099 2100

bool Item_field::send(Protocol *protocol, String *buffer)
unknown's avatar
unknown committed
2101
{
2102
  return protocol->store(result_field);
unknown's avatar
unknown committed
2103 2104
}

2105

unknown's avatar
unknown committed
2106 2107 2108
/*
  This is used for HAVING clause
  Find field in select list having the same name
2109
*/
unknown's avatar
unknown committed
2110

unknown's avatar
unknown committed
2111
bool Item_ref::fix_fields(THD *thd,TABLE_LIST *tables, Item **reference)
unknown's avatar
unknown committed
2112
{
2113
  DBUG_ASSERT(fixed == 0);
2114
  uint counter;
2115
  enum_parsing_place place= NO_MATTER;
2116
  bool not_used;
unknown's avatar
unknown committed
2117 2118
  if (!ref)
  {
2119
    TABLE_LIST *where= 0, *table_list;
2120
    SELECT_LEX_UNIT *prev_unit= thd->lex->current_select->master_unit();
2121
    SELECT_LEX *sl= prev_unit->outer_select();
2122 2123 2124 2125 2126
    /*
      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)
    */
unknown's avatar
unknown committed
2127
    if ((ref= find_item_in_list(this, 
2128
				*(thd->lex->current_select->get_item_list()),
2129
				&counter,
2130
				((sl && 
2131
				  thd->lex->current_select->master_unit()->
2132
				  first_select()->linkage !=
2133 2134
				  DERIVED_TABLE_TYPE) ? 
				  REPORT_EXCEPT_NOT_FOUND :
2135
				  REPORT_ALL_ERRORS ), &not_used)) ==
unknown's avatar
unknown committed
2136
	(Item **)not_found_item)
unknown's avatar
unknown committed
2137
    {
2138
      Field *tmp= (Field*) not_found_field;
2139
      SELECT_LEX *last= 0;
unknown's avatar
unknown committed
2140
      /*
2141
	We can't find table field in select list of current select,
unknown's avatar
unknown committed
2142
	consequently we have to find it in outer subselect(s).
unknown's avatar
unknown committed
2143 2144 2145
	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
unknown's avatar
unknown committed
2146
	mention of table name, but if we join tables in one list it will
2147
	cause error ER_NON_UNIQ_ERROR in find_item_in_list.
unknown's avatar
unknown committed
2148
      */
2149
      for ( ; sl ; sl= (prev_unit= sl->master_unit())->outer_select())
2150
      {
2151
	last= sl;
unknown's avatar
unknown committed
2152
	Item_subselect *prev_subselect_item= prev_unit->item;
2153 2154
	if (sl->resolve_mode == SELECT_LEX::SELECT_MODE &&
	    (ref= find_item_in_list(this, sl->item_list,
2155 2156
                                    &counter, REPORT_EXCEPT_NOT_FOUND,
                                    &not_used)) !=
unknown's avatar
unknown committed
2157
	   (Item **)not_found_item)
2158
	{
2159
	  if (ref && (*ref)->fixed) // Avoid crash in case of error
2160
	  {
unknown's avatar
unknown committed
2161 2162
	    prev_subselect_item->used_tables_cache|= (*ref)->used_tables();
	    prev_subselect_item->const_item_cache&= (*ref)->const_item();
2163
	  }
2164
	  break;
2165
	}
2166
	table_list= sl->get_table_list();
2167
	if (sl->resolve_mode == SELECT_LEX::INSERT_MODE && table_list)
2168 2169 2170 2171
	{
	  // it is primary INSERT st_select_lex => skip first table resolving
	  table_list= table_list->next;
	}
2172
        place= prev_subselect_item->parsing_place;
2173 2174 2175 2176 2177
        /*
          check table fields only if subquery used somewhere out of HAVING
          or SELECT list or outer SELECT do not use groupping (i.e. tables
          are accessable)
        */
2178
        if ((place != IN_HAVING ||
2179 2180 2181 2182 2183 2184 2185 2186 2187 2188
             (sl->with_sum_func == 0 && sl->group_list.elements == 0)) &&
            (tmp= find_field_in_tables(thd, this,
                                       table_list, &where,
                                       0)) != not_found_field)
        {
          prev_subselect_item->used_tables_cache|= tmp->table->map;
          prev_subselect_item->const_item_cache= 0;
          break;
        }
        // Reference is not found => depend from outer (or just error)
unknown's avatar
unknown committed
2189 2190
	prev_subselect_item->used_tables_cache|= OUTER_REF_TABLE_BIT;
	prev_subselect_item->const_item_cache= 0;
2191

2192 2193
	if (sl->master_unit()->first_select()->linkage ==
	    DERIVED_TABLE_TYPE)
2194
	  break; // do not look over derived table
2195
      }
2196

unknown's avatar
unknown committed
2197
      if (!ref)
2198
	return 1;
2199
      if (!tmp)
2200
	return -1;
2201
      if (ref == (Item **)not_found_item && tmp == not_found_field)
unknown's avatar
unknown committed
2202
      {
2203 2204 2205 2206
        // 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);
	ref= 0;                                 // Safety
unknown's avatar
unknown committed
2207
	return 1;
unknown's avatar
unknown committed
2208
      }
2209
      if (tmp != not_found_field)
2210
      {
2211 2212 2213 2214 2215 2216 2217 2218
        Item_field* fld;
        /*
          Set ref to 0 as we are replacing this item with the found item
          and this will ensure we get an error if this item would be
          used elsewhere
        */
	ref= 0;                                 // Safety
	if (!(fld= new Item_field(tmp)))
2219
	  return 1;
2220
	thd->change_item_tree(reference, fld);
2221
	mark_as_dependent(thd, last, thd->lex->current_select, fld);
2222 2223
	return 0;
      }
2224
      if (!last->ref_pointer_array[counter])
unknown's avatar
unknown committed
2225
      {
2226 2227 2228
        my_error(ER_ILLEGAL_REFERENCE, MYF(0), name,
                 "forward reference in item list");
        return -1;
unknown's avatar
unknown committed
2229
      }
2230
      DBUG_ASSERT((*ref)->fixed);
2231 2232
      mark_as_dependent(thd, last, thd->lex->current_select,
                        this);
2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245
      if (place == IN_HAVING)
      {
        Item_ref *rf;
        if (!(rf= new Item_direct_ref(last->ref_pointer_array + counter,
                                      (char *)table_name,
                                      (char *)field_name)))
          return 1;
        ref= 0;                                 // Safety
        if (rf->fix_fields(thd, tables, ref) || rf->check_cols(1))
	  return 1;
        thd->change_item_tree(reference, rf);
        return 0;
      }
2246
      ref= last->ref_pointer_array + counter;
unknown's avatar
unknown committed
2247
    }
2248
    else if (!ref)
unknown's avatar
unknown committed
2249
      return 1;
2250 2251 2252 2253 2254 2255 2256 2257
    else
    {
      if (!(*ref)->fixed)
      {
	my_error(ER_ILLEGAL_REFERENCE, MYF(0), name,
		 "forward reference in item list");
	return -1;
      }
2258
      ref= thd->lex->current_select->ref_pointer_array + counter;
2259
    }
unknown's avatar
unknown committed
2260
  }
2261

2262 2263 2264 2265 2266 2267 2268
  /*
    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.
  */
2269
  if (((*ref)->with_sum_func && name &&
2270
       (depended_from ||
2271 2272
	!(thd->lex->current_select->linkage != GLOBAL_OPTIONS_TYPE &&
	  thd->lex->current_select->having_fix_field))) ||
2273 2274 2275 2276 2277 2278 2279 2280
      !(*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;
  }
2281 2282 2283 2284 2285 2286 2287 2288 2289 2290

  set_properties();

  if (ref && (*ref)->check_cols(1))
    return 1;
  return 0;
}

void Item_ref::set_properties()
{
2291 2292 2293
  max_length= (*ref)->max_length;
  maybe_null= (*ref)->maybe_null;
  decimals=   (*ref)->decimals;
2294
  collation.set((*ref)->collation);
unknown's avatar
unknown committed
2295
  with_sum_func= (*ref)->with_sum_func;
unknown's avatar
unknown committed
2296
  unsigned_flag= (*ref)->unsigned_flag;
2297
  fixed= 1;
unknown's avatar
unknown committed
2298 2299
}

unknown's avatar
unknown committed
2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310
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)
{
2311
  str->append("<ref_null_helper>(", 18);
unknown's avatar
unknown committed
2312 2313 2314 2315 2316 2317 2318 2319 2320 2321
  if (ref && *ref)
    (*ref)->print(str);
  else
    str->append('?');
  str->append(')');
}


void Item_null_helper::print(String *str)
{
2322
  str->append("<null_helper>(", 14);
unknown's avatar
unknown committed
2323 2324 2325 2326 2327
  store->print(str);
  str->append(')');
}


unknown's avatar
SCRUM  
unknown committed
2328 2329
bool Item_default_value::eq(const Item *item, bool binary_cmp) const
{
unknown's avatar
SCRUM  
unknown committed
2330
  return item->type() == DEFAULT_VALUE_ITEM && 
unknown's avatar
SCRUM  
unknown committed
2331 2332 2333
    ((Item_default_value *)item)->arg->eq(arg, binary_cmp);
}

2334

2335 2336 2337
bool Item_default_value::fix_fields(THD *thd,
				    struct st_table_list *table_list,
				    Item **items)
unknown's avatar
SCRUM  
unknown committed
2338
{
2339
  DBUG_ASSERT(fixed == 0);
unknown's avatar
SCRUM  
unknown committed
2340
  if (!arg)
2341 2342
  {
    fixed= 1;
2343
    return 0;
2344
  }
unknown's avatar
unknown committed
2345
  if (!arg->fixed && arg->fix_fields(thd, table_list, &arg))
2346 2347
    return 1;
  
unknown's avatar
SCRUM  
unknown committed
2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361
  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());
unknown's avatar
unknown committed
2362 2363
  def_field->move_field(def_field->table->default_values -
                        def_field->table->record[0]);
unknown's avatar
SCRUM  
unknown committed
2364 2365 2366 2367
  set_field(def_field);
  return 0;
}

unknown's avatar
SCRUM  
unknown committed
2368 2369
void Item_default_value::print(String *str)
{
unknown's avatar
SCRUM  
unknown committed
2370 2371
  if (!arg)
  {
unknown's avatar
unknown committed
2372
    str->append("default", 7);
unknown's avatar
SCRUM  
unknown committed
2373
    return;
unknown's avatar
SCRUM  
unknown committed
2374
  }
unknown's avatar
unknown committed
2375
  str->append("default(", 8);
unknown's avatar
SCRUM  
unknown committed
2376 2377 2378
  arg->print(str);
  str->append(')');
}
2379

unknown's avatar
unknown committed
2380 2381 2382 2383 2384 2385 2386
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);
}


2387 2388 2389
bool Item_insert_value::fix_fields(THD *thd,
				   struct st_table_list *table_list,
				   Item **items)
unknown's avatar
unknown committed
2390
{
2391
  DBUG_ASSERT(fixed == 0);
unknown's avatar
unknown committed
2392
  if (!arg->fixed && arg->fix_fields(thd, table_list, &arg))
2393 2394
    return 1;

unknown's avatar
unknown committed
2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416
  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
  {
2417
    Field *tmp_field= field_arg->field;
unknown's avatar
unknown committed
2418
    /* charset doesn't matter here, it's to avoid sigsegv only */
2419 2420
    set_field(new Field_null(0, 0, Field::NONE, tmp_field->field_name,
			     tmp_field->table, &my_charset_bin));
unknown's avatar
unknown committed
2421 2422 2423 2424 2425 2426
  }
  return 0;
}

void Item_insert_value::print(String *str)
{
2427
  str->append("values(", 7);
unknown's avatar
unknown committed
2428 2429 2430 2431
  arg->print(str);
  str->append(')');
}

unknown's avatar
unknown committed
2432
/*
2433 2434
  If item is a const function, calculate it and return a const item
  The original item is freed if not returned
unknown's avatar
unknown committed
2435 2436 2437 2438 2439 2440
*/

Item_result item_cmp_type(Item_result a,Item_result b)
{
  if (a == STRING_RESULT && b == STRING_RESULT)
    return STRING_RESULT;
2441
  if (a == INT_RESULT && b == INT_RESULT)
unknown's avatar
unknown committed
2442
    return INT_RESULT;
unknown's avatar
unknown committed
2443 2444
  else if (a == ROW_RESULT || b == ROW_RESULT)
    return ROW_RESULT;
2445
  return REAL_RESULT;
unknown's avatar
unknown committed
2446 2447 2448
}


2449
void resolve_const_item(THD *thd, Item **ref, Item *comp_item)
unknown's avatar
unknown committed
2450
{
2451 2452
  Item *item= *ref;
  Item *new_item;
unknown's avatar
unknown committed
2453
  if (item->basic_const_item())
2454
    return;                                     // Can't be better
unknown's avatar
unknown committed
2455 2456 2457 2458 2459 2460 2461
  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];
unknown's avatar
unknown committed
2462
    String tmp(buff,sizeof(buff),&my_charset_bin),*result;
unknown's avatar
unknown committed
2463 2464
    result=item->val_str(&tmp);
    if (item->null_value)
2465 2466 2467 2468 2469 2470 2471
      new_item= new Item_null(name);
    else
    {
      uint length= result->length();
      char *tmp_str= sql_strmake(result->ptr(), length);
      new_item= new Item_string(name, tmp_str, length, result->charset());
    }
unknown's avatar
unknown committed
2472
  }
2473
  else if (res_type == INT_RESULT)
unknown's avatar
unknown committed
2474 2475 2476 2477
  {
    longlong result=item->val_int();
    uint length=item->max_length;
    bool null_value=item->null_value;
2478 2479
    new_item= (null_value ? (Item*) new Item_null(name) :
               (Item*) new Item_int(name, result, length));
unknown's avatar
unknown committed
2480 2481 2482 2483 2484 2485
  }
  else
  {						// It must REAL_RESULT
    double result=item->val();
    uint length=item->max_length,decimals=item->decimals;
    bool null_value=item->null_value;
2486 2487 2488 2489
    new_item= (null_value ? (Item*) new Item_null(name) : (Item*)
               new Item_real(name, result, decimals, length));
  }
  if (new_item)
2490
    thd->change_item_tree(ref, new_item);
unknown's avatar
unknown committed
2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507
}

/*
  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];
unknown's avatar
unknown committed
2508 2509
    String item_tmp(item_buff,sizeof(item_buff),&my_charset_bin),*item_result;
    String field_tmp(field_buff,sizeof(field_buff),&my_charset_bin);
unknown's avatar
unknown committed
2510 2511 2512
    item_result=item->val_str(&item_tmp);
    if (item->null_value)
      return 1;					// This must be true
2513
    field->val_str(&field_tmp);
unknown's avatar
unknown committed
2514
    return !stringcmp(&field_tmp,item_result);
unknown's avatar
unknown committed
2515 2516 2517 2518 2519 2520 2521 2522 2523
  }
  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();
}

2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
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();
unknown's avatar
unknown committed
2534 2535
  case ROW_RESULT:
    return new Item_cache_row();
2536 2537 2538 2539 2540 2541 2542
  default:
    // should never be in real life
    DBUG_ASSERT(0);
    return 0;
  }
}

unknown's avatar
unknown committed
2543 2544 2545

void Item_cache::print(String *str)
{
2546
  str->append("<cache>(", 8);
unknown's avatar
unknown committed
2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568
  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;
}


void Item_cache_real::store(Item *item)
{
  value= item->val_result();
  null_value= item->null_value;
}


2569 2570
void Item_cache_str::store(Item *item)
{
unknown's avatar
merge  
unknown committed
2571
  value_buff.set(buffer, sizeof(buffer), item->collation.collation);
2572
  value= item->str_result(&value_buff);
2573 2574
  if ((null_value= item->null_value))
    value= 0;
2575
  else if (value != &value_buff)
2576 2577 2578 2579 2580 2581 2582 2583 2584
  {
    /*
      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;
    */
2585 2586
    value_buff.copy(*value);
    value= &value_buff;
2587 2588
  }
}
2589 2590


2591
double Item_cache_str::val()
2592 2593
{
  DBUG_ASSERT(fixed == 1);
2594
  int err;
2595
  if (value)
unknown's avatar
unknown committed
2596 2597
  {
    char *end_not_used;
2598
    return my_strntod(value->charset(), (char*) value->ptr(),
unknown's avatar
unknown committed
2599 2600 2601
		      value->length(), &end_not_used, &err);
  }
  return (double)0;
2602
}
2603 2604


2605 2606
longlong Item_cache_str::val_int()
{
2607
  DBUG_ASSERT(fixed == 1);
2608
  int err;
2609 2610
  if (value)
    return my_strntoll(value->charset(), value->ptr(),
2611
		       value->length(), 10, (char**) 0, &err);
2612 2613 2614
  else
    return (longlong)0;
}
unknown's avatar
unknown committed
2615

2616

unknown's avatar
unknown committed
2617 2618
bool Item_cache_row::allocate(uint num)
{
unknown's avatar
unknown committed
2619
  item_count= num;
unknown's avatar
unknown committed
2620
  THD *thd= current_thd;
unknown's avatar
unknown committed
2621 2622
  return (!(values= 
	    (Item_cache **) thd->calloc(sizeof(Item_cache *)*item_count)));
unknown's avatar
unknown committed
2623 2624
}

2625

unknown's avatar
unknown committed
2626 2627
bool Item_cache_row::setup(Item * item)
{
unknown's avatar
unknown committed
2628
  example= item;
unknown's avatar
unknown committed
2629 2630
  if (!values && allocate(item->cols()))
    return 1;
unknown's avatar
unknown committed
2631
  for (uint i= 0; i < item_count; i++)
unknown's avatar
unknown committed
2632
  {
unknown's avatar
unknown committed
2633
    Item *el= item->el(i);
unknown's avatar
unknown committed
2634 2635
    Item_cache *tmp;
    if (!(tmp= values[i]= Item_cache::get_cache(el->result_type())))
unknown's avatar
unknown committed
2636
      return 1;
unknown's avatar
unknown committed
2637
    tmp->setup(el);
unknown's avatar
unknown committed
2638 2639 2640 2641
  }
  return 0;
}

2642

unknown's avatar
unknown committed
2643 2644 2645 2646
void Item_cache_row::store(Item * item)
{
  null_value= 0;
  item->bring_value();
unknown's avatar
unknown committed
2647
  for (uint i= 0; i < item_count; i++)
unknown's avatar
unknown committed
2648 2649 2650 2651 2652 2653
  {
    values[i]->store(item->el(i));
    null_value|= values[i]->null_value;
  }
}

2654

unknown's avatar
unknown committed
2655 2656 2657 2658 2659
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);
unknown's avatar
unknown committed
2660
  my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
unknown's avatar
unknown committed
2661 2662 2663
  DBUG_VOID_RETURN;
}

2664

unknown's avatar
unknown committed
2665 2666
bool Item_cache_row::check_cols(uint c)
{
unknown's avatar
unknown committed
2667
  if (c != item_count)
unknown's avatar
unknown committed
2668
  {
unknown's avatar
unknown committed
2669
    my_error(ER_OPERAND_COLUMNS, MYF(0), c);
unknown's avatar
unknown committed
2670 2671 2672 2673 2674
    return 1;
  }
  return 0;
}

2675

unknown's avatar
unknown committed
2676 2677
bool Item_cache_row::null_inside()
{
unknown's avatar
unknown committed
2678
  for (uint i= 0; i < item_count; i++)
unknown's avatar
unknown committed
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694
  {
    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;
}

2695

unknown's avatar
unknown committed
2696 2697
void Item_cache_row::bring_value()
{
unknown's avatar
unknown committed
2698
  for (uint i= 0; i < item_count; i++)
unknown's avatar
unknown committed
2699 2700 2701
    values[i]->bring_value();
  return;
}
unknown's avatar
unknown committed
2702

2703

2704 2705
Item_type_holder::Item_type_holder(THD *thd, Item *item)
  :Item(thd, item), enum_set_typelib(0), fld_type(get_real_type(item))
2706 2707
{
  DBUG_ASSERT(item->fixed);
unknown's avatar
unknown committed
2708

2709
  max_length= display_length(item);
2710
  maybe_null= item->maybe_null;
2711
  collation.set(item->collation);
2712
  get_full_info(item);
2713 2714 2715
}


2716
/*
2717
  Return expression type of Item_type_holder
2718

2719 2720 2721 2722 2723
  SYNOPSIS
    Item_type_holder::result_type()

  RETURN
     Item_result (type of internal MySQL expression result)
2724
*/
2725 2726 2727 2728 2729

Item_result Item_type_holder::result_type() const
{
  return Field::result_merge_type(fld_type);
}
2730

unknown's avatar
unknown committed
2731 2732

/*
2733
  Find real field type of item
unknown's avatar
unknown committed
2734 2735

  SYNOPSIS
2736
    Item_type_holder::get_real_type()
unknown's avatar
unknown committed
2737 2738

  RETURN
2739
    type of field which should be created to store item value
unknown's avatar
unknown committed
2740 2741
*/

2742
enum_field_types Item_type_holder::get_real_type(Item *item)
2743
{
2744
  switch(item->type())
2745
  {
2746
  case FIELD_ITEM:
2747
  {
unknown's avatar
unknown committed
2748
    /*
2749 2750
      Item_fields::field_type ask Field_type() but sometimes field return
      a different type, like for enum/set, so we need to ask real type.
unknown's avatar
unknown committed
2751
    */
2752 2753 2754 2755 2756 2757
    Field *field= ((Item_field *) item)->field;
    enum_field_types type= field->real_type();
    /* work around about varchar type field detection */
    if (type == MYSQL_TYPE_STRING && field->type() == MYSQL_TYPE_VAR_STRING)
      return MYSQL_TYPE_VAR_STRING;
    return type;
2758
  }
2759
  case SUM_FUNC_ITEM:
2760
  {
2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771
    /*
      Argument of aggregate function sometimes should be asked about field
      type
    */
    Item_sum *item_sum= (Item_sum *) item;
    if (item_sum->keep_field_type())
      return get_real_type(item_sum->args[0]);
    break;
  }
  case FUNC_ITEM:
    if (((Item_func *) item)->functype() == Item_func::VAR_VALUE_FUNC)
unknown's avatar
unknown committed
2772 2773
    {
      /*
2774 2775 2776 2777
        There are work around of problem with changing variable type on the
        fly and variable always report "string" as field type to get
        acceptable information for client in send_field, so we make field
        type from expression type.
unknown's avatar
unknown committed
2778
      */
2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791
      switch (item->result_type())
      {
      case STRING_RESULT:
        return MYSQL_TYPE_VAR_STRING;
      case INT_RESULT:
        return MYSQL_TYPE_LONGLONG;
      case REAL_RESULT:
        return MYSQL_TYPE_DOUBLE;
      case ROW_RESULT:
      default:
        DBUG_ASSERT(0);
        return MYSQL_TYPE_VAR_STRING;
      }
unknown's avatar
unknown committed
2792
    }
2793 2794 2795 2796 2797 2798 2799 2800 2801 2802
    break;
  default:
    break;
  }
  return item->field_type();
}

/*
  Find field type which can carry current Item_type_holder type and
  type of given Item.
unknown's avatar
unknown committed
2803

2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820
  SYNOPSIS
    Item_type_holder::join_types()
    thd     thread handler
    item    given item to join its parameters with this item ones

  RETURN
    TRUE   error - types are incompatible
    FALSE  OK
*/

bool Item_type_holder::join_types(THD *thd, Item *item)
{
  max_length= max(max_length, display_length(item));
  fld_type= Field::field_type_merge(fld_type, get_real_type(item));
  if (Field::result_merge_type(fld_type) == STRING_RESULT)
  {
    const char *old_cs, *old_derivation;
2821 2822
    old_cs= collation.collation->name;
    old_derivation= collation.derivation_name();
2823
    if (collation.aggregate(item->collation))
2824 2825 2826 2827 2828 2829
    {
      my_error(ER_CANT_AGGREGATE_2COLLATIONS, MYF(0),
	       old_cs, old_derivation,
	       item->collation.collation->name,
	       item->collation.derivation_name(),
	       "UNION");
2830
      return TRUE;
2831
    }
2832
  }
2833 2834 2835 2836
  decimals= max(decimals, item->decimals);
  maybe_null|= item->maybe_null;
  get_full_info(item);
  return FALSE;
2837 2838
}

2839 2840
/*
  Calculate lenth for merging result for given Item type
2841

2842 2843 2844 2845 2846 2847 2848 2849 2850
  SYNOPSIS
    Item_type_holder::real_length()
    item  Item for lrngth detection

  RETURN
    length
*/

uint32 Item_type_holder::display_length(Item *item)
2851 2852
{
  if (item->type() == Item::FIELD_ITEM)
unknown's avatar
unknown committed
2853
    return ((Item_field *)item)->max_disp_length();
2854

2855
  switch (item->field_type())
2856
  {
2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872
  case MYSQL_TYPE_DECIMAL:
  case MYSQL_TYPE_TIMESTAMP:
  case MYSQL_TYPE_DATE:
  case MYSQL_TYPE_TIME:
  case MYSQL_TYPE_DATETIME:
  case MYSQL_TYPE_YEAR:
  case MYSQL_TYPE_NEWDATE:
  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_VAR_STRING:
  case MYSQL_TYPE_STRING:
  case MYSQL_TYPE_GEOMETRY:
2873
    return item->max_length;
2874 2875 2876 2877 2878 2879 2880 2881 2882
  case MYSQL_TYPE_TINY:
    return 4;
  case MYSQL_TYPE_SHORT:
    return 6;
  case MYSQL_TYPE_LONG:
    return 11;
  case MYSQL_TYPE_FLOAT:
    return 25;
  case MYSQL_TYPE_DOUBLE:
2883
    return 53;
2884 2885 2886
  case MYSQL_TYPE_NULL:
    return 4;
  case MYSQL_TYPE_LONGLONG:
2887
    return 20;
2888 2889
  case MYSQL_TYPE_INT24:
    return 8;
2890 2891 2892 2893 2894
  default:
    DBUG_ASSERT(0); // we should never go there
    return 0;
  }
}
2895

2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910

/*
  Make temporary table field according collected information about type
  of UNION result

  SYNOPSIS
    Item_type_holder::make_field_by_type()
    table  temporary table for which we create fields

  RETURN
    created field
*/

Field *Item_type_holder::make_field_by_type(TABLE *table)
{
unknown's avatar
unknown committed
2911 2912 2913 2914 2915
  /*
    The field functions defines a field to be not null if null_ptr is not 0
  */
  uchar *null_ptr= maybe_null ? (uchar*) "" : 0;
  switch (fld_type)
2916
  {
unknown's avatar
unknown committed
2917
  case MYSQL_TYPE_ENUM:
2918
    DBUG_ASSERT(enum_set_typelib);
unknown's avatar
unknown committed
2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934
    return new Field_enum((char *) 0, max_length, null_ptr, 0,
                          Field::NONE, name,
                          table, get_enum_pack_length(enum_set_typelib->count),
                          enum_set_typelib, collation.collation);
  case MYSQL_TYPE_SET:
    DBUG_ASSERT(enum_set_typelib);
    return new Field_set((char *) 0, max_length, null_ptr, 0,
                         Field::NONE, name,
                         table, get_set_pack_length(enum_set_typelib->count),
                         enum_set_typelib, collation.collation);
  case MYSQL_TYPE_VAR_STRING:
    table->db_create_options|= HA_OPTION_PACK_RECORD;
    return new Field_string(max_length, maybe_null, name, table,
                            collation.collation);
  default:
    break;
2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971
  }
  return tmp_table_field_from_field_type(table);
}


/*
  Get full information from Item about enum/set fields to be able to create
  them later

  SYNOPSIS
    Item_type_holder::get_full_info
    item    Item for information collection
*/
void Item_type_holder::get_full_info(Item *item)
{
  if (fld_type == MYSQL_TYPE_ENUM ||
      fld_type == MYSQL_TYPE_SET)
  {
    /*
      We can have enum/set type after merging only if we have one enum/set
      field and number of NULL fields
    */
    DBUG_ASSERT((enum_set_typelib &&
                 get_real_type(item) == MYSQL_TYPE_NULL) ||
                (!enum_set_typelib &&
                 item->type() == Item::FIELD_ITEM &&
                 (get_real_type(item) == MYSQL_TYPE_ENUM ||
                  get_real_type(item) == MYSQL_TYPE_SET) &&
                 ((Field_enum*)((Item_field *) item)->field)->typelib));
    if (!enum_set_typelib)
    {
      enum_set_typelib= ((Field_enum*)((Item_field *) item)->field)->typelib;
    }
  }
}


2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991
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;
}

2992 2993 2994 2995 2996 2997 2998 2999
void Item_result_field::cleanup()
{
  DBUG_ENTER("Item_result_field::cleanup()");
  Item::cleanup();
  result_field= 0;
  DBUG_VOID_RETURN;
}

unknown's avatar
unknown committed
3000 3001 3002 3003 3004 3005 3006
/*****************************************************************************
** Instantiate templates
*****************************************************************************/

#ifdef __GNUC__
template class List<Item>;
template class List_iterator<Item>;
unknown's avatar
unknown committed
3007
template class List_iterator_fast<Item>;
unknown's avatar
unknown committed
3008 3009
template class List<List_item>;
#endif