item.cc 270 KB
Newer Older
Kent Boortz's avatar
Kent Boortz committed
1
/*
2
   Copyright (c) 2000, 2018, Oracle and/or its affiliates.
3
   Copyright (c) 2010, 2018, MariaDB Corporation
unknown's avatar
unknown committed
4

unknown's avatar
unknown committed
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
unknown's avatar
unknown committed
7
   the Free Software Foundation; version 2 of the License.
unknown's avatar
unknown committed
8

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

unknown's avatar
unknown committed
14 15
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
Kent Boortz's avatar
Kent Boortz committed
16
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA */
unknown's avatar
unknown committed
17 18


19
#ifdef USE_PRAGMA_IMPLEMENTATION
unknown's avatar
unknown committed
20 21
#pragma implementation				// gcc: Class implementation
#endif
Mats Kindahl's avatar
Mats Kindahl committed
22
#include "my_global.h"                          /* NO_EMBEDDED_ACCESS_CHECKS */
23 24
#include "sql_priv.h"
#include "unireg.h"                    // REQUIRED: for other includes
25
#include <mysql.h>
unknown's avatar
unknown committed
26 27
#include <m_ctype.h>
#include "my_dir.h"
28
#include "sp_rcontext.h"
29 30
#include "sp_head.h"
#include "sql_trigger.h"
31
#include "sql_select.h"
32 33 34 35 36 37 38 39 40 41 42 43 44
#include "sql_show.h"                           // append_identifier
#include "sql_view.h"                           // VIEW_ANY_SQL
#include "sql_time.h"                  // str_to_datetime_with_warn,
                                       // make_truncated_value_warning
#include "sql_acl.h"                   // get_column_grant,
                                       // SELECT_ACL, UPDATE_ACL,
                                       // INSERT_ACL,
                                       // check_grant_column
#include "sql_base.h"                  // enum_resolution_type,
                                       // REPORT_EXCEPT_NOT_FOUND,
                                       // find_item_in_list,
                                       // RESOLVED_AGAINST_ALIAS, ...
#include "log_event.h"                 // append_query_string
Sergei Golubchik's avatar
Sergei Golubchik committed
45
#include "sql_expression_cache.h"
unknown's avatar
unknown committed
46

47 48
const String my_null_string("NULL", 4, default_charset_info);

Sergey Petrunya's avatar
Sergey Petrunya committed
49
static int save_field_in_field(Field *from, bool *null_value,
unknown's avatar
unknown committed
50 51
                               Field *to, bool no_conversions);

unknown's avatar
unknown committed
52 53 54 55 56 57 58 59 60 61

/**
  Compare two Items for List<Item>::add_unique()
*/

bool cmp_items(Item *a, Item *b)
{
  return a->eq(b, FALSE);
}

62 63 64 65 66 67 68 69 70 71
/****************************************************************************/

/* Hybrid_type_traits {_real} */

void Hybrid_type_traits::fix_length_and_dec(Item *item, Item *arg) const
{
  item->decimals= NOT_FIXED_DEC;
  item->max_length= item->float_length(arg->decimals);
}

unknown's avatar
unknown committed
72
static const Hybrid_type_traits real_traits_instance;
73 74 75

const Hybrid_type_traits *Hybrid_type_traits::instance()
{
unknown's avatar
unknown committed
76
  return &real_traits_instance;
77 78 79 80 81 82 83 84 85 86 87 88 89 90
}


my_decimal *
Hybrid_type_traits::val_decimal(Hybrid_type *val, my_decimal *to) const
{
  double2my_decimal(E_DEC_FATAL_ERROR, val->real, val->dec_buf);
  return val->dec_buf;
}


String *
Hybrid_type_traits::val_str(Hybrid_type *val, String *to, uint8 decimals) const
{
91
  to->set_real(val->real, decimals, &my_charset_bin);
92 93 94 95
  return to;
}

/* Hybrid_type_traits_decimal */
unknown's avatar
unknown committed
96
static const Hybrid_type_traits_decimal decimal_traits_instance;
97 98 99

const Hybrid_type_traits_decimal *Hybrid_type_traits_decimal::instance()
{
unknown's avatar
unknown committed
100
  return &decimal_traits_instance;
101 102 103 104 105 106 107 108
}


void
Hybrid_type_traits_decimal::fix_length_and_dec(Item *item, Item *arg) const
{
  item->decimals= arg->decimals;
  item->max_length= min(arg->max_length + DECIMAL_LONGLONG_DIGITS,
unknown's avatar
unknown committed
109
                        DECIMAL_MAX_STR_LENGTH);
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
}


void Hybrid_type_traits_decimal::set_zero(Hybrid_type *val) const
{
  my_decimal_set_zero(&val->dec_buf[0]);
  val->used_dec_buf_no= 0;
}


void Hybrid_type_traits_decimal::add(Hybrid_type *val, Field *f) const
{
  my_decimal_add(E_DEC_FATAL_ERROR,
                 &val->dec_buf[val->used_dec_buf_no ^ 1],
                 &val->dec_buf[val->used_dec_buf_no],
                 f->val_decimal(&val->dec_buf[2]));
  val->used_dec_buf_no^= 1;
}


unknown's avatar
unknown committed
130 131 132 133
/**
  @todo
  what is '4' for scale?
*/
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
void Hybrid_type_traits_decimal::div(Hybrid_type *val, ulonglong u) const
{
  int2my_decimal(E_DEC_FATAL_ERROR, u, TRUE, &val->dec_buf[2]);
  /* XXX: what is '4' for scale? */
  my_decimal_div(E_DEC_FATAL_ERROR,
                 &val->dec_buf[val->used_dec_buf_no ^ 1],
                 &val->dec_buf[val->used_dec_buf_no],
                 &val->dec_buf[2], 4);
  val->used_dec_buf_no^= 1;
}


longlong
Hybrid_type_traits_decimal::val_int(Hybrid_type *val, bool unsigned_flag) const
{
  longlong result;
  my_decimal2int(E_DEC_FATAL_ERROR, &val->dec_buf[val->used_dec_buf_no],
                 unsigned_flag, &result);
  return result;
}


double
Hybrid_type_traits_decimal::val_real(Hybrid_type *val) const
{
  my_decimal2double(E_DEC_FATAL_ERROR, &val->dec_buf[val->used_dec_buf_no],
                    &val->real);
  return val->real;
}


String *
Hybrid_type_traits_decimal::val_str(Hybrid_type *val, String *to,
                                    uint8 decimals) const
{
  my_decimal_round(E_DEC_FATAL_ERROR, &val->dec_buf[val->used_dec_buf_no],
                   decimals, FALSE, &val->dec_buf[2]);
  my_decimal2string(E_DEC_FATAL_ERROR, &val->dec_buf[2], 0, 0, 0, to);
  return to;
}

/* Hybrid_type_traits_integer */
unknown's avatar
unknown committed
176
static const Hybrid_type_traits_integer integer_traits_instance;
177 178 179

const Hybrid_type_traits_integer *Hybrid_type_traits_integer::instance()
{
unknown's avatar
unknown committed
180
  return &integer_traits_instance;
181 182 183 184 185 186
}

void
Hybrid_type_traits_integer::fix_length_and_dec(Item *item, Item *arg) const
{
  item->decimals= 0;
187
  item->max_length= MY_INT64_NUM_DECIMAL_DIGITS;
188 189 190
  item->unsigned_flag= 0;
}

unknown's avatar
unknown committed
191 192 193 194
/*****************************************************************************
** Item functions
*****************************************************************************/

unknown's avatar
unknown committed
195 196 197
/**
  Init all special items.
*/
unknown's avatar
unknown committed
198 199 200 201

void item_init(void)
{
  item_user_lock_init();
202
  uuid_short_init();
unknown's avatar
unknown committed
203 204
}

unknown's avatar
unknown committed
205

unknown's avatar
unknown committed
206 207 208
/**
  @todo
    Make this functions class dependent
unknown's avatar
unknown committed
209
*/
210

unknown's avatar
unknown committed
211 212
bool Item::val_bool()
{
213
  switch(result_type()) {
unknown's avatar
unknown committed
214
  case INT_RESULT:
215
    return val_int() != 0;
unknown's avatar
unknown committed
216 217 218 219 220 221 222 223 224 225 226 227
  case DECIMAL_RESULT:
  {
    my_decimal decimal_value;
    my_decimal *val= val_decimal(&decimal_value);
    if (val)
      return !my_decimal_is_zero(val);
    return 0;
  }
  case REAL_RESULT:
  case STRING_RESULT:
    return val_real() != 0.0;
  case ROW_RESULT:
Sergei Golubchik's avatar
Sergei Golubchik committed
228
  case TIME_RESULT:
Michael Widenius's avatar
Michael Widenius committed
229
  case IMPOSSIBLE_RESULT:
unknown's avatar
unknown committed
230
    DBUG_ASSERT(0);
231
    return 0;                                   // Wrong (but safe)
unknown's avatar
unknown committed
232
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
233
  return 0;                                   // Wrong (but safe)
unknown's avatar
unknown committed
234 235 236
}


237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
/*
  For the items which don't have its own fast val_str_ascii()
  implementation we provide a generic slower version,
  which converts from the Item character set to ASCII.
  For better performance conversion happens only in 
  case of a "tricky" Item character set (e.g. UCS2).
  Normally conversion does not happen.
*/
String *Item::val_str_ascii(String *str)
{
  DBUG_ASSERT(str != &str_value);
  
  uint errors;
  String *res= val_str(&str_value);
  if (!res)
    return 0;
  
254 255 256 257 258 259 260 261 262
  if (!(res->charset()->state & MY_CS_NONASCII))
    str= res;
  else
  {
    if ((null_value= str->copy(res->ptr(), res->length(), collation.collation,
                               &my_charset_latin1, &errors)))
      return 0;
  }

263 264 265 266
  return str;
}


267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
String *Item::val_str(String *str, String *converter, CHARSET_INFO *cs)
{
  String *res= val_str(str);
  if (null_value)
    return (String *) 0;

  if (!cs)
    return res;

  uint errors;
  if ((null_value= converter->copy(res->ptr(), res->length(),
                                   collation.collation, cs,  &errors)))
    return (String *) 0;

  return converter;
}


285 286 287 288 289
String *Item::val_string_from_real(String *str)
{
  double nr= val_real();
  if (null_value)
    return 0;					/* purecov: inspected */
Sergei Golubchik's avatar
Sergei Golubchik committed
290
  str->set_real(nr,decimals, &my_charset_numeric);
291 292 293 294 295 296 297 298 299
  return str;
}


String *Item::val_string_from_int(String *str)
{
  longlong nr= val_int();
  if (null_value)
    return 0;
Sergei Golubchik's avatar
Sergei Golubchik committed
300
  str->set_int(nr, unsigned_flag, &my_charset_numeric);
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
  return str;
}


String *Item::val_string_from_decimal(String *str)
{
  my_decimal dec_buf, *dec= val_decimal(&dec_buf);
  if (null_value)
    return 0;
  my_decimal_round(E_DEC_FATAL_ERROR, dec, decimals, FALSE, &dec_buf);
  my_decimal2string(E_DEC_FATAL_ERROR, &dec_buf, 0, 0, 0, str);
  return str;
}


Sergei Golubchik's avatar
Sergei Golubchik committed
316 317 318
String *Item::val_string_from_date(String *str)
{
  MYSQL_TIME ltime;
319 320
  if (get_date(&ltime,
               field_type() == MYSQL_TYPE_TIME ? TIME_TIME_ONLY : 0) ||
Sergei Golubchik's avatar
Sergei Golubchik committed
321 322 323 324 325 326
      str->alloc(MAX_DATE_STRING_REP_LENGTH))
  {
    null_value= 1;
    return (String *) 0;
  }
  str->length(my_TIME_to_str(&ltime, const_cast<char*>(str->ptr()), decimals));
Sergei Golubchik's avatar
Sergei Golubchik committed
327
  str->set_charset(&my_charset_numeric);
Sergei Golubchik's avatar
Sergei Golubchik committed
328 329 330 331
  return str;
}


332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
my_decimal *Item::val_decimal_from_real(my_decimal *decimal_value)
{
  double nr= val_real();
  if (null_value)
    return 0;
  double2my_decimal(E_DEC_FATAL_ERROR, nr, decimal_value);
  return (decimal_value);
}


my_decimal *Item::val_decimal_from_int(my_decimal *decimal_value)
{
  longlong nr= val_int();
  if (null_value)
    return 0;
  int2my_decimal(E_DEC_FATAL_ERROR, nr, unsigned_flag, decimal_value);
  return decimal_value;
}


my_decimal *Item::val_decimal_from_string(my_decimal *decimal_value)
{
  String *res;
355

356
  if (!(res= val_str(&str_value)))
Michael Widenius's avatar
Michael Widenius committed
357
    return 0;
358

359 360 361 362
  if (str2my_decimal(E_DEC_FATAL_ERROR & ~E_DEC_BAD_NUM,
                     res->ptr(), res->length(), res->charset(),
                     decimal_value) & E_DEC_BAD_NUM)
  {
363
    ErrConvString err(res);
364 365 366
    push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
                        ER_TRUNCATED_WRONG_VALUE,
                        ER(ER_TRUNCATED_WRONG_VALUE), "DECIMAL",
367
                        err.ptr());
368
  }
369 370 371 372
  return decimal_value;
}


373 374 375
my_decimal *Item::val_decimal_from_date(my_decimal *decimal_value)
{
  DBUG_ASSERT(fixed == 1);
376
  MYSQL_TIME ltime;
377
  if (get_date(&ltime, 0))
378 379
  {
    my_decimal_set_zero(decimal_value);
380
    null_value= 1;                               // set NULL, stop processing
381 382 383 384 385 386 387 388 389
    return 0;
  }
  return date2my_decimal(&ltime, decimal_value);
}


my_decimal *Item::val_decimal_from_time(my_decimal *decimal_value)
{
  DBUG_ASSERT(fixed == 1);
390
  MYSQL_TIME ltime;
391 392 393 394 395 396 397 398 399
  if (get_time(&ltime))
  {
    my_decimal_set_zero(decimal_value);
    return 0;
  }
  return date2my_decimal(&ltime, decimal_value);
}


400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
longlong Item::val_int_from_date()
{
  DBUG_ASSERT(fixed == 1);
  MYSQL_TIME ltime;
  if (get_date(&ltime, 0))
    return 0;
  longlong v= TIME_to_ulonglong(&ltime);
  return ltime.neg ? -v : v;
}


double Item::val_real_from_date()
{
  DBUG_ASSERT(fixed == 1);
  MYSQL_TIME ltime;
  if (get_date(&ltime, 0))
    return 0;
  return TIME_to_double(&ltime);
}


421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
double Item::val_real_from_decimal()
{
  /* Note that fix_fields may not be called for Item_avg_field items */
  double result;
  my_decimal value_buff, *dec_val= val_decimal(&value_buff);
  if (null_value)
    return 0.0;
  my_decimal2double(E_DEC_FATAL_ERROR, dec_val, &result);
  return result;
}


longlong Item::val_int_from_decimal()
{
  /* Note that fix_fields may not be called for Item_avg_field items */
  longlong result;
  my_decimal value, *dec_val= val_decimal(&value);
  if (null_value)
    return 0;
  my_decimal2int(E_DEC_FATAL_ERROR, dec_val, unsigned_flag, &result);
  return result;
}

444 445
int Item::save_time_in_field(Field *field)
{
446
  MYSQL_TIME ltime;
447
  if (get_time(&ltime))
448
    return set_field_to_null_with_conversions(field, 0);
449
  field->set_notnull();
450
  return field->store_time_dec(&ltime, decimals);
451 452 453 454 455
}


int Item::save_date_in_field(Field *field)
{
456
  MYSQL_TIME ltime;
Alexander Barkov's avatar
Alexander Barkov committed
457 458 459
  if (get_date(&ltime, (current_thd->variables.sql_mode &
                        (MODE_NO_ZERO_IN_DATE | MODE_NO_ZERO_DATE |
                         MODE_INVALID_DATES))))
460
    return set_field_to_null_with_conversions(field, 0);
461
  field->set_notnull();
462
  return field->store_time_dec(&ltime, decimals);
463 464
}

465

466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
/*
  Store the string value in field directly

  SYNOPSIS
    Item::save_str_value_in_field()
    field   a pointer to field where to store
    result  the pointer to the string value to be stored

  DESCRIPTION
    The method is used by Item_*::save_in_field implementations
    when we don't need to calculate the value to store
    See Item_string::save_in_field() implementation for example

  IMPLEMENTATION
    Check if the Item is null and stores the NULL or the
    result value in the field accordingly.

  RETURN
    Nonzero value if error
*/

int Item::save_str_value_in_field(Field *field, String *result)
{
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
  return field->store(result->ptr(), result->length(),
		      collation.collation);
}


497
Item::Item():
498 499
  is_expensive_cache(-1), rsize(0), name(0), orig_name(0), name_length(0),
  fixed(0), is_autogenerated_name(TRUE),
unknown's avatar
unknown committed
500
  collation(&my_charset_bin, DERIVATION_COERCIBLE)
unknown's avatar
unknown committed
501
{
502
  marker= 0;
unknown's avatar
unknown committed
503
  maybe_null=null_value=with_sum_func=with_field=unsigned_flag=0;
504
  in_rollup= 0;
505
  decimals= 0; max_length= 0;
506
  with_subselect= 0;
507
  with_param= 0;
508
  cmp_context= IMPOSSIBLE_RESULT;
unknown's avatar
MWL#89  
unknown committed
509 510
   /* Initially this item is not attached to any JOIN_TAB. */
  join_tab_idx= MAX_TABLES;
511 512 513

  /* Put item in free list so that we can free all items at end */
  THD *thd= current_thd;
514 515
  next= thd->free_list;
  thd->free_list= this;
516
  /*
517
    Item constructor can be called during execution other then SQL_COM
518
    command => we should check thd->lex->current_select on zero (thd->lex
unknown's avatar
unknown committed
519
    can be uninitialised)
520
  */
unknown's avatar
unknown committed
521
  if (thd->lex->current_select)
522
  {
523
    enum_parsing_place place= 
unknown's avatar
unknown committed
524
      thd->lex->current_select->parsing_place;
525 526
    if (place == SELECT_LIST ||
	place == IN_HAVING)
unknown's avatar
unknown committed
527
      thd->lex->current_select->select_n_having_items++;
528
  }
unknown's avatar
unknown committed
529 530
}

unknown's avatar
unknown committed
531 532 533 534
/**
  Constructor used by Item_field, Item_ref & aggregate (sum)
  functions.

535
  Used for duplicating lists in processing queries with temporary
unknown's avatar
unknown committed
536
  tables.
537
*/
538
Item::Item(THD *thd, Item *item):
unknown's avatar
MWL#89  
unknown committed
539
  join_tab_idx(item->join_tab_idx),
540
  is_expensive_cache(-1),
541
  rsize(0),
542 543
  str_value(item->str_value),
  name(item->name),
544
  orig_name(item->orig_name),
545
  max_length(item->max_length),
546
  name_length(item->name_length),
547
  decimals(item->decimals),
Sergei Golubchik's avatar
Sergei Golubchik committed
548
  marker(item->marker),
549
  maybe_null(item->maybe_null),
550
  in_rollup(item->in_rollup),
551 552 553
  null_value(item->null_value),
  unsigned_flag(item->unsigned_flag),
  with_sum_func(item->with_sum_func),
554
  with_param(item->with_param),
unknown's avatar
unknown committed
555
  with_field(item->with_field),
556
  fixed(item->fixed),
557
  is_autogenerated_name(item->is_autogenerated_name),
558
  with_subselect(item->has_subquery()),
559
  collation(item->collation),
unknown's avatar
unknown committed
560
  cmp_context(item->cmp_context)
561
{
562 563
  next= thd->free_list;				// Put in free list
  thd->free_list= this;
564 565
}

unknown's avatar
unknown committed
566

unknown's avatar
unknown committed
567 568 569 570 571
uint Item::decimal_precision() const
{
  Item_result restype= result_type();

  if ((restype == DECIMAL_RESULT) || (restype == INT_RESULT))
572 573
  {
    uint prec= 
574 575
      my_decimal_length_to_precision(max_char_length(), decimals,
                                     unsigned_flag);
576 577
    return min(prec, DECIMAL_MAX_PRECISION);
  }
578
  return min(max_char_length(), DECIMAL_MAX_PRECISION);
unknown's avatar
unknown committed
579 580 581
}


582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608
#if MARIADB_VERSION_ID < 1000000
static uint ms_to_precision(uint ms)
{
  uint cut, precision;
  for (cut= 10, precision= 6 ; precision > 0 ; cut*= 10, precision--)
  {
    if (ms % cut)
      return precision;
  }
  return 0;
}
#else
#error Change the code to use MYSQL_TIME_STATUS::precision instead.
#endif


uint Item::temporal_precision(enum_field_types type)
{
  if (const_item() && result_type() == STRING_RESULT &&
      !is_temporal_type(field_type()))
  {
    MYSQL_TIME ltime;
    String buf, *tmp;
    int was_cut;
    DBUG_ASSERT(fixed);
    if ((tmp= val_str(&buf)) &&
        (type == MYSQL_TYPE_TIME ?
Alexander Barkov's avatar
Alexander Barkov committed
609
         str_to_time(tmp->charset(), tmp->ptr(), tmp->length(),
610
                     &ltime, TIME_TIME_ONLY, &was_cut) :
Alexander Barkov's avatar
Alexander Barkov committed
611
         str_to_datetime(tmp->charset(), tmp->ptr(), tmp->length(),
612 613 614 615 616 617 618 619
                         &ltime, TIME_FUZZY_DATES, &was_cut)) >
        MYSQL_TIMESTAMP_ERROR)
      return min(ms_to_precision(ltime.second_part), TIME_SECOND_PART_DIGITS);
  }
  return min(decimals, TIME_SECOND_PART_DIGITS);
}


620
void Item::print_item_w_name(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
621
{
622 623
  print(str, query_type);

unknown's avatar
unknown committed
624 625
  if (name)
  {
626
    THD *thd= current_thd;
627
    str->append(STRING_WITH_LEN(" AS "));
628
    append_identifier(thd, str, name, (uint) strlen(name));
unknown's avatar
unknown committed
629 630 631 632
  }
}


633 634 635 636 637 638 639 640 641
void Item::print_value(String *str)
{
  char buff[MAX_FIELD_WIDTH];
  String *ptr, tmp(buff,sizeof(buff),str->charset());
  ptr= val_str(&tmp);
  if (!ptr)
    str->append("NULL");
  else
  {
Michael Widenius's avatar
Michael Widenius committed
642 643 644 645 646 647 648 649 650 651 652 653 654
    switch (result_type()) {
    case STRING_RESULT:
      append_unescaped(str, ptr->ptr(), ptr->length());
      break;
    case DECIMAL_RESULT:
    case REAL_RESULT:
    case INT_RESULT:
      str->append(*ptr);
      break;
    case ROW_RESULT:
    case TIME_RESULT:
    case IMPOSSIBLE_RESULT:
      DBUG_ASSERT(0);
655 656 657 658 659
    }
  }
}


660 661 662
void Item::cleanup()
{
  DBUG_ENTER("Item::cleanup");
663
  DBUG_PRINT("enter", ("this: %p", this));
664
  fixed=0;
665
  marker= 0;
unknown's avatar
MWL#89  
unknown committed
666
  join_tab_idx= MAX_TABLES;
667 668
  if (orig_name)
    name= orig_name;
669 670 671
  DBUG_VOID_RETURN;
}

672

unknown's avatar
unknown committed
673 674
/**
  cleanup() item if it is 'fixed'.
675

unknown's avatar
unknown committed
676
  @param arg   a dummy parameter, is not used here
677 678
*/

679
bool Item::cleanup_processor(uchar *arg)
680 681 682 683 684 685 686
{
  if (fixed)
    cleanup();
  return FALSE;
}


unknown's avatar
unknown committed
687 688
/**
  rename item (used for views, cleanup() return original name).
689

unknown's avatar
unknown committed
690
  @param new_name	new name of item;
691 692 693 694 695
*/

void Item::rename(char *new_name)
{
  /*
unknown's avatar
unknown committed
696
    we can compare pointers to names here, because if name was not changed,
697 698 699 700 701 702 703
    pointer will be same
  */
  if (!orig_name && new_name != name)
    orig_name= name;
  name= new_name;
}

704 705
Item_result Item::cmp_type() const
{
Sergei Golubchik's avatar
Sergei Golubchik committed
706
  switch (field_type()) {
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728
  case MYSQL_TYPE_DECIMAL:
  case MYSQL_TYPE_NEWDECIMAL:
                           return DECIMAL_RESULT;
  case MYSQL_TYPE_TINY:
  case MYSQL_TYPE_SHORT:
  case MYSQL_TYPE_LONG:
  case MYSQL_TYPE_LONGLONG:
  case MYSQL_TYPE_INT24:
  case MYSQL_TYPE_YEAR:
  case MYSQL_TYPE_BIT:
                           return INT_RESULT;
  case MYSQL_TYPE_FLOAT:
  case MYSQL_TYPE_DOUBLE:
                           return REAL_RESULT;
  case MYSQL_TYPE_NULL:
  case MYSQL_TYPE_VARCHAR:
  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:
Sergei Golubchik's avatar
Sergei Golubchik committed
729 730
  case MYSQL_TYPE_ENUM:
  case MYSQL_TYPE_SET:
731 732 733 734 735 736 737 738 739 740
  case MYSQL_TYPE_GEOMETRY:
                           return STRING_RESULT;
  case MYSQL_TYPE_TIMESTAMP:
  case MYSQL_TYPE_DATE:
  case MYSQL_TYPE_TIME:
  case MYSQL_TYPE_DATETIME:
  case MYSQL_TYPE_NEWDATE:
                           return TIME_RESULT;
  };
  DBUG_ASSERT(0);
Sergei Golubchik's avatar
Sergei Golubchik committed
741
  return IMPOSSIBLE_RESULT;
742
}
743

unknown's avatar
unknown committed
744
/**
745
  Traverse item tree possibly transforming it (replacing items).
746

unknown's avatar
unknown committed
747 748 749 750
  This function is designed to ease transformation of Item trees.
  Re-execution note: every such transformation is registered for
  rollback by THD::change_item_tree() and is rolled back at the end
  of execution by THD::rollback_item_tree_changes().
751

unknown's avatar
unknown committed
752 753 754 755 756 757 758
  Therefore:
  - this function can not be used at prepared statement prepare
  (in particular, in fix_fields!), as only permanent
  transformation of Item trees are allowed at prepare.
  - the transformer function shall allocate new Items in execution
  memory root (thd->mem_root) and not anywhere else: allocated
  items will be gone in the end of execution.
759

unknown's avatar
unknown committed
760 761
  If you don't need to transform an item tree, but only traverse
  it, please use Item::walk() instead.
762 763


unknown's avatar
unknown committed
764 765
  @param transformer    functor that performs transformation of a subtree
  @param arg            opaque argument passed to the functor
766

unknown's avatar
unknown committed
767
  @return
768
    Returns pointer to the new subtree root.  THD::change_item_tree()
769
    should be called for it if transformation took place, i.e. if a
770 771 772
    pointer to newly allocated item is returned.
*/

773
Item* Item::transform(Item_transformer transformer, uchar *arg)
774
{
775
  DBUG_ASSERT(!current_thd->stmt_arena->is_stmt_prepare());
776 777 778 779 780

  return (this->*transformer)(arg);
}


unknown's avatar
unknown committed
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795
/**
  Create and set up an expression cache for this item

  @param thd             Thread handle
  @param depends_on      List of the expression parameters

  @details
  The function creates an expression cache for an item and its parameters
  specified by the 'depends_on' list. Then the expression cache is placed
  into a cache wrapper that is returned as the result of the function.

  @returns
  A pointer to created wrapper item if successful, NULL - otherwise
*/

unknown's avatar
unknown committed
796
Item* Item::set_expr_cache(THD *thd)
unknown's avatar
unknown committed
797 798 799 800 801 802
{
  DBUG_ENTER("Item::set_expr_cache");
  Item_cache_wrapper *wrapper;
  if ((wrapper= new Item_cache_wrapper(this)) &&
      !wrapper->fix_fields(thd, (Item**)&wrapper))
  {
unknown's avatar
unknown committed
803
    if (wrapper->set_cache(thd))
804
      DBUG_RETURN(NULL);
unknown's avatar
unknown committed
805 806
    DBUG_RETURN(wrapper);
  }
807
  DBUG_RETURN(NULL);
unknown's avatar
unknown committed
808 809 810
}


811 812 813 814 815 816 817
Item_ident::Item_ident(Name_resolution_context *context_arg,
                       const char *db_name_arg,const char *table_name_arg,
		       const char *field_name_arg)
  :orig_db_name(db_name_arg), orig_table_name(table_name_arg),
   orig_field_name(field_name_arg), context(context_arg),
   db_name(db_name_arg), table_name(table_name_arg),
   field_name(field_name_arg),
818
   alias_name_used(FALSE), cached_field_index(NO_CACHED_FIELD_INDEX),
unknown's avatar
unknown committed
819
   cached_table(0), depended_from(0), can_be_depended(TRUE)
unknown's avatar
unknown committed
820
{
821
  name = (char*) field_name_arg;
822
  name_length= name ? strlen(name) : 0;
unknown's avatar
unknown committed
823 824
}

825

826 827 828 829 830 831
Item_ident::Item_ident(TABLE_LIST *view_arg, const char *field_name_arg)
  :orig_db_name(NullS), orig_table_name(view_arg->table_name),
   orig_field_name(field_name_arg), context(&view_arg->view->select_lex.context),
   db_name(NullS), table_name(view_arg->alias),
   field_name(field_name_arg),
   alias_name_used(FALSE), cached_field_index(NO_CACHED_FIELD_INDEX),
unknown's avatar
unknown committed
832
   cached_table(NULL), depended_from(NULL), can_be_depended(TRUE)
833 834
{
  name = (char*) field_name_arg;
835
  name_length= name ? strlen(name) : 0;
836 837 838
}


unknown's avatar
unknown committed
839 840 841
/**
  Constructor used by Item_field & Item_*_ref (see Item comment)
*/
842

843 844
Item_ident::Item_ident(THD *thd, Item_ident *item)
  :Item(thd, item),
845 846 847
   orig_db_name(item->orig_db_name),
   orig_table_name(item->orig_table_name), 
   orig_field_name(item->orig_field_name),
848
   context(item->context),
849 850 851
   db_name(item->db_name),
   table_name(item->table_name),
   field_name(item->field_name),
852
   alias_name_used(item->alias_name_used),
853
   cached_field_index(item->cached_field_index),
854
   cached_table(item->cached_table),
unknown's avatar
unknown committed
855 856
   depended_from(item->depended_from),
   can_be_depended(item->can_be_depended)
857
{}
858

859 860
void Item_ident::cleanup()
{
unknown's avatar
unknown committed
861
  DBUG_ENTER("Item_ident::cleanup");
862
  bool was_fixed= fixed;
863
  Item::cleanup();
864 865 866
  db_name= orig_db_name; 
  table_name= orig_table_name;
  field_name= orig_field_name;
unknown's avatar
unknown committed
867
  /* Store if this Item was depended */
868 869 870 871 872 873 874 875
  if (was_fixed)
  {
    /*
      We can trust that depended_from set correctly only if this item
      was fixed
    */
    can_be_depended= test(depended_from);
  }
unknown's avatar
unknown committed
876
  DBUG_VOID_RETURN;
877 878
}

879
bool Item_ident::remove_dependence_processor(uchar * arg)
unknown's avatar
unknown committed
880 881
{
  DBUG_ENTER("Item_ident::remove_dependence_processor");
Igor Babaev's avatar
Igor Babaev committed
882
  if (get_depended_from() == (st_select_lex *) arg)
unknown's avatar
unknown committed
883
    depended_from= 0;
884
  context= &((st_select_lex *) arg)->context;
885
  DBUG_RETURN(0);
unknown's avatar
unknown committed
886 887 888
}


unknown's avatar
unknown committed
889 890 891
bool Item_ident::collect_outer_ref_processor(uchar *param)
{
  Collect_deps_prm *prm= (Collect_deps_prm *)param;
unknown's avatar
unknown committed
892 893 894
  if (depended_from && 
      depended_from->nest_level_base == prm->nest_level_base &&
      depended_from->nest_level < prm->nest_level)
unknown's avatar
unknown committed
895 896 897 898 899
    prm->parameters->add_unique(this, &cmp_items);
  return FALSE;
}


unknown's avatar
unknown committed
900
/**
901 902
  Store the pointer to this item field into a list if not already there.

unknown's avatar
unknown committed
903 904
  The method is used by Item::walk to collect all unique Item_field objects
  from a tree of Items into a set of items represented as a list.
905

unknown's avatar
unknown committed
906 907 908 909
  Item_cond::walk() and Item_func::walk() stop the evaluation of the
  processor function for its arguments once the processor returns
  true.Therefore in order to force this method being called for all item
  arguments in a condition the method must return false.
910

unknown's avatar
unknown committed
911
  @param arg  pointer to a List<Item_field>
912

unknown's avatar
unknown committed
913
  @return
unknown's avatar
unknown committed
914
    FALSE to force the evaluation of collect_item_field_processor
unknown's avatar
unknown committed
915
    for the subsequent items.
916 917
*/

918
bool Item_field::collect_item_field_processor(uchar *arg)
919 920 921 922 923 924 925 926 927
{
  DBUG_ENTER("Item_field::collect_item_field_processor");
  DBUG_PRINT("info", ("%s", field->field_name ? field->field_name : "noname"));
  List<Item_field> *item_list= (List<Item_field>*) arg;
  List_iterator<Item_field> item_list_it(*item_list);
  Item_field *curr_item;
  while ((curr_item= item_list_it++))
  {
    if (curr_item->eq(this, 1))
unknown's avatar
unknown committed
928
      DBUG_RETURN(FALSE); /* Already in the set. */
929 930
  }
  item_list->push_back(this);
unknown's avatar
unknown committed
931
  DBUG_RETURN(FALSE);
932 933 934
}


935 936 937 938 939 940 941 942 943 944
bool Item_field::add_field_to_set_processor(uchar *arg)
{
  DBUG_ENTER("Item_field::add_field_to_set_processor");
  DBUG_PRINT("info", ("%s", field->field_name ? field->field_name : "noname"));
  TABLE *table= (TABLE *) arg;
  if (field->table == table)
    bitmap_set_bit(&table->tmp_set, field->field_index);
  DBUG_RETURN(FALSE);
}

unknown's avatar
unknown committed
945
/**
unknown's avatar
unknown committed
946 947
  Check if an Item_field references some field from a list of fields.

unknown's avatar
unknown committed
948 949 950 951
  Check whether the Item_field represented by 'this' references any
  of the fields in the keyparts passed via 'arg'. Used with the
  method Item::walk() to test whether any keypart in a sequence of
  keyparts is referenced in an expression.
unknown's avatar
unknown committed
952

unknown's avatar
unknown committed
953
  @param arg   Field being compared, arg must be of type Field
unknown's avatar
unknown committed
954

unknown's avatar
unknown committed
955
  @retval
unknown's avatar
unknown committed
956
    TRUE  if 'this' references the field 'arg'
unknown's avatar
unknown committed
957
  @retval
unknown's avatar
unknown committed
958
    FALSE otherwise
unknown's avatar
unknown committed
959
*/
unknown's avatar
unknown committed
960

961
bool Item_field::find_item_in_field_list_processor(uchar *arg)
unknown's avatar
unknown committed
962 963 964 965 966 967 968 969 970 971 972 973 974 975
{
  KEY_PART_INFO *first_non_group_part= *((KEY_PART_INFO **) arg);
  KEY_PART_INFO *last_part= *(((KEY_PART_INFO **) arg) + 1);
  KEY_PART_INFO *cur_part;

  for (cur_part= first_non_group_part; cur_part != last_part; cur_part++)
  {
    if (field->eq(cur_part->field))
      return TRUE;
  }
  return FALSE;
}


976 977 978 979 980 981 982 983
/*
  Mark field in read_map

  NOTES
    This is used by filesort to register used fields in a a temporary
    column read set or to register used fields in a view
*/

984
bool Item_field::register_field_in_read_map(uchar *arg)
985 986 987 988
{
  TABLE *table= (TABLE *) arg;
  if (field->table == table || !table)
    bitmap_set_bit(field->table->read_set, field->field_index);
989 990 991
  if (field->vcol_info && field->vcol_info->expr_item)
    return field->vcol_info->expr_item->walk(&Item::register_field_in_read_map, 
                                             1, arg);
992 993 994
  return 0;
}

995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
/*
  @brief
  Mark field in bitmap supplied as *arg
*/

bool Item_field::register_field_in_bitmap(uchar *arg)
{
  MY_BITMAP *bitmap= (MY_BITMAP *) arg;
  DBUG_ASSERT(bitmap);
  bitmap_set_bit(bitmap, field->field_index);
  return 0;
}
1007

1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024

/*
  Mark field in write_map

  NOTES
    This is used by UPDATE to register underlying fields of used view fields.
*/

bool Item_field::register_field_in_write_map(uchar *arg)
{
  TABLE *table= (TABLE *) arg;
  if (field->table == table || !table)
    bitmap_set_bit(field->table->write_set, field->field_index);
  return 0;
}


unknown's avatar
unknown committed
1025 1026 1027 1028
bool Item::check_cols(uint c)
{
  if (c != 1)
  {
unknown's avatar
unknown committed
1029
    my_error(ER_OPERAND_COLUMNS, MYF(0), c);
unknown's avatar
unknown committed
1030 1031 1032 1033 1034
    return 1;
  }
  return 0;
}

unknown's avatar
unknown committed
1035 1036

void Item::set_name(const char *str, uint length, CHARSET_INFO *cs)
unknown's avatar
unknown committed
1037 1038 1039
{
  if (!length)
  {
unknown's avatar
unknown committed
1040 1041
    /* Empty string, used by AS or internal function like last_insert_id() */
    name= (char*) str;
1042
    name_length= 0;
unknown's avatar
unknown committed
1043 1044
    return;
  }
1045 1046
  if (cs->ctype)
  {
1047 1048
    const char *str_start= str;

unknown's avatar
unknown committed
1049 1050 1051 1052
    /*
      This will probably need a better implementation in the future:
      a function in CHARSET_INFO structure.
    */
1053 1054 1055 1056 1057
    while (length && !my_isgraph(cs,*str))
    {						// Fix problem with yacc
      length--;
      str++;
    }
1058
    if (str != str_start && !is_autogenerated_name)
unknown's avatar
unknown committed
1059
    {
1060 1061 1062 1063
      char buff[SAFE_NAME_LEN];
      strmake(buff, str_start,
              min(sizeof(buff)-1, length + (int) (str-str_start)));

unknown's avatar
unknown committed
1064 1065 1066
      if (length == 0)
        push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
                            ER_NAME_BECOMES_EMPTY, ER(ER_NAME_BECOMES_EMPTY),
1067
                            buff);
unknown's avatar
unknown committed
1068 1069 1070
      else
        push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
                            ER_REMOVED_SPACES, ER(ER_REMOVED_SPACES),
1071
                            buff);
unknown's avatar
unknown committed
1072
    }
unknown's avatar
unknown committed
1073
  }
unknown's avatar
unknown committed
1074 1075
  if (!my_charset_same(cs, system_charset_info))
  {
1076
    size_t res_length;
unknown's avatar
unknown committed
1077
    name= sql_strmake_with_convert(str, length, cs,
unknown's avatar
unknown committed
1078 1079
				   MAX_ALIAS_NAME, system_charset_info,
				   &res_length);
unknown's avatar
unknown committed
1080
    name_length= res_length;
unknown's avatar
unknown committed
1081 1082
  }
  else
1083
    name= sql_strmake(str, (name_length= min(length,MAX_ALIAS_NAME)));
unknown's avatar
unknown committed
1084 1085
}

unknown's avatar
unknown committed
1086

unknown's avatar
unknown committed
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101
void Item::set_name_no_truncate(const char *str, uint length, CHARSET_INFO *cs)
{
  if (!my_charset_same(cs, system_charset_info))
  {
    size_t res_length;
    name= sql_strmake_with_convert(str, length, cs,
				   UINT_MAX, system_charset_info,
				   &res_length);
    name_length= res_length;
  }
  else
    name= sql_strmake(str, (name_length= length));
}


Igor Babaev's avatar
Igor Babaev committed
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
void Item::set_name_for_rollback(THD *thd, const char *str, uint length,
                                 CHARSET_INFO *cs)
{
  char *old_name, *new_name; 
  old_name= name;
  set_name(str, length, cs);
  new_name= name;
  if (old_name != new_name)
  {
    name= old_name;
    thd->change_item_tree((Item **) &name, (Item *) new_name);
  }
}


unknown's avatar
unknown committed
1117 1118
/**
  @details
1119 1120 1121
  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
1122 1123 1124
*/

bool Item::eq(const Item *item, bool binary_cmp) const
unknown's avatar
unknown committed
1125
{
1126 1127 1128 1129 1130
  /*
    Note, that this is never TRUE if item is a Item_param:
    for all basic constants we have special checks, and Item_param's
    type() can be only among basic constant types.
  */
unknown's avatar
unknown committed
1131
  return type() == item->type() && name && item->name &&
1132
    !my_strcasecmp(system_charset_info,name,item->name);
unknown's avatar
unknown committed
1133 1134
}

unknown's avatar
unknown committed
1135

1136 1137
Item *Item::safe_charset_converter(CHARSET_INFO *tocs)
{
1138 1139
  Item_func_conv_charset *conv= new Item_func_conv_charset(this, tocs, 1);
  return conv->safe ? conv : NULL;
1140 1141 1142
}


1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
/**
  Some pieces of the code do not support changing of
  Item_cache to other Item types.

  Example:
  Item_singlerow_subselect has "Item_cache **row".
  Creating of Item_func_conv_charset followed by THD::change_item_tree()
  should not change row[i] from Item_cache directly to Item_func_conv_charset, because Item_singlerow_subselect
  because Item_singlerow_subselect later calls Item_cache-specific methods,
  e.g. row[i]->store() and row[i]->cache_value().

1154
  Let's wrap Item_func_conv_charset in a new Item_cache,
1155 1156 1157
  so the Item_cache-specific methods can still be used for
  Item_singlerow_subselect::row[i] safely.

1158 1159
  As a bonus we cache the converted value, instead of converting every time

1160 1161 1162 1163 1164
  TODO: we should eventually check all other use cases of change_item_tree().
  Perhaps some more potentially dangerous substitution examples exist.
*/
Item *Item_cache::safe_charset_converter(CHARSET_INFO *tocs)
{
1165 1166 1167 1168 1169
  if (!example)
    return Item::safe_charset_converter(tocs);
  Item *conv= example->safe_charset_converter(tocs);
  if (conv == example)
    return this;
1170
  Item_cache *cache;
1171 1172
  if (!conv || conv->fix_fields(current_thd, (Item **) NULL) ||
      !(cache= new Item_cache_str(conv)))
1173 1174 1175 1176 1177 1178 1179
    return NULL; // Safe conversion is not possible, or OEM
  cache->setup(conv);
  cache->fixed= false; // Make Item::fix_fields() happy
  return cache;
}


unknown's avatar
unknown committed
1180 1181
/**
  @details
unknown's avatar
unknown committed
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
  Created mostly for mysql_prepare_table(). Important
  when a string ENUM/SET column is described with a numeric default value:

  CREATE TABLE t1(a SET('a') DEFAULT 1);

  We cannot use generic Item::safe_charset_converter(), because
  the latter returns a non-fixed Item, so val_str() crashes afterwards.
  Override Item_num method, to return a fixed item.
*/
Item *Item_num::safe_charset_converter(CHARSET_INFO *tocs)
{
1193 1194 1195 1196 1197 1198 1199 1200
  /*
    Item_num returns pure ASCII result,
    so conversion is needed only in case of "tricky" character
    sets like UCS2. If tocs is not "tricky", return the item itself.
  */
  if (!(tocs->state & MY_CS_NONASCII))
    return this;
  
unknown's avatar
unknown committed
1201
  Item_string *conv;
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
  uint conv_errors;
  char buf[64], buf2[64];
  String tmp(buf, sizeof(buf), &my_charset_bin);
  String cstr(buf2, sizeof(buf2), &my_charset_bin);
  String *ostr= val_str(&tmp);
  char *ptr;
  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)))
unknown's avatar
unknown committed
1212
  {
1213 1214 1215 1216 1217 1218 1219
    /*
      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;
unknown's avatar
unknown committed
1220
  }
1221 1222 1223 1224 1225 1226
  if (!(ptr= current_thd->strmake(cstr.ptr(), cstr.length())))
    return NULL;
  conv->str_value.set(ptr, cstr.length(), cstr.charset());
  /* Ensure that no one is going to change the result string */
  conv->str_value.mark_as_const();
  conv->fix_char_length(max_char_length());
unknown's avatar
unknown committed
1227 1228 1229 1230
  return conv;
}


1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246
Item *Item_static_float_func::safe_charset_converter(CHARSET_INFO *tocs)
{
  Item_string *conv;
  char buf[64];
  String *s, tmp(buf, sizeof(buf), &my_charset_bin);
  s= val_str(&tmp);
  if ((conv= new Item_static_string_func(func_name, s->ptr(), s->length(),
                                         s->charset())))
  {
    conv->str_value.copy();
    conv->str_value.mark_as_const();
  }
  return conv;
}


1247 1248 1249 1250
Item *Item_string::safe_charset_converter(CHARSET_INFO *tocs)
{
  Item_string *conv;
  uint conv_errors;
1251
  char *ptr;
1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265
  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;
  }
1266
  if (!(ptr= current_thd->strmake(cstr.ptr(), cstr.length())))
1267 1268
    return NULL;
  conv->str_value.set(ptr, cstr.length(), cstr.charset());
unknown's avatar
unknown committed
1269 1270
  /* Ensure that no one is going to change the result string */
  conv->str_value.mark_as_const();
1271 1272 1273 1274
  return conv;
}


1275 1276 1277 1278 1279
Item *Item_param::safe_charset_converter(CHARSET_INFO *tocs)
{
  if (const_item())
  {
    uint cnv_errors;
unknown's avatar
unknown committed
1280
    String *ostr= val_str(&cnvstr);
1281 1282
    if (null_value)
    {
1283 1284
      Item_null *n= new Item_null();
      return n ? n->safe_charset_converter(tocs) : NULL;
1285
    }
unknown's avatar
unknown committed
1286 1287 1288 1289 1290 1291 1292
    cnvitem->str_value.copy(ostr->ptr(), ostr->length(),
                            ostr->charset(), tocs, &cnv_errors);
    if (cnv_errors)
       return NULL;
    cnvitem->str_value.mark_as_const();
    cnvitem->max_length= cnvitem->str_value.numchars() * tocs->mbmaxlen;
    return cnvitem;
1293
  }
Alexander Barkov's avatar
Alexander Barkov committed
1294
  return Item::safe_charset_converter(tocs);
1295 1296 1297
}


1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
Item *Item_static_string_func::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_static_string_func(func_name,
                                          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.
1315 1316 1317 1318
    */
    return NULL;
  }
  conv->str_value.copy();
unknown's avatar
unknown committed
1319 1320
  /* Ensure that no one is going to change the result string */
  conv->str_value.mark_as_const();
1321 1322 1323 1324
  return conv;
}


1325 1326
bool Item_string::eq(const Item *item, bool binary_cmp) const
{
1327
  if (type() == item->type() && item->basic_const_item())
1328 1329
  {
    if (binary_cmp)
unknown's avatar
unknown committed
1330
      return !stringcmp(&str_value, &item->str_value);
unknown's avatar
unknown committed
1331 1332
    return (collation.collation == item->collation.collation &&
	    !sortcmp(&str_value, &item->str_value, collation.collation));
1333 1334 1335 1336 1337
  }
  return 0;
}


unknown's avatar
unknown committed
1338
/**
1339
  Get the value of the function as a MYSQL_TIME structure.
Michael Widenius's avatar
Michael Widenius committed
1340
  As a extra convenience the time structure is reset on error or NULL values!
unknown's avatar
unknown committed
1341
*/
unknown's avatar
unknown committed
1342

1343
bool Item::get_date(MYSQL_TIME *ltime,ulonglong fuzzydate)
unknown's avatar
unknown committed
1344
{
1345 1346
  if (field_type() == MYSQL_TYPE_TIME)
    fuzzydate|= TIME_TIME_ONLY;
Michael Widenius's avatar
Michael Widenius committed
1347

Sergei Golubchik's avatar
Sergei Golubchik committed
1348
  switch (result_type()) {
1349
  case INT_RESULT:
1350
  {
1351
    longlong value= val_int();
1352
    bool neg= !unsigned_flag && value < 0;
1353
    if (field_type() == MYSQL_TYPE_YEAR)
1354
    {
Sergei Golubchik's avatar
Sergei Golubchik committed
1355 1356 1357 1358 1359 1360 1361 1362
      if (max_length == 2)
      {
        if (value < 70)
          value+= 2000;
        else if (value <= 1900)
          value+= 1900;
      }
      value*= 10000; /* make it YYYYMMHH */
1363
    }
1364 1365
    if (null_value || int_to_datetime_with_warn(neg, neg ? -value : value,
                                                ltime, fuzzydate,
Sergei Golubchik's avatar
Sergei Golubchik committed
1366
                                                field_name_or_null()))
1367
      goto err;
1368 1369 1370 1371 1372
    break;
  }
  case REAL_RESULT:
  {
    double value= val_real();
1373
    if (null_value || double_to_datetime_with_warn(value, ltime, fuzzydate,
Sergei Golubchik's avatar
Sergei Golubchik committed
1374
                                                   field_name_or_null()))
1375
      goto err;
1376 1377 1378 1379 1380
    break;
  }
  case DECIMAL_RESULT:
  {
    my_decimal value, *res;
1381 1382
    if (!(res= val_decimal(&value)) ||
        decimal_to_datetime_with_warn(res, ltime, fuzzydate,
Sergei Golubchik's avatar
Sergei Golubchik committed
1383
                                      field_name_or_null()))
1384 1385 1386
      goto err;
    break;
  }
1387
  case STRING_RESULT:
unknown's avatar
unknown committed
1388
  {
1389 1390 1391
    char buff[40];
    String tmp(buff,sizeof(buff), &my_charset_bin),*res;
    if (!(res=val_str(&tmp)) ||
1392
        str_to_datetime_with_warn(res->charset(), res->ptr(), res->length(),
1393 1394
                                  ltime, fuzzydate) <= MYSQL_TIMESTAMP_ERROR)
      goto err;
1395
    break;
1396
  }
1397 1398
  default:
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
1399
  }
1400

1401
  return null_value= 0;
1402 1403

err:
1404 1405 1406 1407
  /*
    if the item was not null and convertion failed, we return a zero date
    if allowed, otherwise - null.
  */
1408
  bzero((char*) ltime,sizeof(*ltime));
1409
  return null_value|= !(fuzzydate & TIME_FUZZY_DATES);
unknown's avatar
unknown committed
1410 1411
}

1412
bool Item::get_seconds(ulonglong *sec, ulong *sec_part)
unknown's avatar
unknown committed
1413
{
1414
  if (decimals == 0)
1415 1416 1417 1418 1419 1420
  { // optimize for an important special case
    longlong val= val_int();
    bool neg= val < 0 && !unsigned_flag;
    *sec= neg ? -val : val;
    *sec_part= 0;
    return neg;
unknown's avatar
unknown committed
1421
  }
1422 1423 1424 1425
  my_decimal tmp, *dec= val_decimal(&tmp);
  if (!dec)
    return 0;
  return my_decimal2seconds(dec, sec, sec_part);
unknown's avatar
unknown committed
1426 1427
}

1428
CHARSET_INFO *Item::default_charset()
1429
{
unknown's avatar
unknown committed
1430
  return current_thd->variables.collation_connection;
1431 1432
}

1433

1434 1435 1436 1437 1438 1439 1440 1441
/*
  Save value in field, but don't give any warnings

  NOTES
   This is used to temporary store and retrieve a value in a column,
   for example in opt_range to adjust the key value to fit the column.
*/

1442 1443 1444
int Item::save_in_field_no_warnings(Field *field, bool no_conversions)
{
  int res;
1445 1446
  TABLE *table= field->table;
  THD *thd= table->in_use;
1447
  enum_check_fields tmp= thd->count_cuted_fields;
1448
  my_bitmap_map *old_map= dbug_tmp_use_all_columns(table, table->write_set);
1449
  ulonglong sql_mode= thd->variables.sql_mode;
1450
  thd->variables.sql_mode&= ~(MODE_NO_ZERO_IN_DATE | MODE_NO_ZERO_DATE);
1451
  thd->variables.sql_mode|= MODE_INVALID_DATES;
1452
  thd->count_cuted_fields= CHECK_FIELD_IGNORE;
1453

1454
  res= save_in_field(field, no_conversions);
1455

1456
  thd->count_cuted_fields= tmp;
1457
  dbug_tmp_restore_column_map(table->write_set, old_map);
1458
  thd->variables.sql_mode= sql_mode;
1459 1460 1461 1462
  return res;
}


1463
/*****************************************************************************
1464
  Item_sp_variable methods
1465
*****************************************************************************/
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490

Item_sp_variable::Item_sp_variable(char *sp_var_name_str,
                                   uint sp_var_name_length)
  :m_thd(0)
#ifndef DBUG_OFF
   , m_sp(0)
#endif
{
  m_name.str= sp_var_name_str;
  m_name.length= sp_var_name_length;
}


bool Item_sp_variable::fix_fields(THD *thd, Item **)
{
  Item *it;

  m_thd= thd; /* NOTE: this must be set before any this_xxx() */
  it= this_item();

  DBUG_ASSERT(it->fixed);

  max_length= it->max_length;
  decimals= it->decimals;
  unsigned_flag= it->unsigned_flag;
1491 1492 1493
  with_param= 1;
  if (thd->lex->current_select->master_unit()->item)
    thd->lex->current_select->master_unit()->item->with_param= 1;
1494 1495 1496 1497 1498 1499 1500 1501
  fixed= 1;
  collation.set(it->collation.collation, it->collation.derivation);

  return FALSE;
}


double Item_sp_variable::val_real()
unknown's avatar
unknown committed
1502 1503 1504 1505
{
  DBUG_ASSERT(fixed);
  Item *it= this_item();
  double ret= it->val_real();
1506
  null_value= it->null_value;
unknown's avatar
unknown committed
1507 1508 1509 1510
  return ret;
}


1511
longlong Item_sp_variable::val_int()
unknown's avatar
unknown committed
1512 1513 1514 1515
{
  DBUG_ASSERT(fixed);
  Item *it= this_item();
  longlong ret= it->val_int();
1516
  null_value= it->null_value;
unknown's avatar
unknown committed
1517 1518 1519 1520
  return ret;
}


1521
String *Item_sp_variable::val_str(String *sp)
unknown's avatar
unknown committed
1522 1523 1524
{
  DBUG_ASSERT(fixed);
  Item *it= this_item();
1525
  String *res= it->val_str(sp);
1526 1527

  null_value= it->null_value;
1528

1529 1530 1531
  if (!res)
    return NULL;

1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546
  /*
    This way we mark returned value of val_str as const,
    so that various functions (e.g. CONCAT) won't try to
    modify the value of the Item. Analogous mechanism is
    implemented for Item_param.
    Without this trick Item_splocal could be changed as a
    side-effect of expression computation. Here is an example
    of what happens without it: suppose x is varchar local
    variable in a SP with initial value 'ab' Then
      select concat(x,'c');
    would change x's value to 'abc', as Item_func_concat::val_str()
    would use x's internal buffer to compute the result.
    This is intended behaviour of Item_func_concat. Comments to
    Item_param class contain some more details on the topic.
  */
1547

1548 1549 1550 1551
  if (res != &str_value)
    str_value.set(res->ptr(), res->length(), res->charset());
  else
    res->mark_as_const();
1552

1553
  return &str_value;
unknown's avatar
unknown committed
1554 1555 1556
}


1557
my_decimal *Item_sp_variable::val_decimal(my_decimal *decimal_value)
unknown's avatar
unknown committed
1558 1559 1560
{
  DBUG_ASSERT(fixed);
  Item *it= this_item();
1561
  my_decimal *val= it->val_decimal(decimal_value);
1562
  null_value= it->null_value;
unknown's avatar
unknown committed
1563 1564 1565 1566
  return val;
}


1567
bool Item_sp_variable::is_null()
unknown's avatar
unknown committed
1568
{
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
  return this_item()->is_null();
}


/*****************************************************************************
  Item_splocal methods
*****************************************************************************/

Item_splocal::Item_splocal(const LEX_STRING &sp_var_name,
                           uint sp_var_idx,
                           enum_field_types sp_var_type,
unknown's avatar
unknown committed
1580
                           uint pos_in_q, uint len_in_q)
1581
  :Item_sp_variable(sp_var_name.str, sp_var_name.length),
1582 1583 1584
   m_var_idx(sp_var_idx),
   limit_clause_param(FALSE),
   pos_in_query(pos_in_q), len_in_query(len_in_q)
1585 1586 1587 1588
{
  maybe_null= TRUE;

  m_type= sp_map_item_type(sp_var_type);
1589
  m_field_type= sp_var_type;
1590
  m_result_type= sp_map_result_type(sp_var_type);
unknown's avatar
unknown committed
1591 1592 1593
}


1594 1595 1596
Item *
Item_splocal::this_item()
{
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
  DBUG_ASSERT(m_sp == m_thd->spcont->sp);

  return m_thd->spcont->get_item(m_var_idx);
}

const Item *
Item_splocal::this_item() const
{
  DBUG_ASSERT(m_sp == m_thd->spcont->sp);

  return m_thd->spcont->get_item(m_var_idx);
1608 1609
}

1610 1611

Item **
1612
Item_splocal::this_item_addr(THD *thd, Item **)
1613
{
1614 1615 1616
  DBUG_ASSERT(m_sp == thd->spcont->sp);

  return thd->spcont->get_item_addr(m_var_idx);
1617 1618
}

1619

1620
void Item_splocal::print(String *str, enum_query_type)
1621
{
1622 1623 1624 1625
  str->reserve(m_name.length+8);
  str->append(m_name.str, m_name.length);
  str->append('@');
  str->qs_append(m_var_idx);
1626 1627
}

1628

1629
bool Item_splocal::set_value(THD *thd, sp_rcontext *ctx, Item **it)
1630 1631 1632 1633 1634
{
  return ctx->set_variable(thd, get_var_idx(), it);
}


1635 1636 1637 1638
/*****************************************************************************
  Item_case_expr methods
*****************************************************************************/

1639
Item_case_expr::Item_case_expr(uint case_expr_id)
unknown's avatar
unknown committed
1640
  :Item_sp_variable( C_STRING_WITH_LEN("case_expr")),
1641
   m_case_expr_id(case_expr_id)
1642 1643 1644 1645
{
}


1646 1647
Item *
Item_case_expr::this_item()
unknown's avatar
unknown committed
1648
{
1649 1650 1651
  DBUG_ASSERT(m_sp == m_thd->spcont->sp);

  return m_thd->spcont->get_case_expr(m_case_expr_id);
unknown's avatar
unknown committed
1652 1653 1654
}


1655 1656 1657

const Item *
Item_case_expr::this_item() const
unknown's avatar
unknown committed
1658
{
1659 1660 1661
  DBUG_ASSERT(m_sp == m_thd->spcont->sp);

  return m_thd->spcont->get_case_expr(m_case_expr_id);
unknown's avatar
unknown committed
1662 1663 1664
}


1665 1666
Item **
Item_case_expr::this_item_addr(THD *thd, Item **)
unknown's avatar
unknown committed
1667
{
1668 1669 1670 1671 1672 1673
  DBUG_ASSERT(m_sp == thd->spcont->sp);

  return thd->spcont->get_case_expr_addr(m_case_expr_id);
}


1674
void Item_case_expr::print(String *str, enum_query_type)
1675
{
1676 1677
  if (str->reserve(MAX_INT_WIDTH + sizeof("case_expr@")))
    return;                                    /* purecov: inspected */
Konstantin Osipov's avatar
Konstantin Osipov committed
1678
  (void) str->append(STRING_WITH_LEN("case_expr@"));
1679
  str->qs_append(m_case_expr_id);
unknown's avatar
unknown committed
1680 1681 1682
}


1683 1684 1685
/*****************************************************************************
  Item_name_const methods
*****************************************************************************/
1686

1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
double Item_name_const::val_real()
{
  DBUG_ASSERT(fixed);
  double ret= value_item->val_real();
  null_value= value_item->null_value;
  return ret;
}


longlong Item_name_const::val_int()
{
  DBUG_ASSERT(fixed);
  longlong ret= value_item->val_int();
  null_value= value_item->null_value;
  return ret;
}


String *Item_name_const::val_str(String *sp)
{
  DBUG_ASSERT(fixed);
  String *ret= value_item->val_str(sp);
  null_value= value_item->null_value;
  return ret;
}


my_decimal *Item_name_const::val_decimal(my_decimal *decimal_value)
{
  DBUG_ASSERT(fixed);
  my_decimal *val= value_item->val_decimal(decimal_value);
1718
  null_value= value_item->null_value;
1719 1720 1721 1722 1723 1724
  return val;
}


bool Item_name_const::is_null()
{
1725
  return value_item->is_null();
1726 1727
}

1728 1729 1730 1731 1732

Item_name_const::Item_name_const(Item *name_arg, Item *val):
    value_item(val), name_item(name_arg)
{
  Item::maybe_null= TRUE;
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753
  valid_args= true;
  if (!name_item->basic_const_item())
    goto err;

  if (value_item->basic_const_item())
    return; // ok

  if (value_item->type() == FUNC_ITEM)
  {
    Item_func *value_func= (Item_func *) value_item;
    if (value_func->functype() != Item_func::COLLATE_FUNC &&
        value_func->functype() != Item_func::NEG_FUNC)
      goto err;

    if (value_func->key_item()->basic_const_item())
      return; // ok
  }

err:
  valid_args= false;
  my_error(ER_WRONG_ARGUMENTS, MYF(0), "NAME_CONST");
1754 1755 1756
}


1757 1758
Item::Type Item_name_const::type() const
{
1759 1760 1761 1762 1763 1764 1765 1766 1767
  /*
    As 
    1. one can try to create the Item_name_const passing non-constant 
    arguments, although it's incorrect and 
    2. the type() method can be called before the fix_fields() to get
    type information for a further type cast, e.g. 
    if (item->type() == FIELD_ITEM) 
      ((Item_field *) item)->... 
    we return NULL_ITEM in the case to avoid wrong casting.
1768 1769 1770 1771

    valid_args guarantees value_item->basic_const_item(); if type is
    FUNC_ITEM, then we have a fudged item_func_neg() on our hands
    and return the underlying type.
1772 1773 1774
    For Item_func_set_collation()
    e.g. NAME_CONST('name', 'value' COLLATE collation) we return its
    'value' argument type. 
1775
  */
1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791
  if (!valid_args)
    return NULL_ITEM;
  Item::Type value_type= value_item->type();
  if (value_type == FUNC_ITEM)
  {
    /* 
      The second argument of NAME_CONST('name', 'value') must be 
      a simple constant item or a NEG_FUNC/COLLATE_FUNC.
    */
    DBUG_ASSERT(((Item_func *) value_item)->functype() == 
                Item_func::NEG_FUNC ||
                ((Item_func *) value_item)->functype() == 
                Item_func::COLLATE_FUNC);
    return ((Item_func *) value_item)->key_item()->type();            
  }
  return value_type;
1792 1793 1794
}


1795
bool Item_name_const::fix_fields(THD *thd, Item **ref)
1796 1797 1798 1799 1800 1801 1802
{
  char buf[128];
  String *item_name;
  String s(buf, sizeof(buf), &my_charset_bin);
  s.length(0);

  if (value_item->fix_fields(thd, &value_item) ||
unknown's avatar
unknown committed
1803 1804 1805 1806 1807 1808
      name_item->fix_fields(thd, &name_item) ||
      !value_item->const_item() ||
      !name_item->const_item() ||
      !(item_name= name_item->val_str(&s))) // Can't have a NULL name 
  {
    my_error(ER_RESERVED_SYNTAX, MYF(0), "NAME_CONST");
1809
    return TRUE;
unknown's avatar
unknown committed
1810
  }
1811 1812 1813 1814
  if (is_autogenerated_name)
  {
    set_name(item_name->ptr(), (uint) item_name->length(), system_charset_info);
  }
1815
  collation.set(value_item->collation.collation, DERIVATION_IMPLICIT);
1816 1817 1818 1819 1820 1821 1822
  max_length= value_item->max_length;
  decimals= value_item->decimals;
  fixed= 1;
  return FALSE;
}


1823
void Item_name_const::print(String *str, enum_query_type query_type)
1824
{
1825
  str->append(STRING_WITH_LEN("NAME_CONST("));
1826
  name_item->print(str, query_type);
1827
  str->append(',');
1828
  value_item->print(str, query_type);
1829 1830 1831
  str->append(')');
}

1832

1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844
/*
 need a special class to adjust printing : references to aggregate functions 
 must not be printed as refs because the aggregate functions that are added to
 the front of select list are not printed as well.
*/
class Item_aggregate_ref : public Item_ref
{
public:
  Item_aggregate_ref(Name_resolution_context *context_arg, Item **item,
                  const char *table_name_arg, const char *field_name_arg)
    :Item_ref(context_arg, item, table_name_arg, field_name_arg) {}

1845
  virtual inline void print (String *str, enum_query_type query_type)
1846 1847
  {
    if (ref)
1848
      (*ref)->print(str, query_type);
1849
    else
1850
      Item_ident::print(str, query_type);
1851
  }
1852
  virtual Ref_Type ref_type() { return AGGREGATE_REF; }
1853 1854 1855
};


unknown's avatar
unknown committed
1856 1857
/**
  Move SUM items out from item tree and replace with reference.
1858

unknown's avatar
unknown committed
1859 1860 1861 1862 1863 1864
  @param thd			Thread handler
  @param ref_pointer_array	Pointer to array of reference fields
  @param fields		All fields in select
  @param ref			Pointer to item
  @param skip_registered       <=> function be must skipped for registered
                               SUM items
1865

unknown's avatar
unknown committed
1866 1867
  @note
    This is from split_sum_func2() for items that should be split
1868

unknown's avatar
unknown committed
1869 1870
    All found SUM items are added FIRST in the fields list and
    we replace the item with a reference.
1871

unknown's avatar
unknown committed
1872
    thd->fatal_error() may be called if we are out of memory
1873 1874 1875
*/

void Item::split_sum_func2(THD *thd, Item **ref_pointer_array,
unknown's avatar
unknown committed
1876 1877
                           List<Item> &fields, Item **ref, 
                           bool skip_registered)
1878
{
unknown's avatar
unknown committed
1879 1880 1881
  /* An item of type Item_sum  is registered <=> ref_by != 0 */ 
  if (type() == SUM_FUNC_ITEM && skip_registered && 
      ((Item_sum *) this)->ref_by)
unknown's avatar
unknown committed
1882
    return;
unknown's avatar
unknown committed
1883 1884 1885 1886
  if ((type() != SUM_FUNC_ITEM && with_sum_func) ||
      (type() == FUNC_ITEM &&
       (((Item_func *) this)->functype() == Item_func::ISNOTNULLTEST_FUNC ||
        ((Item_func *) this)->functype() == Item_func::TRIG_COND_FUNC)))
1887 1888 1889 1890
  {
    /* Will split complicated items and ignore simple ones */
    split_sum_func(thd, ref_pointer_array, fields);
  }
1891
  else if ((type() == SUM_FUNC_ITEM || (used_tables() & ~PARAM_TABLE_BIT)) &&
1892
           type() != SUBSELECT_ITEM &&
1893 1894
           (type() != REF_ITEM ||
           ((Item_ref*)this)->ref_type() == Item_ref::VIEW_REF))
1895 1896 1897 1898 1899 1900 1901 1902
  {
    /*
      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)
1903 1904
      Exception is Item_direct_view_ref which we need to convert to
      Item_ref to allow fields from view being stored in tmp table.
1905
    */
1906
    Item_aggregate_ref *item_ref;
1907
    uint el= fields.elements;
1908 1909
    DBUG_ASSERT(fields.elements <=
                thd->lex->current_select->ref_pointer_array_size);
1910 1911 1912 1913 1914
    /*
      If this is an item_ref, get the original item
      This is a safety measure if this is called for things that is
      already a reference.
    */
1915
    Item *real_itm= real_item();
1916

unknown's avatar
unknown committed
1917
    ref_pointer_array[el]= real_itm;
1918
    if (!(item_ref= new Item_aggregate_ref(&thd->lex->current_select->context,
1919
                                           ref_pointer_array + el, 0, name)))
1920
      return;                                   // fatal_error is set
1921 1922
    if (type() == SUM_FUNC_ITEM)
      item_ref->depended_from= ((Item_sum *) this)->depended_from(); 
unknown's avatar
unknown committed
1923
    fields.push_front(real_itm);
1924
    thd->change_item_tree(ref, item_ref);
1925 1926 1927 1928
  }
}


1929 1930 1931 1932 1933 1934 1935
static bool
left_is_superset(DTCollation *left, DTCollation *right)
{
  /* Allow convert to Unicode */
  if (left->collation->state & MY_CS_UNICODE &&
      (left->derivation < right->derivation ||
       (left->derivation == right->derivation &&
Alexander Barkov's avatar
Alexander Barkov committed
1936 1937 1938 1939 1940 1941
        (!(right->collation->state & MY_CS_UNICODE) ||
         /* The code below makes 4-byte utf8 a superset over 3-byte utf8 */
         (left->collation->state & MY_CS_UNICODE_SUPPLEMENT &&
          !(right->collation->state & MY_CS_UNICODE_SUPPLEMENT) &&
          left->collation->mbmaxlen > right->collation->mbmaxlen &&
          left->collation->mbminlen == right->collation->mbminlen)))))
1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952
    return TRUE;
  /* Allow convert from ASCII */
  if (right->repertoire == MY_REPERTOIRE_ASCII &&
      (left->derivation < right->derivation ||
       (left->derivation == right->derivation &&
        !(left->repertoire == MY_REPERTOIRE_ASCII))))
    return TRUE;
  /* Disallow conversion otherwise */
  return FALSE;
}

unknown's avatar
unknown committed
1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986
/**
  Aggregate two collations together taking
  into account their coercibility (aka derivation):.

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

  The most important rules are:
  -# If collations are the same:
  chose this collation, and the strongest derivation.
  -# 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:
     @code
       CONCAT(latin1_swedish_ci_column,
              latin1_german1_ci_column,
              expr COLLATE latin1_german2_ci)
  @endcode
1987
*/
unknown's avatar
unknown committed
1988

1989
bool DTCollation::aggregate(DTCollation &dt, uint flags)
1990
{
1991
  if (!my_charset_same(collation, dt.collation))
1992
  {
1993 1994 1995
    /* 
       We do allow to use binary strings (like BLOBS)
       together with character strings.
unknown's avatar
unknown committed
1996
       Binaries have more precedence than a character
unknown's avatar
unknown committed
1997
       string of the same derivation.
1998
    */
1999
    if (collation == &my_charset_bin)
2000
    {
2001
      if (derivation <= dt.derivation)
2002 2003 2004
      {
	/* Do nothing */
      }
2005
      else
2006 2007 2008
      {
	set(dt); 
      }
2009
    }
2010
    else if (dt.collation == &my_charset_bin)
2011
    {
2012
      if (dt.derivation <= derivation)
2013
      {
2014
        set(dt);
2015
      }
2016
    }
2017
    else if ((flags & MY_COLL_ALLOW_SUPERSET_CONV) &&
2018
             left_is_superset(this, &dt))
2019
    {
2020
      /* Do nothing */
2021 2022
    }
    else if ((flags & MY_COLL_ALLOW_SUPERSET_CONV) &&
2023
             left_is_superset(&dt, this))
2024 2025 2026 2027 2028
    {
      set(dt);
    }
    else if ((flags & MY_COLL_ALLOW_COERCIBLE_CONV) &&
             derivation < dt.derivation &&
2029
             dt.derivation >= DERIVATION_SYSCONST)
2030
    {
2031
      /* Do nothing */
2032 2033 2034
    }
    else if ((flags & MY_COLL_ALLOW_COERCIBLE_CONV) &&
             dt.derivation < derivation &&
2035
             derivation >= DERIVATION_SYSCONST)
2036 2037
    {
      set(dt);
2038
    }
2039 2040
    else
    {
2041
      // Cannot apply conversion
2042 2043
      set(&my_charset_bin, DERIVATION_NONE,
          (dt.repertoire|repertoire));
2044
      return 1;
2045
    }
2046
  }
2047
  else if (derivation < dt.derivation)
2048
  {
2049
    /* Do nothing */
2050
  }
2051
  else if (dt.derivation < derivation)
2052
  {
2053
    set(dt);
2054
  }
2055 2056 2057
  else
  { 
    if (collation == dt.collation)
2058
    {
2059
      /* Do nothing */
2060 2061 2062 2063
    }
    else 
    {
      if (derivation == DERIVATION_EXPLICIT)
2064
      {
2065 2066
        set(0, DERIVATION_NONE, 0);
        return 1;
2067
      }
2068 2069
      if (collation->state & MY_CS_BINSORT)
        return 0;
unknown's avatar
unknown committed
2070
      if (dt.collation->state & MY_CS_BINSORT)
2071 2072 2073 2074
      {
        set(dt);
        return 0;
      }
2075
      CHARSET_INFO *bin= get_charset_by_csname(collation->csname, 
2076
                                               MY_CS_BINSORT,MYF(0));
2077
      set(bin, DERIVATION_NONE);
2078
    }
2079
  }
2080
  repertoire|= dt.repertoire;
2081 2082 2083
  return 0;
}

2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107
/******************************/
static
void my_coll_agg_error(DTCollation &c1, DTCollation &c2, const char *fname)
{
  my_error(ER_CANT_AGGREGATE_2COLLATIONS,MYF(0),
           c1.collation->name,c1.derivation_name(),
           c2.collation->name,c2.derivation_name(),
           fname);
}


static
void my_coll_agg_error(DTCollation &c1, DTCollation &c2, DTCollation &c3,
                       const char *fname)
{
  my_error(ER_CANT_AGGREGATE_3COLLATIONS,MYF(0),
  	   c1.collation->name,c1.derivation_name(),
	   c2.collation->name,c2.derivation_name(),
	   c3.collation->name,c3.derivation_name(),
	   fname);
}


static
2108 2109
void my_coll_agg_error(Item** args, uint count, const char *fname,
                       int item_sep)
2110 2111
{
  if (count == 2)
2112
    my_coll_agg_error(args[0]->collation, args[item_sep]->collation, fname);
2113
  else if (count == 3)
2114 2115
    my_coll_agg_error(args[0]->collation, args[item_sep]->collation,
                      args[2*item_sep]->collation, fname);
2116 2117 2118 2119 2120 2121
  else
    my_error(ER_CANT_AGGREGATE_NCOLLATIONS,MYF(0),fname);
}


bool agg_item_collations(DTCollation &c, const char *fname,
2122
                         Item **av, uint count, uint flags, int item_sep)
2123 2124
{
  uint i;
2125
  Item **arg;
2126 2127
  bool unknown_cs= 0;

2128
  c.set(av[0]->collation);
2129
  for (i= 1, arg= &av[item_sep]; i < count; i++, arg+= item_sep)
2130
  {
2131
    if (c.aggregate((*arg)->collation, flags))
2132
    {
2133 2134 2135 2136 2137 2138
      if (c.derivation == DERIVATION_NONE &&
          c.collation == &my_charset_bin)
      {
        unknown_cs= 1;
        continue;
      }
2139
      my_coll_agg_error(av, count, fname, item_sep);
2140 2141 2142
      return TRUE;
    }
  }
2143 2144 2145 2146 2147 2148 2149 2150

  if (unknown_cs &&
      c.derivation != DERIVATION_EXPLICIT)
  {
    my_coll_agg_error(av, count, fname, item_sep);
    return TRUE;
  }

2151 2152 2153
  if ((flags & MY_COLL_DISALLOW_NONE) &&
      c.derivation == DERIVATION_NONE)
  {
2154
    my_coll_agg_error(av, count, fname, item_sep);
2155 2156
    return TRUE;
  }
2157 2158
  
  /* If all arguments where numbers, reset to @@collation_connection */
2159 2160
  if (flags & MY_COLL_ALLOW_NUMERIC_CONV &&
      c.derivation == DERIVATION_NUMERIC)
2161 2162
    c.set(Item::default_charset(), DERIVATION_COERCIBLE, MY_REPERTOIRE_NUMERIC);

2163 2164 2165 2166 2167 2168 2169 2170
  return FALSE;
}


bool agg_item_collations_for_comparison(DTCollation &c, const char *fname,
                                        Item **av, uint count, uint flags)
{
  return (agg_item_collations(c, fname, av, count,
2171
                              flags | MY_COLL_DISALLOW_NONE, 1));
2172 2173 2174
}


2175 2176
bool agg_item_set_converter(DTCollation &coll, const char *fname,
                            Item **args, uint nargs, uint flags, int item_sep)
2177
{
2178
  Item **arg, *safe_args[2]= {NULL, NULL};
unknown's avatar
unknown committed
2179

2180 2181 2182 2183 2184 2185 2186 2187 2188 2189
  /*
    For better error reporting: save the first and the second argument.
    We need this only if the the number of args is 3 or 2:
    - for a longer argument list, "Illegal mix of collations"
      doesn't display each argument's characteristics.
    - if nargs is 1, then this error cannot happen.
  */
  if (nargs >=2 && nargs <= 3)
  {
    safe_args[0]= args[0];
2190
    safe_args[1]= args[item_sep];
2191 2192 2193 2194
  }

  THD *thd= current_thd;
  bool res= FALSE;
2195
  uint i;
2196

2197 2198 2199 2200
  /*
    In case we're in statement prepare, create conversion item
    in its memory: it will be reused on each execute.
  */
2201 2202 2203 2204
  Query_arena backup;
  Query_arena *arena= thd->stmt_arena->is_stmt_prepare() ?
                      thd->activate_stmt_arena_if_needed(&backup) :
                      NULL;
2205

2206
  for (i= 0, arg= args; i < nargs; i++, arg+= item_sep)
2207 2208 2209
  {
    Item* conv;
    uint32 dummy_offset;
Alexander Barkov's avatar
Alexander Barkov committed
2210
    if (!String::needs_conversion(1, (*arg)->collation.collation,
2211
                                  coll.collation,
2212 2213 2214
                                  &dummy_offset))
      continue;

2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232
    /*
      No needs to add converter if an "arg" is NUMERIC or DATETIME
      value (which is pure ASCII) and at the same time target DTCollation
      is ASCII-compatible. For example, no needs to rewrite:
        SELECT * FROM t1 WHERE datetime_field = '2010-01-01';
      to
        SELECT * FROM t1 WHERE CONVERT(datetime_field USING cs) = '2010-01-01';
      
      TODO: avoid conversion of any values with
      repertoire ASCII and 7bit-ASCII-compatible,
      not only numeric/datetime origin.
    */
    if ((*arg)->collation.derivation == DERIVATION_NUMERIC &&
        (*arg)->collation.repertoire == MY_REPERTOIRE_ASCII &&
        !((*arg)->collation.collation->state & MY_CS_NONASCII) &&
        !(coll.collation->state & MY_CS_NONASCII))
      continue;

2233 2234
    if (!(conv= (*arg)->safe_charset_converter(coll.collation)) &&
        ((*arg)->collation.repertoire == MY_REPERTOIRE_ASCII))
Sergey Glukhov's avatar
Sergey Glukhov committed
2235
      conv= new Item_func_conv_charset(*arg, coll.collation, 1);
2236 2237

    if (!conv)
2238 2239 2240 2241 2242
    {
      if (nargs >=2 && nargs <= 3)
      {
        /* restore the original arguments for better error message */
        args[0]= safe_args[0];
2243
        args[item_sep]= safe_args[1];
2244
      }
2245
      my_coll_agg_error(args, nargs, fname, item_sep);
2246 2247 2248
      res= TRUE;
      break; // we cannot return here, we need to restore "arena".
    }
2249 2250
    if ((*arg)->type() == Item::FIELD_ITEM)
      ((Item_field *)(*arg))->no_const_subst= 1;
2251 2252 2253 2254 2255 2256 2257 2258 2259 2260
    /*
      If in statement prepare, then we create a converter for two
      constant items, do it once and then reuse it.
      If we're in execution of a prepared statement, arena is NULL,
      and the conv was created in runtime memory. This can be
      the case only if the argument is a parameter marker ('?'),
      because for all true constants the charset converter has already
      been created in prepare. In this case register the change for
      rollback.
    */
2261
    if (thd->stmt_arena->is_stmt_prepare())
2262 2263 2264
      *arg= conv;
    else
      thd->change_item_tree(arg, conv);
2265 2266 2267 2268 2269 2270

    if (conv->fix_fields(thd, arg))
    {
      res= TRUE;
      break; // we cannot return here, we need to restore "arena".
    }
2271 2272
  }
  if (arena)
unknown's avatar
Rename:  
unknown committed
2273
    thd->restore_active_arena(arena, &backup);
2274 2275 2276 2277
  return res;
}


2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317
/* 
  Collect arguments' character sets together.
  We allow to apply automatic character set conversion in some cases.
  The conditions when conversion is possible are:
  - arguments A and B have different charsets
  - A wins according to coercibility rules
    (i.e. a column is stronger than a string constant,
     an explicit COLLATE clause is stronger than a column)
  - character set of A is either superset for character set of B,
    or B is a string constant which can be converted into the
    character set of A without data loss.
    
  If all of the above is true, then it's possible to convert
  B into the character set of A, and then compare according
  to the collation of A.
  
  For functions with more than two arguments:

    collect(A,B,C) ::= collect(collect(A,B),C)

  Since this function calls THD::change_item_tree() on the passed Item **
  pointers, it is necessary to pass the original Item **'s, not copies.
  Otherwise their values will not be properly restored (see BUG#20769).
  If the items are not consecutive (eg. args[2] and args[5]), use the
  item_sep argument, ie.

    agg_item_charsets(coll, fname, &args[2], 2, flags, 3)

*/

bool agg_item_charsets(DTCollation &coll, const char *fname,
                       Item **args, uint nargs, uint flags, int item_sep)
{
  if (agg_item_collations(coll, fname, args, nargs, flags, item_sep))
    return TRUE;

  return agg_item_set_converter(coll, fname, args, nargs, flags, item_sep);
}


2318 2319 2320 2321 2322 2323 2324 2325 2326 2327
void Item_ident_for_show::make_field(Send_field *tmp_field)
{
  tmp_field->table_name= tmp_field->org_table_name= table_name;
  tmp_field->db_name= db_name;
  tmp_field->col_name= tmp_field->org_col_name= field->field_name;
  tmp_field->charsetnr= field->charset()->number;
  tmp_field->length=field->field_length;
  tmp_field->type=field->type();
  tmp_field->flags= field->table->maybe_null ? 
    (field->flags & ~NOT_NULL_FLAG) : field->flags;
2328
  tmp_field->decimals= field->decimals();
2329
}
2330 2331 2332

/**********************************************/

unknown's avatar
unknown committed
2333
Item_field::Item_field(Field *f)
2334
  :Item_ident(0, NullS, *f->table_name, f->field_name),
unknown's avatar
unknown committed
2335
   item_equal(0), no_const_subst(0),
2336
   have_privileges(0), any_privileges(0)
unknown's avatar
unknown committed
2337 2338
{
  set_field(f);
2339
  /*
unknown's avatar
unknown committed
2340
    field_name and table_name should not point to garbage
2341 2342 2343
    if this item is to be reused
  */
  orig_table_name= orig_field_name= "";
unknown's avatar
unknown committed
2344
  with_field= 1;
unknown's avatar
unknown committed
2345 2346
}

unknown's avatar
unknown committed
2347

unknown's avatar
unknown committed
2348 2349 2350 2351 2352 2353 2354
/**
  Constructor used inside setup_wild().

  Ensures that field, table, and database names will live as long as
  Item_field (this is important in prepared statements).
*/

2355 2356
Item_field::Item_field(THD *thd, Name_resolution_context *context_arg,
                       Field *f)
unknown's avatar
unknown committed
2357
  :Item_ident(context_arg, f->table->s->db.str, *f->table_name, f->field_name),
unknown's avatar
unknown committed
2358
   item_equal(0), no_const_subst(0),
2359
   have_privileges(0), any_privileges(0)
unknown's avatar
unknown committed
2360
{
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
  /*
    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
2374
    of a prepared statement or after the close_tables_for_reopen() call
2375 2376
    in mysql_multi_update_prepare() or due to wildcard expansion in stored
    procedures).
2377 2378 2379 2380
  */
  {
    if (db_name)
      orig_db_name= thd->strdup(db_name);
2381 2382 2383 2384
    if (table_name)
      orig_table_name= thd->strdup(table_name);
    if (field_name)
      orig_field_name= thd->strdup(field_name);
2385 2386 2387 2388 2389 2390 2391
    /*
      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;
  }
unknown's avatar
unknown committed
2392
  set_field(f);
unknown's avatar
unknown committed
2393
  with_field= 1;
unknown's avatar
unknown committed
2394 2395
}

2396 2397 2398 2399 2400 2401

Item_field::Item_field(Name_resolution_context *context_arg,
                       const char *db_arg,const char *table_name_arg,
                       const char *field_name_arg)
  :Item_ident(context_arg, db_arg,table_name_arg,field_name_arg),
   field(0), result_field(0), item_equal(0), no_const_subst(0),
2402
   have_privileges(0), any_privileges(0)
2403
{
unknown's avatar
unknown committed
2404
  SELECT_LEX *select= current_thd->lex->current_select;
2405
  collation.set(DERIVATION_IMPLICIT);
unknown's avatar
unknown committed
2406 2407
  if (select && select->parsing_place != IN_HAVING)
      select->select_n_where_fields++;
unknown's avatar
unknown committed
2408
  with_field= 1;
2409 2410
}

unknown's avatar
unknown committed
2411 2412 2413 2414
/**
  Constructor need to process subselect with temporary tables (see Item)
*/

2415
Item_field::Item_field(THD *thd, Item_field *item)
2416
  :Item_ident(thd, item),
2417
   field(item->field),
unknown's avatar
VIEW  
unknown committed
2418
   result_field(item->result_field),
unknown's avatar
unknown committed
2419 2420
   item_equal(item->item_equal),
   no_const_subst(item->no_const_subst),
unknown's avatar
VIEW  
unknown committed
2421
   have_privileges(item->have_privileges),
2422
   any_privileges(item->any_privileges)
2423 2424
{
  collation.set(DERIVATION_IMPLICIT);
unknown's avatar
unknown committed
2425
  with_field= 1;
2426
}
unknown's avatar
unknown committed
2427

2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482

/**
  Calculate the max column length not taking into account the
  limitations over integer types.

  When storing data into fields the server currently just ignores the
  limits specified on integer types, e.g. 1234 can safely be stored in
  an int(2) and will not cause an error.
  Thus when creating temporary tables and doing transformations
  we must adjust the maximum field length to reflect this fact.
  We take the un-restricted maximum length and adjust it similarly to
  how the declared length is adjusted wrt unsignedness etc.
  TODO: this all needs to go when we disable storing 1234 in int(2).

  @param field_par   Original field the use to calculate the lengths
  @param max_length  Item's calculated explicit max length
  @return            The adjusted max length
*/

inline static uint32
adjust_max_effective_column_length(Field *field_par, uint32 max_length)
{
  uint32 new_max_length= field_par->max_display_length();
  uint32 sign_length= (field_par->flags & UNSIGNED_FLAG) ? 0 : 1;

  switch (field_par->type())
  {
  case MYSQL_TYPE_INT24:
    /*
      Compensate for MAX_MEDIUMINT_WIDTH being 1 too long (8)
      compared to the actual number of digits that can fit into
      the column.
    */
    new_max_length+= 1;
    /* fall through */
  case MYSQL_TYPE_LONG:
  case MYSQL_TYPE_TINY:
  case MYSQL_TYPE_SHORT:

    /* Take out the sign and add a conditional sign */
    new_max_length= new_max_length - 1 + sign_length;
    break;

  /* BINGINT is always 20 no matter the sign */
  case MYSQL_TYPE_LONGLONG:
  /* make gcc happy */
  default:
    break;
  }

  /* Adjust only if the actual precision based one is bigger than specified */
  return new_max_length > max_length ? new_max_length : max_length;
}


unknown's avatar
unknown committed
2483 2484 2485 2486 2487
void Item_field::set_field(Field *field_par)
{
  field=result_field=field_par;			// for easy coding with fields
  maybe_null=field->maybe_null();
  decimals= field->decimals();
2488 2489
  table_name= *field_par->table_name;
  field_name= field_par->field_name;
unknown's avatar
unknown committed
2490
  db_name= field_par->table->s->db.str;
unknown's avatar
unknown committed
2491
  alias_name_used= field_par->table->alias_name_used;
2492
  unsigned_flag=test(field_par->flags & UNSIGNED_FLAG);
2493 2494 2495
  collation.set(field_par->charset(), field_par->derivation(),
                field_par->repertoire());
  fix_char_length(field_par->char_length());
2496 2497 2498

  max_length= adjust_max_effective_column_length(field_par, max_length);

2499
  fixed= 1;
unknown's avatar
unknown committed
2500 2501
  if (field->table->s->tmp_table == SYSTEM_TMP_TABLE)
    any_privileges= 0;
2502 2503 2504
}


unknown's avatar
unknown committed
2505
/**
2506 2507 2508 2509 2510 2511 2512 2513 2514 2515
  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
2516 2517
}

Sergey Petrunia's avatar
Sergey Petrunia committed
2518

Sergey Petrunya's avatar
Sergey Petrunya committed
2519
bool Item_field::enumerate_field_refs_processor(uchar *arg)
Sergey Petrunia's avatar
Sergey Petrunia committed
2520
{
Sergey Petrunya's avatar
Sergey Petrunya committed
2521
  Field_enumerator *fe= (Field_enumerator*)arg;
2522
  fe->visit_field(this);
Sergey Petrunya's avatar
Sergey Petrunya committed
2523
  return FALSE;
Sergey Petrunia's avatar
Sergey Petrunia committed
2524 2525
}

Igor Babaev's avatar
Igor Babaev committed
2526
bool Item_field::update_table_bitmaps_processor(uchar *arg)
Igor Babaev's avatar
Igor Babaev committed
2527
{
Igor Babaev's avatar
Igor Babaev committed
2528
  update_table_bitmaps();
Igor Babaev's avatar
Igor Babaev committed
2529 2530
  return FALSE;
}
Sergey Petrunia's avatar
Sergey Petrunia committed
2531

unknown's avatar
unknown committed
2532 2533 2534
const char *Item_ident::full_name() const
{
  char *tmp;
2535
  if (!table_name || !field_name)
unknown's avatar
unknown committed
2536
    return field_name ? field_name : name ? name : "tmp_field";
unknown's avatar
unknown committed
2537
  if (db_name && db_name[0])
unknown's avatar
unknown committed
2538
  {
unknown's avatar
unknown committed
2539 2540
    tmp=(char*) sql_alloc((uint) strlen(db_name)+(uint) strlen(table_name)+
			  (uint) strlen(field_name)+3);
unknown's avatar
unknown committed
2541 2542 2543 2544
    strxmov(tmp,db_name,".",table_name,".",field_name,NullS);
  }
  else
  {
2545 2546 2547 2548 2549 2550 2551 2552
    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
2553 2554 2555 2556
  }
  return tmp;
}

2557
void Item_ident::print(String *str, enum_query_type query_type)
2558
{
2559
  THD *thd= current_thd;
2560 2561
  char d_name_buff[MAX_ALIAS_NAME], t_name_buff[MAX_ALIAS_NAME];
  const char *d_name= db_name, *t_name= table_name;
unknown's avatar
unknown committed
2562 2563
  if (lower_case_table_names== 1 ||
      (lower_case_table_names == 2 && !alias_name_used))
2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578
  {
    if (table_name && table_name[0])
    {
      strmov(t_name_buff, table_name);
      my_casedn_str(files_charset_info, t_name_buff);
      t_name= t_name_buff;
    }
    if (db_name && db_name[0])
    {
      strmov(d_name_buff, db_name);
      my_casedn_str(files_charset_info, d_name_buff);
      d_name= d_name_buff;
    }
  }

2579
  if (!table_name || !field_name || !field_name[0])
2580
  {
2581 2582
    const char *nm= (field_name && field_name[0]) ?
                      field_name : name ? name : "tmp_field";
2583
    append_identifier(thd, str, nm, (uint) strlen(nm));
2584 2585
    return;
  }
unknown's avatar
unknown committed
2586
  if (db_name && db_name[0] && !alias_name_used)
2587
  {
2588 2589 2590
    if (!(cached_table && cached_table->belong_to_view &&
          cached_table->belong_to_view->compact_view_format))
    {
2591
      append_identifier(thd, str, d_name, (uint)strlen(d_name));
2592 2593
      str->append('.');
    }
2594
    append_identifier(thd, str, t_name, (uint)strlen(t_name));
2595
    str->append('.');
2596
    append_identifier(thd, str, field_name, (uint)strlen(field_name));
2597 2598 2599 2600 2601
  }
  else
  {
    if (table_name[0])
    {
2602
      append_identifier(thd, str, t_name, (uint) strlen(t_name));
2603
      str->append('.');
2604
      append_identifier(thd, str, field_name, (uint) strlen(field_name));
2605 2606
    }
    else
2607
      append_identifier(thd, str, field_name, (uint) strlen(field_name));
2608 2609 2610
  }
}

unknown's avatar
unknown committed
2611 2612 2613
/* ARGSUSED */
String *Item_field::val_str(String *str)
{
2614
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
2615 2616
  if ((null_value=field->is_null()))
    return 0;
unknown's avatar
unknown committed
2617
  str->set_charset(str_value.charset());
unknown's avatar
unknown committed
2618 2619 2620
  return field->val_str(str,&str_value);
}

unknown's avatar
unknown committed
2621

2622
double Item_field::val_real()
unknown's avatar
unknown committed
2623
{
2624
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
2625 2626 2627 2628 2629
  if ((null_value=field->is_null()))
    return 0.0;
  return field->val_real();
}

unknown's avatar
unknown committed
2630

unknown's avatar
unknown committed
2631 2632
longlong Item_field::val_int()
{
2633
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
2634 2635 2636 2637 2638 2639
  if ((null_value=field->is_null()))
    return 0;
  return field->val_int();
}


unknown's avatar
unknown committed
2640 2641 2642 2643 2644 2645 2646 2647
my_decimal *Item_field::val_decimal(my_decimal *decimal_value)
{
  if ((null_value= field->is_null()))
    return 0;
  return field->val_decimal(decimal_value);
}


unknown's avatar
unknown committed
2648 2649 2650 2651
String *Item_field::str_result(String *str)
{
  if ((null_value=result_field->is_null()))
    return 0;
2652
  str->set_charset(str_value.charset());
unknown's avatar
unknown committed
2653 2654 2655
  return result_field->val_str(str,&str_value);
}

2656
bool Item_field::get_date(MYSQL_TIME *ltime,ulonglong fuzzydate)
unknown's avatar
unknown committed
2657 2658 2659 2660 2661 2662 2663 2664 2665
{
  if ((null_value=field->is_null()) || field->get_date(ltime,fuzzydate))
  {
    bzero((char*) ltime,sizeof(*ltime));
    return 1;
  }
  return 0;
}

2666
bool Item_field::get_date_result(MYSQL_TIME *ltime, ulonglong fuzzydate)
2667
{
Sergei Golubchik's avatar
Sergei Golubchik committed
2668
  if (result_field->is_null() || result_field->get_date(ltime,fuzzydate))
2669 2670
  {
    bzero((char*) ltime,sizeof(*ltime));
Sergei Golubchik's avatar
Sergei Golubchik committed
2671
    return (null_value= 1);
2672
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
2673
  return (null_value= 0);
2674 2675
}

unknown's avatar
unknown committed
2676

unknown's avatar
unknown committed
2677 2678 2679 2680 2681 2682
void Item_field::save_result(Field *to)
{
  save_field_in_field(result_field, &null_value, to, TRUE);
}


unknown's avatar
unknown committed
2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696
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();
}

2697

unknown's avatar
unknown committed
2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709
my_decimal *Item_field::val_decimal_result(my_decimal *decimal_value)
{
  if ((null_value= result_field->is_null()))
    return 0;
  return result_field->val_decimal(decimal_value);
}


bool Item_field::val_bool_result()
{
  if ((null_value= result_field->is_null()))
    return FALSE;
2710
  switch (result_field->result_type()) {
unknown's avatar
unknown committed
2711
  case INT_RESULT:
2712
    return result_field->val_int() != 0;
unknown's avatar
unknown committed
2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724
  case DECIMAL_RESULT:
  {
    my_decimal decimal_value;
    my_decimal *val= result_field->val_decimal(&decimal_value);
    if (val)
      return !my_decimal_is_zero(val);
    return 0;
  }
  case REAL_RESULT:
  case STRING_RESULT:
    return result_field->val_real() != 0.0;
  case ROW_RESULT:
Sergei Golubchik's avatar
Sergei Golubchik committed
2725
  case TIME_RESULT:
Michael Widenius's avatar
Michael Widenius committed
2726
  case IMPOSSIBLE_RESULT:
unknown's avatar
unknown committed
2727
    DBUG_ASSERT(0);
2728
    return 0;                                   // Shut up compiler
unknown's avatar
unknown committed
2729
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
2730
  return 0;
unknown's avatar
unknown committed
2731 2732 2733
}


2734 2735 2736 2737 2738 2739
bool Item_field::is_null_result()
{
  return (null_value=result_field->is_null());
}


2740
bool Item_field::eq(const Item *item, bool binary_cmp) const
unknown's avatar
unknown committed
2741
{
2742 2743
  Item *real_item= ((Item *) item)->real_item();
  if (real_item->type() != FIELD_ITEM)
2744 2745
    return 0;
  
2746
  Item_field *item_field= (Item_field*) real_item;
unknown's avatar
unknown committed
2747
  if (item_field->field && field)
2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760
    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) &&
unknown's avatar
unknown committed
2761
	  (!item_field->table_name || !table_name ||
2762 2763
	   (!my_strcasecmp(table_alias_charset, item_field->table_name,
			   table_name) &&
unknown's avatar
unknown committed
2764
	    (!item_field->db_name || !db_name ||
2765 2766
	     (item_field->db_name && !strcmp(item_field->db_name,
					     db_name))))));
unknown's avatar
unknown committed
2767 2768
}

2769

unknown's avatar
unknown committed
2770 2771 2772 2773
table_map Item_field::used_tables() const
{
  if (field->table->const_table)
    return 0;					// const item
Igor Babaev's avatar
Igor Babaev committed
2774
  return (get_depended_from() ? OUTER_REF_TABLE_BIT : field->table->map);
unknown's avatar
unknown committed
2775 2776
}

2777 2778
table_map Item_field::all_used_tables() const
{
Igor Babaev's avatar
Igor Babaev committed
2779
  return (get_depended_from() ? OUTER_REF_TABLE_BIT : field->table->map);
2780
}
2781

2782 2783
void Item_field::fix_after_pullout(st_select_lex *new_parent, Item **ref)
{
Igor Babaev's avatar
Igor Babaev committed
2784
  if (new_parent == get_depended_from())
2785
    depended_from= NULL;
2786 2787
  if (context)
  {
2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825
    bool need_change= false;
    /*
      Suppose there are nested selects:

       select_id=1
         select_id=2
           select_id=3  <----+
             select_id=4    -+
               select_id=5 --+

      Suppose, pullout operation has moved anything that had select_id=4 or 5
      in to select_id=3.

      If this Item_field had a name resolution context pointing into select_lex
      with id=4 or id=5, it needs a new name resolution context.

      However, it could also be that this object is a part of outer reference:
      Item_ref(Item_field(field in select with select_id=1))).
      - The Item_ref object has a context with select_id=5, and so needs a new
        name resolution context.
      - The Item_field object has a context with select_id=1, and doesn't need
        a new name resolution context.

      So, the following loop walks from Item_field's current context upwards.
      If we find that the select we've been pulled out to is up there, we
      create the new name resolution context. Otherwise, we don't.
    */
    for (Name_resolution_context *ct= context; ct; ct= ct->outer_context)
    {
      if (new_parent == ct->select_lex)
      {
        need_change= true;
        break;
      }
    }
    if (!need_change)
      return;

2826
    Name_resolution_context *ctx= new Name_resolution_context();
2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845
    if (context->select_lex == new_parent)
    {
      /*
        This field was pushed in then pulled out
        (for example left part of IN)
      */
      ctx->outer_context= context->outer_context;
    }
    else if (context->outer_context)
    {
      /* just pull to the upper context */
      ctx->outer_context= context->outer_context->outer_context;
    }
    else
    {
      /* No upper context (merging Derived/VIEW where context chain ends) */
      ctx->outer_context= NULL;
    }
    ctx->table_list= context->first_name_resolution_table;
2846
    ctx->select_lex= new_parent;
2847 2848
    if (context->select_lex == NULL)
      ctx->select_lex= NULL;
2849 2850 2851 2852 2853 2854 2855 2856
    ctx->first_name_resolution_table= context->first_name_resolution_table;
    ctx->last_name_resolution_table=  context->last_name_resolution_table;
    ctx->error_processor=             context->error_processor;
    ctx->error_processor_data=        context->error_processor_data;
    ctx->resolve_in_select_list=      context->resolve_in_select_list;
    ctx->security_ctx=                context->security_ctx;
    this->context=ctx;
  }
2857 2858 2859
}


2860
Item *Item_field::get_tmp_table_item(THD *thd)
2861
{
2862
  Item_field *new_item= new Item_field(thd, this);
2863 2864 2865 2866
  if (new_item)
    new_item->field= new_item->result_field;
  return new_item;
}
unknown's avatar
unknown committed
2867

2868 2869 2870 2871 2872
longlong Item_field::val_int_endpoint(bool left_endp, bool *incl_endp)
{
  longlong res= val_int();
  return null_value? LONGLONG_MIN : res;
}
2873

unknown's avatar
unknown committed
2874
/**
2875
  Create an item from a string we KNOW points to a valid longlong
unknown's avatar
unknown committed
2876
  end \\0 terminated number string.
2877
  This is always 'signed'. Unsigned values are created with Item_uint()
unknown's avatar
unknown committed
2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890
*/

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
2891 2892 2893 2894 2895 2896
my_decimal *Item_int::val_decimal(my_decimal *decimal_value)
{
  int2my_decimal(E_DEC_FATAL_ERROR, value, unsigned_flag, decimal_value);
  return decimal_value;
}

unknown's avatar
unknown committed
2897 2898
String *Item_int::val_str(String *str)
{
unknown's avatar
unknown committed
2899
  // following assert is redundant, because fixed=1 assigned in constructor
2900
  DBUG_ASSERT(fixed == 1);
2901
  str->set_int(value, unsigned_flag, collation.collation);
unknown's avatar
unknown committed
2902 2903 2904
  return str;
}

2905
void Item_int::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
2906
{
unknown's avatar
unknown committed
2907
  // my_charset_bin is good enough for numbers
Gleb Shchepa's avatar
Gleb Shchepa committed
2908
  str_value.set_int(value, unsigned_flag, &my_charset_bin);
unknown's avatar
unknown committed
2909
  str->append(str_value);
unknown's avatar
unknown committed
2910 2911
}

2912

unknown's avatar
unknown committed
2913 2914 2915 2916 2917 2918 2919
Item_uint::Item_uint(const char *str_arg, uint length):
  Item_int(str_arg, length)
{
  unsigned_flag= 1;
}


2920 2921 2922 2923 2924 2925 2926
Item_uint::Item_uint(const char *str_arg, longlong i, uint length):
  Item_int(str_arg, i, length)
{
  unsigned_flag= 1;
}


unknown's avatar
unknown committed
2927 2928
String *Item_uint::val_str(String *str)
{
unknown's avatar
unknown committed
2929
  // following assert is redundant, because fixed=1 assigned in constructor
2930
  DBUG_ASSERT(fixed == 1);
2931
  str->set((ulonglong) value, collation.collation);
unknown's avatar
unknown committed
2932 2933 2934
  return str;
}

2935

2936
void Item_uint::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
2937
{
2938
  // latin1 is good enough for numbers
unknown's avatar
unknown committed
2939 2940
  str_value.set((ulonglong) value, default_charset());
  str->append(str_value);
unknown's avatar
unknown committed
2941 2942
}

unknown's avatar
unknown committed
2943

unknown's avatar
unknown committed
2944 2945 2946 2947 2948 2949 2950
Item_decimal::Item_decimal(const char *str_arg, uint length,
                           CHARSET_INFO *charset)
{
  str2my_decimal(E_DEC_FATAL_ERROR, str_arg, length, charset, &decimal_value);
  name= (char*) str_arg;
  decimals= (uint8) decimal_value.frac;
  fixed= 1;
2951 2952 2953 2954
  max_length= my_decimal_precision_to_length_no_truncation(decimal_value.intg +
                                                           decimals,
                                                           decimals,
                                                           unsigned_flag);
unknown's avatar
unknown committed
2955 2956 2957 2958 2959 2960 2961
}

Item_decimal::Item_decimal(longlong val, bool unsig)
{
  int2my_decimal(E_DEC_FATAL_ERROR, val, unsig, &decimal_value);
  decimals= (uint8) decimal_value.frac;
  fixed= 1;
2962 2963 2964 2965
  max_length= my_decimal_precision_to_length_no_truncation(decimal_value.intg +
                                                           decimals,
                                                           decimals,
                                                           unsigned_flag);
unknown's avatar
unknown committed
2966 2967 2968 2969 2970 2971 2972 2973
}


Item_decimal::Item_decimal(double val, int precision, int scale)
{
  double2my_decimal(E_DEC_FATAL_ERROR, val, &decimal_value);
  decimals= (uint8) decimal_value.frac;
  fixed= 1;
2974 2975 2976 2977
  max_length= my_decimal_precision_to_length_no_truncation(decimal_value.intg +
                                                           decimals,
                                                           decimals,
                                                           unsigned_flag);
unknown's avatar
unknown committed
2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996
}


Item_decimal::Item_decimal(const char *str, const my_decimal *val_arg,
                           uint decimal_par, uint length)
{
  my_decimal2decimal(val_arg, &decimal_value);
  name= (char*) str;
  decimals= (uint8) decimal_par;
  max_length= length;
  fixed= 1;
}


Item_decimal::Item_decimal(my_decimal *value_par)
{
  my_decimal2decimal(value_par, &decimal_value);
  decimals= (uint8) decimal_value.frac;
  fixed= 1;
2997 2998 2999 3000
  max_length= my_decimal_precision_to_length_no_truncation(decimal_value.intg +
                                                           decimals,
                                                           decimals,
                                                           unsigned_flag);
unknown's avatar
unknown committed
3001 3002 3003
}


3004
Item_decimal::Item_decimal(const uchar *bin, int precision, int scale)
unknown's avatar
unknown committed
3005
{
unknown's avatar
unknown committed
3006 3007
  binary2my_decimal(E_DEC_FATAL_ERROR, bin,
                    &decimal_value, precision, scale);
unknown's avatar
unknown committed
3008 3009
  decimals= (uint8) decimal_value.frac;
  fixed= 1;
3010 3011
  max_length= my_decimal_precision_to_length_no_truncation(precision, decimals,
                                                           unsigned_flag);
unknown's avatar
unknown committed
3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030
}


longlong Item_decimal::val_int()
{
  longlong result;
  my_decimal2int(E_DEC_FATAL_ERROR, &decimal_value, unsigned_flag, &result);
  return result;
}

double Item_decimal::val_real()
{
  double result;
  my_decimal2double(E_DEC_FATAL_ERROR, &decimal_value, &result);
  return result;
}

String *Item_decimal::val_str(String *result)
{
3031
  result->set_charset(&my_charset_numeric);
unknown's avatar
unknown committed
3032 3033 3034 3035
  my_decimal2string(E_DEC_FATAL_ERROR, &decimal_value, 0, 0, 0, result);
  return result;
}

3036
void Item_decimal::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
3037 3038 3039 3040 3041 3042
{
  my_decimal2string(E_DEC_FATAL_ERROR, &decimal_value, 0, 0, 0, &str_value);
  str->append(str_value);
}


3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060
bool Item_decimal::eq(const Item *item, bool binary_cmp) const
{
  if (type() == item->type() && item->basic_const_item())
  {
    /*
      We need to cast off const to call val_decimal(). This should
      be OK for a basic constant. Additionally, we can pass 0 as
      a true decimal constant will return its internal decimal
      storage and ignore the argument.
    */
    Item *arg= (Item*) item;
    my_decimal *value= arg->val_decimal(0);
    return !my_decimal_cmp(&decimal_value, value);
  }
  return 0;
}


3061 3062 3063 3064 3065
void Item_decimal::set_decimal_value(my_decimal *value_par)
{
  my_decimal2decimal(value_par, &decimal_value);
  decimals= (uint8) decimal_value.frac;
  unsigned_flag= !decimal_value.sign();
3066 3067 3068 3069
  max_length= my_decimal_precision_to_length_no_truncation(decimal_value.intg +
                                                           decimals,
                                                           decimals,
                                                           unsigned_flag);
3070 3071 3072
}


unknown's avatar
unknown committed
3073
String *Item_float::val_str(String *str)
unknown's avatar
unknown committed
3074
{
unknown's avatar
unknown committed
3075
  // following assert is redundant, because fixed=1 assigned in constructor
3076
  DBUG_ASSERT(fixed == 1);
3077
  str->set_real(value,decimals,&my_charset_bin);
unknown's avatar
unknown committed
3078 3079 3080
  return str;
}

3081

unknown's avatar
unknown committed
3082 3083 3084 3085 3086 3087 3088 3089 3090
my_decimal *Item_float::val_decimal(my_decimal *decimal_value)
{
  // following assert is redundant, because fixed=1 assigned in constructor
  DBUG_ASSERT(fixed == 1);
  double2my_decimal(E_DEC_FATAL_ERROR, value, decimal_value);
  return (decimal_value);
}


3091
void Item_string::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
3092
{
3093 3094 3095
  const bool print_introducer=
    !(query_type & QT_WITHOUT_INTRODUCERS) && is_cs_specified();
  if (print_introducer)
3096 3097 3098 3099 3100
  {
    str->append('_');
    str->append(collation.collation->csname);
  }

unknown's avatar
unknown committed
3101
  str->append('\'');
3102

3103
  if (query_type & QT_TO_SYSTEM_CHARSET)
3104
  {
3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129
    if (print_introducer)
    {
      /*
        Because we wrote an introducer, we must print str_value in its
        charset, and the resulting bytes must not be changed until they
        reach the end client.
        But the caller is asking for system_charset_info, and may later
        convert into character_set_results. That means two conversions: we
        must ensure that they don't change our printed bytes.
        So we print str_value in the least common denominator of the three
        charsets involved: ASCII. Non-ASCII characters are printed as \xFF
        sequences (which is ASCII too). This way, our bytes will not be
        changed.
      */
      ErrConvString tmp(str_value.ptr(), str_value.length(), &my_charset_bin);
      str->append(tmp.ptr());
    }
    else
    {
      if (my_charset_same(str_value.charset(), system_charset_info))
        str_value.print(str); // already in system_charset_info
      else // need to convert
      {
        THD *thd= current_thd;
        LEX_STRING utf8_lex_str;
3130

3131 3132 3133 3134 3135
        thd->convert_string(&utf8_lex_str,
                            system_charset_info,
                            str_value.c_ptr_safe(),
                            str_value.length(),
                            str_value.charset());
3136

3137 3138 3139
        String utf8_str(utf8_lex_str.str,
                        utf8_lex_str.length,
                        system_charset_info);
3140

3141 3142 3143 3144 3145 3146 3147 3148
        utf8_str.print(str);
      }
    }
  }
  else
  {
    // Caller wants a result in the charset of str_value.
    str_value.print(str);
3149 3150
  }

unknown's avatar
unknown committed
3151 3152 3153
  str->append('\'');
}

unknown's avatar
unknown committed
3154

3155
double 
Michael Widenius's avatar
Michael Widenius committed
3156 3157
double_from_string_with_check(CHARSET_INFO *cs, const char *cptr,
                              const char *end)
3158 3159
{
  int error;
Michael Widenius's avatar
Michael Widenius committed
3160
  char *end_of_num= (char*) end;
3161 3162
  double tmp;

Michael Widenius's avatar
Michael Widenius committed
3163 3164 3165
  tmp= my_strntod(cs, (char*) cptr, end - cptr, &end_of_num, &error);
  if (error || (end != end_of_num &&
                !check_if_only_end_space(cs, end_of_num, end)))
3166
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
3167
    ErrConvString err(cptr, end - cptr, cs);
3168
    /*
Sergei Golubchik's avatar
Sergei Golubchik committed
3169
      We can use err.ptr() here as ErrConvString is guranteed to put an
3170 3171
      end \0 here.
    */
3172 3173 3174
    push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
                        ER_TRUNCATED_WRONG_VALUE,
                        ER(ER_TRUNCATED_WRONG_VALUE), "DOUBLE",
3175
                        err.ptr());
3176 3177 3178 3179 3180
  }
  return tmp;
}


3181
double Item_string::val_real()
3182 3183
{
  DBUG_ASSERT(fixed == 1);
3184 3185
  return double_from_string_with_check(str_value.charset(),
                                       str_value.ptr(), 
Michael Widenius's avatar
Michael Widenius committed
3186
                                       str_value.ptr() +
3187
                                       str_value.length());
3188 3189 3190 3191
}


longlong 
Michael Widenius's avatar
Michael Widenius committed
3192 3193
longlong_from_string_with_check(CHARSET_INFO *cs, const char *cptr,
                                const char *end)
3194
{
3195 3196
  int err;
  longlong tmp;
Michael Widenius's avatar
Michael Widenius committed
3197
  char *end_of_num= (char*) end;
3198

Michael Widenius's avatar
Michael Widenius committed
3199
  tmp= (*(cs->cset->strtoll10))(cs, cptr, &end_of_num, &err);
3200 3201 3202 3203
  /*
    TODO: Give error if we wanted a signed integer and we got an unsigned
    one
  */
3204 3205
  if (!current_thd->no_errors &&
      (err > 0 ||
Michael Widenius's avatar
Michael Widenius committed
3206
       (end != end_of_num && !check_if_only_end_space(cs, end_of_num, end))))
3207
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
3208
    ErrConvString err(cptr, end - cptr, cs);
3209 3210 3211
    push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
                        ER_TRUNCATED_WRONG_VALUE,
                        ER(ER_TRUNCATED_WRONG_VALUE), "INTEGER",
3212
                        err.ptr());
3213 3214 3215 3216 3217
  }
  return tmp;
}


3218 3219 3220 3221 3222 3223 3224 3225
/**
  @todo
  Give error if we wanted a signed integer and we got an unsigned one
*/
longlong Item_string::val_int()
{
  DBUG_ASSERT(fixed == 1);
  return longlong_from_string_with_check(str_value.charset(), str_value.ptr(),
Michael Widenius's avatar
Michael Widenius committed
3226
                                         str_value.ptr()+ str_value.length());
3227 3228 3229
}


unknown's avatar
unknown committed
3230 3231
my_decimal *Item_string::val_decimal(my_decimal *decimal_value)
{
3232
  return val_decimal_from_string(decimal_value);
unknown's avatar
unknown committed
3233 3234 3235
}


3236 3237
bool Item_null::eq(const Item *item, bool binary_cmp) const
{ return item->type() == type(); }
unknown's avatar
unknown committed
3238 3239


3240
double Item_null::val_real()
3241
{
unknown's avatar
unknown committed
3242 3243
  // following assert is redundant, because fixed=1 assigned in constructor
  DBUG_ASSERT(fixed == 1);
3244 3245 3246 3247 3248
  null_value=1;
  return 0.0;
}
longlong Item_null::val_int()
{
unknown's avatar
unknown committed
3249 3250
  // following assert is redundant, because fixed=1 assigned in constructor
  DBUG_ASSERT(fixed == 1);
3251 3252 3253
  null_value=1;
  return 0;
}
unknown's avatar
unknown committed
3254 3255
/* ARGSUSED */
String *Item_null::val_str(String *str)
3256
{
unknown's avatar
unknown committed
3257 3258
  // following assert is redundant, because fixed=1 assigned in constructor
  DBUG_ASSERT(fixed == 1);
3259 3260 3261
  null_value=1;
  return 0;
}
unknown's avatar
unknown committed
3262

unknown's avatar
unknown committed
3263 3264 3265 3266 3267
my_decimal *Item_null::val_decimal(my_decimal *decimal_value)
{
  return 0;
}

unknown's avatar
unknown committed
3268

3269 3270 3271 3272 3273 3274
Item *Item_null::safe_charset_converter(CHARSET_INFO *tocs)
{
  collation.set(tocs);
  return this;
}

3275 3276
/*********************** Item_param related ******************************/

unknown's avatar
unknown committed
3277
/** 
3278
  Default function of Item_param::set_param_func, so in case
unknown's avatar
unknown committed
3279
  of malformed packet the server won't SIGSEGV.
3280 3281 3282 3283 3284 3285 3286 3287 3288 3289
*/

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

3290

3291
Item_param::Item_param(uint pos_in_query_arg) :
3292
  state(NO_VALUE),
3293
  item_result_type(STRING_RESULT),
3294 3295
  /* Don't pretend to be a literal unless value for this item is set. */
  item_type(PARAM_ITEM),
3296
  param_type(MYSQL_TYPE_VARCHAR),
3297
  pos_in_query(pos_in_query_arg),
3298
  set_param_func(default_set_param_func),
3299 3300
  limit_clause_param(FALSE),
  m_out_param_info(NULL)
3301 3302
{
  name= (char*) "?";
3303 3304 3305 3306 3307 3308
  /* 
    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;
unknown's avatar
unknown committed
3309 3310
  cnvitem= new Item_string("", 0, &my_charset_bin, DERIVATION_COERCIBLE);
  cnvstr.set(cnvbuf, sizeof(cnvbuf), &my_charset_bin);
3311
}
unknown's avatar
unknown committed
3312

3313

unknown's avatar
unknown committed
3314
void Item_param::set_null()
3315 3316
{
  DBUG_ENTER("Item_param::set_null");
3317
  /* These are cleared after each execution by reset() method */
3318 3319 3320 3321 3322 3323 3324 3325 3326
  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;
3327
  item_type= Item::NULL_ITEM;
3328
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3329 3330
}

3331
void Item_param::set_int(longlong i, uint32 max_length_arg)
3332 3333
{
  DBUG_ENTER("Item_param::set_int");
3334 3335 3336 3337
  value.integer= (longlong) i;
  state= INT_VALUE;
  max_length= max_length_arg;
  decimals= 0;
3338
  maybe_null= 0;
3339
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3340 3341
}

3342
void Item_param::set_double(double d)
3343 3344
{
  DBUG_ENTER("Item_param::set_double");
3345 3346 3347
  value.real= d;
  state= REAL_VALUE;
  max_length= DBL_DIG + 8;
3348
  decimals= NOT_FIXED_DEC;
3349
  maybe_null= 0;
3350
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3351 3352 3353
}


unknown's avatar
unknown committed
3354
/**
unknown's avatar
unknown committed
3355 3356
  Set decimal parameter value from string.

unknown's avatar
unknown committed
3357 3358
  @param str      character string
  @param length   string length
unknown's avatar
unknown committed
3359

unknown's avatar
unknown committed
3360 3361
  @note
    As we use character strings to send decimal values in
unknown's avatar
unknown committed
3362 3363 3364
    binary protocol, we use str2my_decimal to convert it to
    internal decimal value.
*/
3365

unknown's avatar
unknown committed
3366 3367
void Item_param::set_decimal(const char *str, ulong length)
{
3368
  char *end;
unknown's avatar
unknown committed
3369 3370
  DBUG_ENTER("Item_param::set_decimal");

3371 3372
  end= (char*) str+length;
  str2my_decimal(E_DEC_FATAL_ERROR, str, &decimal_value, &end);
unknown's avatar
unknown committed
3373 3374
  state= DECIMAL_VALUE;
  decimals= decimal_value.frac;
3375 3376 3377
  max_length=
    my_decimal_precision_to_length_no_truncation(decimal_value.precision(),
                                                 decimals, unsigned_flag);
unknown's avatar
unknown committed
3378 3379 3380 3381
  maybe_null= 0;
  DBUG_VOID_RETURN;
}

3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392
void Item_param::set_decimal(const my_decimal *dv)
{
  state= DECIMAL_VALUE;

  my_decimal2decimal(dv, &decimal_value);

  decimals= (uint8) decimal_value.frac;
  unsigned_flag= !decimal_value.sign();
  max_length= my_decimal_precision_to_length(decimal_value.intg + decimals,
                                             decimals, unsigned_flag);
}
unknown's avatar
unknown committed
3393

unknown's avatar
unknown committed
3394
/**
3395
  Set parameter value from MYSQL_TIME value.
3396

unknown's avatar
unknown committed
3397 3398 3399
  @param tm              datetime value to set (time_type is ignored)
  @param type            type of datetime value
  @param max_length_arg  max length of datetime value as string
3400

unknown's avatar
unknown committed
3401
  @note
3402 3403 3404 3405 3406
    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.
*/
3407
void Item_param::set_time(MYSQL_TIME *tm, timestamp_type time_type,
3408
                          uint32 max_length_arg)
3409
{ 
3410
  DBUG_ENTER("Item_param::set_time");
3411

3412
  value.time= *tm;
3413
  value.time.time_type= time_type;
3414

3415 3416
  if (value.time.year > 9999 || value.time.month > 12 ||
      value.time.day > 31 ||
3417
      (time_type != MYSQL_TIMESTAMP_TIME && value.time.hour > 23) ||
3418
      value.time.minute > 59 || value.time.second > 59 ||
Sergei Golubchik's avatar
Sergei Golubchik committed
3419
      value.time.second_part > TIME_MAX_SECOND_PART)
3420
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
3421
    ErrConvTime str(&value.time);
3422
    make_truncated_value_warning(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
3423
                                 &str, time_type, 0);
3424 3425 3426
    set_zero_time(&value.time, MYSQL_TIMESTAMP_ERROR);
  }

3427
  state= TIME_VALUE;
3428
  maybe_null= 0;
3429
  max_length= max_length_arg;
Sergei Golubchik's avatar
Sergei Golubchik committed
3430
  decimals= tm->second_part > 0 ? TIME_SECOND_PART_DIGITS : 0;
3431
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3432 3433
}

3434

3435 3436 3437 3438 3439 3440 3441
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.
  */
3442 3443 3444
  uint dummy_errors;
  if (str_value.copy(str, length, &my_charset_bin, &my_charset_bin,
                     &dummy_errors))
3445 3446
    DBUG_RETURN(TRUE);
  state= STRING_VALUE;
unknown's avatar
unknown committed
3447
  max_length= length;
3448
  maybe_null= 0;
3449 3450 3451
  /* 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);
3452 3453 3454
}


3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467
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.
  */
3468 3469 3470 3471 3472 3473 3474 3475 3476 3477
  if (str_value.length() + length > max_long_data_size)
  {
    my_message(ER_UNKNOWN_ERROR,
               "Parameter of prepared statement which is set through "
               "mysql_send_long_data() is longer than "
               "'max_long_data_size' bytes",
               MYF(0));
    DBUG_RETURN(true);
  }

3478 3479 3480
  if (str_value.append(str, length, &my_charset_bin))
    DBUG_RETURN(TRUE);
  state= LONG_DATA_VALUE;
3481
  maybe_null= 0;
3482 3483

  DBUG_RETURN(FALSE);
3484 3485 3486
}


unknown's avatar
unknown committed
3487
/**
3488 3489
  Set parameter value from user variable value.

unknown's avatar
unknown committed
3490 3491
  @param thd   Current thread
  @param entry User variable structure (NULL means use NULL value)
3492

unknown's avatar
unknown committed
3493
  @retval
3494
    0 OK
unknown's avatar
unknown committed
3495
  @retval
unknown's avatar
unknown committed
3496
    1 Out of memory
3497 3498 3499 3500 3501 3502 3503 3504
*/

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;
3505
    unsigned_flag= entry->unsigned_flag;
3506 3507
    if (limit_clause_param)
    {
3508
      bool unused;
3509 3510 3511 3512
      set_int(entry->val_int(&unused), MY_INT64_NUM_DECIMAL_DIGITS);
      item_type= Item::INT_ITEM;
      DBUG_RETURN(!unsigned_flag && value.integer < 0 ? 1 : 0);
    }
3513
    switch (item_result_type) {
unknown's avatar
unknown committed
3514 3515
    case REAL_RESULT:
      set_double(*(double*)entry->value);
3516
      item_type= Item::REAL_ITEM;
3517
      param_type= MYSQL_TYPE_DOUBLE;
unknown's avatar
unknown committed
3518 3519
      break;
    case INT_RESULT:
3520
      set_int(*(longlong*)entry->value, MY_INT64_NUM_DECIMAL_DIGITS);
3521
      item_type= Item::INT_ITEM;
3522
      param_type= MYSQL_TYPE_LONGLONG;
unknown's avatar
unknown committed
3523 3524
      break;
    case STRING_RESULT:
3525
    {
unknown's avatar
unknown committed
3526 3527 3528 3529
      CHARSET_INFO *fromcs= entry->collation.collation;
      CHARSET_INFO *tocs= thd->variables.collation_connection;
      uint32 dummy_offset;

3530 3531
      value.cs_info.character_set_of_placeholder= fromcs;
      value.cs_info.character_set_client= thd->variables.character_set_client;
unknown's avatar
unknown committed
3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544
      /*
        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;
3545
      param_type= MYSQL_TYPE_VARCHAR;
unknown's avatar
unknown committed
3546 3547 3548 3549 3550

      if (set_str((const char *)entry->value, entry->length))
        DBUG_RETURN(1);
      break;
    }
unknown's avatar
unknown committed
3551 3552 3553 3554 3555 3556
    case DECIMAL_RESULT:
    {
      const my_decimal *ent_value= (const my_decimal *)entry->value;
      my_decimal2decimal(ent_value, &decimal_value);
      state= DECIMAL_VALUE;
      decimals= ent_value->frac;
3557 3558 3559
      max_length=
        my_decimal_precision_to_length_no_truncation(ent_value->precision(),
                                                     decimals, unsigned_flag);
3560
      item_type= Item::DECIMAL_ITEM;
3561
      param_type= MYSQL_TYPE_NEWDECIMAL;
unknown's avatar
unknown committed
3562 3563
      break;
    }
Sergei Golubchik's avatar
Sergei Golubchik committed
3564 3565
    case ROW_RESULT:
    case TIME_RESULT:
Michael Widenius's avatar
Michael Widenius committed
3566
    case IMPOSSIBLE_RESULT:
unknown's avatar
unknown committed
3567 3568
      DBUG_ASSERT(0);
      set_null();
3569 3570 3571 3572 3573 3574 3575 3576
    }
  }
  else
    set_null();

  DBUG_RETURN(0);
}

unknown's avatar
unknown committed
3577 3578 3579 3580 3581
/**
  Resets parameter after execution.

  @note
    We clear null_value here instead of setting it in set_* methods,
3582 3583 3584 3585
    because we want more easily handle case for long data.
*/

void Item_param::reset()
3586
{
3587
  DBUG_ENTER("Item_param::reset");
3588 3589 3590 3591 3592
  /* 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);
3593
  str_value_ptr.length(0);
3594
  /*
unknown's avatar
unknown committed
3595
    We must prevent all charset conversions until data has been written
3596
    to the binary log.
3597 3598
  */
  str_value.set_charset(&my_charset_bin);
3599
  collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
3600
  state= NO_VALUE;
3601 3602
  maybe_null= 1;
  null_value= 0;
3603 3604 3605 3606 3607 3608 3609 3610 3611
  /*
    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).
  */
3612
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
3613 3614 3615
}


unknown's avatar
unknown committed
3616
int Item_param::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
3617 3618
{
  field->set_notnull();
3619 3620 3621

  switch (state) {
  case INT_VALUE:
3622
    return field->store(value.integer, unsigned_flag);
3623 3624
  case REAL_VALUE:
    return field->store(value.real);
unknown's avatar
unknown committed
3625 3626
  case DECIMAL_VALUE:
    return field->store_decimal(&decimal_value);
3627
  case TIME_VALUE:
3628
    field->store_time_dec(&value.time, decimals);
3629
    return 0;
3630 3631 3632 3633 3634
  case STRING_VALUE:
  case LONG_DATA_VALUE:
    return field->store(str_value.ptr(), str_value.length(),
                        str_value.charset());
  case NULL_VALUE:
3635
    return set_field_to_null_with_conversions(field, no_conversions);
3636 3637 3638
  case NO_VALUE:
  default:
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
3639
  }
3640
  return 1;
unknown's avatar
unknown committed
3641 3642
}

3643

3644
bool Item_param::get_date(MYSQL_TIME *res, ulonglong fuzzydate)
3645 3646 3647 3648 3649 3650 3651 3652 3653 3654
{
  if (state == TIME_VALUE)
  {
    *res= value.time;
    return 0;
  }
  return Item::get_date(res, fuzzydate);
}


3655
double Item_param::val_real()
unknown's avatar
unknown committed
3656
{
3657 3658 3659 3660 3661
  switch (state) {
  case REAL_VALUE:
    return value.real;
  case INT_VALUE:
    return (double) value.integer;
unknown's avatar
unknown committed
3662 3663 3664 3665 3666 3667
  case DECIMAL_VALUE:
  {
    double result;
    my_decimal2double(E_DEC_FATAL_ERROR, &decimal_value, &result);
    return result;
  }
3668 3669
  case STRING_VALUE:
  case LONG_DATA_VALUE:
3670 3671 3672 3673 3674 3675
  {
    int dummy_err;
    char *end_not_used;
    return my_strntod(str_value.charset(), (char*) str_value.ptr(),
                      str_value.length(), &end_not_used, &dummy_err);
  }
3676 3677 3678 3679 3680
  case TIME_VALUE:
    /*
      This works for example when user says SELECT ?+0.0 and supplies
      time value for the placeholder.
    */
3681
    return ulonglong2double(TIME_to_ulonglong(&value.time));
3682
  case NULL_VALUE:
3683
    return 0.0;
unknown's avatar
unknown committed
3684
  default:
3685
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
3686
  }
3687
  return 0.0;
unknown's avatar
unknown committed
3688 3689
} 

3690

unknown's avatar
unknown committed
3691 3692
longlong Item_param::val_int() 
{ 
3693 3694
  switch (state) {
  case REAL_VALUE:
3695
    return (longlong) rint(value.real);
3696 3697
  case INT_VALUE:
    return value.integer;
unknown's avatar
unknown committed
3698 3699 3700 3701 3702 3703
  case DECIMAL_VALUE:
  {
    longlong i;
    my_decimal2int(E_DEC_FATAL_ERROR, &decimal_value, unsigned_flag, &i);
    return i;
  }
3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714
  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
3715
  default:
3716
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
3717
  }
3718
  return 0;
unknown's avatar
unknown committed
3719 3720
}

3721

unknown's avatar
unknown committed
3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751
my_decimal *Item_param::val_decimal(my_decimal *dec)
{
  switch (state) {
  case DECIMAL_VALUE:
    return &decimal_value;
  case REAL_VALUE:
    double2my_decimal(E_DEC_FATAL_ERROR, value.real, dec);
    return dec;
  case INT_VALUE:
    int2my_decimal(E_DEC_FATAL_ERROR, value.integer, unsigned_flag, dec);
    return dec;
  case STRING_VALUE:
  case LONG_DATA_VALUE:
    string2my_decimal(E_DEC_FATAL_ERROR, &str_value, dec);
    return dec;
  case TIME_VALUE:
  {
    longlong i= (longlong) TIME_to_ulonglong(&value.time);
    int2my_decimal(E_DEC_FATAL_ERROR, i, 0, dec);
    return dec;
  }
  case NULL_VALUE:
    return 0; 
  default:
    DBUG_ASSERT(0);
  }
  return 0;
}


unknown's avatar
unknown committed
3752 3753
String *Item_param::val_str(String* str) 
{ 
3754 3755 3756
  switch (state) {
  case STRING_VALUE:
  case LONG_DATA_VALUE:
3757
    return &str_value_ptr;
3758
  case REAL_VALUE:
3759
    str->set_real(value.real, NOT_FIXED_DEC, &my_charset_bin);
3760 3761 3762
    return str;
  case INT_VALUE:
    str->set(value.integer, &my_charset_bin);
unknown's avatar
unknown committed
3763
    return str;
unknown's avatar
unknown committed
3764 3765 3766 3767 3768
  case DECIMAL_VALUE:
    if (my_decimal2string(E_DEC_FATAL_ERROR, &decimal_value,
                          0, 0, 0, str) <= 1)
      return str;
    return NULL;
3769 3770
  case TIME_VALUE:
  {
3771
    if (str->reserve(MAX_DATE_STRING_REP_LENGTH))
3772
      break;
3773 3774
    str->length((uint) my_TIME_to_str(&value.time, (char*) str->ptr(),
                decimals));
3775
    str->set_charset(&my_charset_bin);
unknown's avatar
unknown committed
3776
    return str;
3777 3778 3779
  }
  case NULL_VALUE:
    return NULL; 
unknown's avatar
unknown committed
3780
  default:
3781
    DBUG_ASSERT(0);
unknown's avatar
unknown committed
3782
  }
3783
  return str;
unknown's avatar
unknown committed
3784
}
3785

unknown's avatar
unknown committed
3786
/**
3787
  Return Param item values in string format, for generating the dynamic 
unknown's avatar
unknown committed
3788 3789 3790 3791 3792 3793 3794
  query used in update/binary logs.

  @todo
    - Change interface and implementation to fill log data in place
    and avoid one more memcpy/alloc between str and log string.
    - In case of error we need to notify replication
    that binary log contains wrong statement 
3795 3796
*/

3797
const String *Item_param::query_val_str(THD *thd, String* str) const
3798
{
3799 3800
  switch (state) {
  case INT_VALUE:
unknown's avatar
unknown committed
3801
    str->set_int(value.integer, unsigned_flag, &my_charset_bin);
3802 3803
    break;
  case REAL_VALUE:
3804
    str->set_real(value.real, NOT_FIXED_DEC, &my_charset_bin);
3805
    break;
unknown's avatar
unknown committed
3806 3807 3808 3809 3810
  case DECIMAL_VALUE:
    if (my_decimal2string(E_DEC_FATAL_ERROR, &decimal_value,
                          0, 0, 0, str) > 1)
      return &my_null_string;
    break;
3811
  case TIME_VALUE:
3812
    {
3813 3814 3815 3816 3817 3818
      char *buf, *ptr;
      str->length(0);
      /*
        TODO: in case of error we need to notify replication
        that binary log contains wrong statement 
      */
3819
      if (str->reserve(MAX_DATE_STRING_REP_LENGTH+3))
3820 3821 3822 3823 3824 3825
        break; 

      /* Create date string inplace */
      buf= str->c_ptr_quick();
      ptr= buf;
      *ptr++= '\'';
3826
      ptr+= (uint) my_TIME_to_str(&value.time, ptr, decimals);
3827 3828 3829
      *ptr++= '\'';
      str->length((uint32) (ptr - buf));
      break;
3830
    }
3831 3832
  case STRING_VALUE:
  case LONG_DATA_VALUE:
3833
    {
3834
      str->length(0);
3835 3836
      append_query_string(thd, value.cs_info.character_set_client, &str_value,
                          str);
3837
      break;
3838
    }
3839 3840 3841 3842
  case NULL_VALUE:
    return &my_null_string;
  default:
    DBUG_ASSERT(0);
3843 3844 3845
  }
  return str;
}
3846 3847


unknown's avatar
unknown committed
3848
/**
3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864
  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 !=
3865
        value.cs_info.character_set_of_placeholder)
3866 3867
    {
      rc= thd->convert_string(&str_value,
3868
                              value.cs_info.character_set_of_placeholder,
3869 3870
                              value.cs_info.final_character_set_of_str_value);
    }
3871 3872 3873 3874
    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 */

3875
    max_length= str_value.numchars() * str_value.charset()->mbmaxlen;
3876 3877 3878

    /* For the strings converted to numeric form within some functions */
    decimals= NOT_FIXED_DEC;
3879 3880 3881 3882 3883 3884
    /*
      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());
3885 3886
    /* Synchronize item charset with value charset */
    collation.set(str_value.charset(), DERIVATION_COERCIBLE);
3887 3888 3889 3890
  }
  return rc;
}

unknown's avatar
unknown committed
3891

3892 3893 3894 3895 3896 3897 3898
bool Item_param::basic_const_item() const
{
  if (state == NO_VALUE || state == TIME_VALUE)
    return FALSE;
  return TRUE;
}

unknown's avatar
unknown committed
3899

3900
Item *
3901
Item_param::clone_item()
3902 3903 3904 3905 3906 3907
{
  /* see comments in the header file */
  switch (state) {
  case NULL_VALUE:
    return new Item_null(name);
  case INT_VALUE:
3908 3909 3910
    return (unsigned_flag ?
            new Item_uint(name, value.integer, max_length) :
            new Item_int(name, value.integer, max_length));
3911
  case REAL_VALUE:
3912
    return new Item_float(name, value.real, decimals, max_length);
3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945
  case STRING_VALUE:
  case LONG_DATA_VALUE:
    return new Item_string(name, str_value.c_ptr_quick(), str_value.length(),
                           str_value.charset());
  case TIME_VALUE:
    break;
  case NO_VALUE:
  default:
    DBUG_ASSERT(0);
  };
  return 0;
}


bool
Item_param::eq(const Item *arg, bool binary_cmp) const
{
  Item *item;
  if (!basic_const_item() || !arg->basic_const_item() || arg->type() != type())
    return FALSE;
  /*
    We need to cast off const to call val_int(). This should be OK for
    a basic constant.
  */
  item= (Item*) arg;

  switch (state) {
  case NULL_VALUE:
    return TRUE;
  case INT_VALUE:
    return value.integer == item->val_int() &&
           unsigned_flag == item->unsigned_flag;
  case REAL_VALUE:
3946
    return value.real == item->val_real();
3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957
  case STRING_VALUE:
  case LONG_DATA_VALUE:
    if (binary_cmp)
      return !stringcmp(&str_value, &item->str_value);
    return !sortcmp(&str_value, &item->str_value, collation.collation);
  default:
    break;
  }
  return FALSE;
}

unknown's avatar
unknown committed
3958 3959
/* End of Item_param related */

3960
void Item_param::print(String *str, enum_query_type query_type)
3961
{
3962
  if (state == NO_VALUE || query_type & QT_NO_DATA_EXPANSION)
3963 3964 3965 3966 3967
  {
    str->append('?');
  }
  else
  {
unknown's avatar
unknown committed
3968
    char buffer[STRING_BUFFER_USUAL_SIZE];
3969 3970
    String tmp(buffer, sizeof(buffer), &my_charset_bin);
    const String *res;
3971
    res= query_val_str(current_thd, &tmp);
3972 3973 3974 3975 3976
    str->append(*res);
  }
}


unknown's avatar
unknown committed
3977 3978 3979 3980
/**
  Preserve the original parameter types and values
  when re-preparing a prepared statement.

3981 3982 3983
  @details Copy parameter type information and conversion
  function pointers from a parameter of the old statement
  to the corresponding parameter of the new one.
unknown's avatar
unknown committed
3984 3985 3986 3987 3988 3989

  Move parameter values from the old parameters to the new
  one. We simply "exchange" the values, which allows
  to save on allocation and character set conversion in
  case a parameter is a string or a blob/clob.

3990 3991 3992 3993
  The old parameter gets the value of this one, which
  ensures that all memory of this parameter is freed
  correctly.

unknown's avatar
unknown committed
3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006
  @param[in]  src   parameter item of the original
                    prepared statement
*/

void
Item_param::set_param_type_and_swap_value(Item_param *src)
{
  unsigned_flag= src->unsigned_flag;
  param_type= src->param_type;
  set_param_func= src->set_param_func;
  item_type= src->item_type;
  item_result_type= src->item_result_type;

4007
  collation.set(src->collation);
unknown's avatar
unknown committed
4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019
  maybe_null= src->maybe_null;
  null_value= src->null_value;
  max_length= src->max_length;
  decimals= src->decimals;
  state= src->state;
  value= src->value;

  decimal_value.swap(src->decimal_value);
  str_value.swap(src->str_value);
  str_value_ptr.swap(src->str_value_ptr);
}

4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036

/**
  This operation is intended to store some item value in Item_param to be
  used later.

  @param thd    thread context
  @param ctx    stored procedure runtime context
  @param it     a pointer to an item in the tree

  @return Error status
    @retval TRUE on error
    @retval FALSE on success
*/

bool
Item_param::set_value(THD *thd, sp_rcontext *ctx, Item **it)
{
4037
  Item *arg= *it;
4038

4039
  if (arg->is_null())
4040 4041 4042 4043 4044 4045 4046
  {
    set_null();
    return FALSE;
  }

  null_value= FALSE;

4047
  switch (arg->result_type()) {
4048 4049 4050 4051
  case STRING_RESULT:
  {
    char str_buffer[STRING_BUFFER_USUAL_SIZE];
    String sv_buffer(str_buffer, sizeof(str_buffer), &my_charset_bin);
4052
    String *sv= arg->val_str(&sv_buffer);
4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067

    if (!sv)
      return TRUE;

    set_str(sv->c_ptr_safe(), sv->length());
    str_value_ptr.set(str_value.ptr(),
                      str_value.length(),
                      str_value.charset());
    collation.set(str_value.charset(), DERIVATION_COERCIBLE);
    decimals= 0;

    break;
  }

  case REAL_RESULT:
4068
    set_double(arg->val_real());
4069 4070 4071
    break;

  case INT_RESULT:
4072
    set_int(arg->val_int(), arg->max_length);
4073 4074 4075 4076 4077
    break;

  case DECIMAL_RESULT:
  {
    my_decimal dv_buf;
4078
    my_decimal *dv= arg->val_decimal(&dv_buf);
4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095

    if (!dv)
      return TRUE;

    set_decimal(dv);
    break;
  }

  default:
    /* That can not happen. */

    DBUG_ASSERT(TRUE);  // Abort in debug mode.

    set_null();         // Set to NULL in release mode.
    return FALSE;
  }

4096 4097
  item_result_type= arg->result_type();
  item_type= arg->type();
4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114
  return FALSE;
}


/**
  Setter of Item_param::m_out_param_info.

  m_out_param_info is used to store information about store routine
  OUT-parameters, such as stored routine name, database, stored routine
  variable name. It is supposed to be set in sp_head::execute() after
  Item_param::set_value() is called.
*/

void
Item_param::set_out_param_info(Send_field *info)
{
  m_out_param_info= info;
4115
  param_type= m_out_param_info->type;
4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160
}


/**
  Getter of Item_param::m_out_param_info.

  m_out_param_info is used to store information about store routine
  OUT-parameters, such as stored routine name, database, stored routine
  variable name. It is supposed to be retrieved in
  Protocol_binary::send_out_parameters() during creation of OUT-parameter
  result set.
*/

const Send_field *
Item_param::get_out_param_info() const
{
  return m_out_param_info;
}


/**
  Fill meta-data information for the corresponding column in a result set.
  If this is an OUT-parameter of a stored procedure, preserve meta-data of
  stored-routine variable.

  @param field container for meta-data to be filled
*/

void Item_param::make_field(Send_field *field)
{
  Item::make_field(field);

  if (!m_out_param_info)
    return;

  /*
    This is an OUT-parameter of stored procedure. We should use
    OUT-parameter info to fill out the names.
  */

  field->db_name= m_out_param_info->db_name;
  field->table_name= m_out_param_info->table_name;
  field->org_table_name= m_out_param_info->org_table_name;
  field->col_name= m_out_param_info->col_name;
  field->org_col_name= m_out_param_info->org_col_name;
4161

4162 4163 4164 4165 4166 4167 4168
  field->length= m_out_param_info->length;
  field->charsetnr= m_out_param_info->charsetnr;
  field->flags= m_out_param_info->flags;
  field->decimals= m_out_param_info->decimals;
  field->type= m_out_param_info->type;
}

4169 4170 4171
/****************************************************************************
  Item_copy
****************************************************************************/
Michael Widenius's avatar
Michael Widenius committed
4172

4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185
Item_copy *Item_copy::create (Item *item)
{
  switch (item->result_type())
  {
    case STRING_RESULT:
      return new Item_copy_string (item);
    case REAL_RESULT: 
      return new Item_copy_float (item);
    case INT_RESULT:
      return item->unsigned_flag ? 
        new Item_copy_uint (item) : new Item_copy_int (item);
    case DECIMAL_RESULT:
      return new Item_copy_decimal (item);
Sergei Golubchik's avatar
Sergei Golubchik committed
4186 4187
    case TIME_RESULT:
    case ROW_RESULT:
Michael Widenius's avatar
Michael Widenius committed
4188
  case IMPOSSIBLE_RESULT:
4189 4190 4191 4192 4193 4194
      DBUG_ASSERT (0);
  }
  /* should not happen */
  return NULL;
}

4195 4196 4197
/****************************************************************************
  Item_copy_string
****************************************************************************/
4198

4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222
double Item_copy_string::val_real()
{
  int err_not_used;
  char *end_not_used;
  return (null_value ? 0.0 :
          my_strntod(str_value.charset(), (char*) str_value.ptr(),
                     str_value.length(), &end_not_used, &err_not_used));
}

longlong Item_copy_string::val_int()
{
  int err;
  return null_value ? LL(0) : my_strntoll(str_value.charset(),str_value.ptr(),
                                          str_value.length(),10, (char**) 0,
                                          &err); 
}


int Item_copy_string::save_in_field(Field *field, bool no_conversions)
{
  return save_str_value_in_field(field, &str_value);
}


unknown's avatar
unknown committed
4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233
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)
{
4234
  // Item_copy_string is used without fix_fields call
unknown's avatar
unknown committed
4235 4236 4237 4238 4239
  if (null_value)
    return (String*) 0;
  return &str_value;
}

unknown's avatar
unknown committed
4240

unknown's avatar
unknown committed
4241 4242 4243 4244
my_decimal *Item_copy_string::val_decimal(my_decimal *decimal_value)
{
  // Item_copy_string is used without fix_fields call
  if (null_value)
4245
    return (my_decimal *) 0;
unknown's avatar
unknown committed
4246 4247 4248 4249 4250
  string2my_decimal(E_DEC_FATAL_ERROR, &str_value, decimal_value);
  return (decimal_value);
}


4251 4252 4253 4254 4255 4256 4257 4258 4259 4260
/****************************************************************************
  Item_copy_int
****************************************************************************/

void Item_copy_int::copy()
{
  cached_value= item->val_int();
  null_value=item->null_value;
}

4261
static int save_int_value_in_field (Field *, longlong, bool, bool);
4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395

int Item_copy_int::save_in_field(Field *field, bool no_conversions)
{
  return save_int_value_in_field(field, cached_value, 
                                 null_value, unsigned_flag);
}


String *Item_copy_int::val_str(String *str)
{
  if (null_value)
    return (String *) 0;

  str->set(cached_value, &my_charset_bin);
  return str;
}


my_decimal *Item_copy_int::val_decimal(my_decimal *decimal_value)
{
  if (null_value)
    return (my_decimal *) 0;

  int2my_decimal(E_DEC_FATAL_ERROR, cached_value, unsigned_flag, decimal_value);
  return decimal_value;
}


/****************************************************************************
  Item_copy_uint
****************************************************************************/

String *Item_copy_uint::val_str(String *str)
{
  if (null_value)
    return (String *) 0;

  str->set((ulonglong) cached_value, &my_charset_bin);
  return str;
}


/****************************************************************************
  Item_copy_float
****************************************************************************/

String *Item_copy_float::val_str(String *str)
{
  if (null_value)
    return (String *) 0;
  else
  {
    double nr= val_real();
    str->set_real(nr,decimals, &my_charset_bin);
    return str;
  }
}


my_decimal *Item_copy_float::val_decimal(my_decimal *decimal_value)
{
  if (null_value)
    return (my_decimal *) 0;
  else
  {
    double nr= val_real();
    double2my_decimal(E_DEC_FATAL_ERROR, nr, decimal_value);
    return decimal_value;
  }
}


int Item_copy_float::save_in_field(Field *field, bool no_conversions)
{
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
  return field->store(cached_value);
}


/****************************************************************************
  Item_copy_decimal
****************************************************************************/

int Item_copy_decimal::save_in_field(Field *field, bool no_conversions)
{
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
  return field->store_decimal(&cached_value);
}


String *Item_copy_decimal::val_str(String *result)
{
  if (null_value)
    return (String *) 0;
  result->set_charset(&my_charset_bin);
  my_decimal2string(E_DEC_FATAL_ERROR, &cached_value, 0, 0, 0, result);
  return result;
}


double Item_copy_decimal::val_real()
{
  if (null_value)
    return 0.0;
  else
  {
    double result;
    my_decimal2double(E_DEC_FATAL_ERROR, &cached_value, &result);
    return result;
  }
}


longlong Item_copy_decimal::val_int()
{
  if (null_value)
    return LL(0);
  else
  {
    longlong result;
    my_decimal2int(E_DEC_FATAL_ERROR, &cached_value, unsigned_flag, &result);
    return result;
  }
}


void Item_copy_decimal::copy()
{
  my_decimal *nr= item->val_decimal(&cached_value);
  if (nr && nr != &cached_value)
4396
    my_decimal2decimal (nr, &cached_value);
4397 4398 4399 4400
  null_value= item->null_value;
}


unknown's avatar
unknown committed
4401
/*
4402
  Functions to convert item to field (for send_result_set_metadata)
unknown's avatar
unknown committed
4403 4404 4405
*/

/* ARGSUSED */
4406
bool Item::fix_fields(THD *thd, Item **ref)
unknown's avatar
unknown committed
4407
{
4408 4409

  // We do not check fields which are fixed during construction
unknown's avatar
unknown committed
4410
  DBUG_ASSERT(fixed == 0 || basic_const_item());
4411
  fixed= 1;
unknown's avatar
unknown committed
4412
  return FALSE;
unknown's avatar
unknown committed
4413 4414
}

unknown's avatar
unknown committed
4415 4416 4417 4418 4419 4420 4421 4422 4423

void Item_ref_null_helper::save_val(Field *to)
{
  DBUG_ASSERT(fixed == 1);
  (*ref)->save_val(to);
  owner->was_null|= null_value= (*ref)->null_value;
}


4424
double Item_ref_null_helper::val_real()
4425
{
4426
  DBUG_ASSERT(fixed == 1);
4427
  double tmp= (*ref)->val_result();
unknown's avatar
unknown committed
4428
  owner->was_null|= null_value= (*ref)->null_value;
4429 4430
  return tmp;
}
4431 4432


4433 4434
longlong Item_ref_null_helper::val_int()
{
4435
  DBUG_ASSERT(fixed == 1);
4436
  longlong tmp= (*ref)->val_int_result();
unknown's avatar
unknown committed
4437
  owner->was_null|= null_value= (*ref)->null_value;
4438 4439
  return tmp;
}
4440 4441


unknown's avatar
unknown committed
4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459
my_decimal *Item_ref_null_helper::val_decimal(my_decimal *decimal_value)
{
  DBUG_ASSERT(fixed == 1);
  my_decimal *val= (*ref)->val_decimal_result(decimal_value);
  owner->was_null|= null_value= (*ref)->null_value;
  return val;
}


bool Item_ref_null_helper::val_bool()
{
  DBUG_ASSERT(fixed == 1);
  bool val= (*ref)->val_bool_result();
  owner->was_null|= null_value= (*ref)->null_value;
  return val;
}


4460 4461
String* Item_ref_null_helper::val_str(String* s)
{
4462
  DBUG_ASSERT(fixed == 1);
4463
  String* tmp= (*ref)->str_result(s);
unknown's avatar
unknown committed
4464
  owner->was_null|= null_value= (*ref)->null_value;
4465 4466
  return tmp;
}
4467 4468


4469
bool Item_ref_null_helper::get_date(MYSQL_TIME *ltime, ulonglong fuzzydate)
4470
{  
unknown's avatar
unknown committed
4471
  return (owner->was_null|= null_value= (*ref)->get_date_result(ltime, fuzzydate));
4472
}
unknown's avatar
unknown committed
4473

unknown's avatar
unknown committed
4474

unknown's avatar
unknown committed
4475 4476 4477
/**
  Mark item and SELECT_LEXs as dependent if item was resolved in
  outer SELECT.
unknown's avatar
unknown committed
4478

unknown's avatar
unknown committed
4479 4480 4481 4482 4483 4484
  @param thd             thread handler
  @param last            select from which current item depend
  @param current         current select
  @param resolved_item   item which was resolved in outer SELECT(for warning)
  @param mark_item       item which should be marked (can be differ in case of
                         substitution)
unknown's avatar
unknown committed
4485 4486
*/

4487
static bool mark_as_dependent(THD *thd, SELECT_LEX *last, SELECT_LEX *current,
4488
                              Item_ident *resolved_item,
4489
                              Item_ident *mark_item)
unknown's avatar
unknown committed
4490
{
Monty's avatar
Monty committed
4491 4492
  DBUG_ENTER("mark_as_dependent");

4493
  /* store pointer on SELECT_LEX from which item is dependent */
unknown's avatar
unknown committed
4494
  if (mark_item && mark_item->can_be_depended)
Monty's avatar
Monty committed
4495 4496
  {
    DBUG_PRINT("info", ("mark_item: %p  lex: %p", mark_item, last));
4497
    mark_item->depended_from= last;
Monty's avatar
Monty committed
4498 4499 4500 4501
  }
  if (current->mark_as_dependent(thd, last,
                                 /** resolved_item psergey-thu **/ mark_item))
    DBUG_RETURN(TRUE);
unknown's avatar
unknown committed
4502
  if (thd->lex->describe & DESCRIBE_EXTENDED)
4503
  {
Monty's avatar
Monty committed
4504 4505 4506 4507
    const char *db_name= (resolved_item->db_name ?
                          resolved_item->db_name : "");
    const char *table_name= (resolved_item->table_name ?
                             resolved_item->table_name : "");
Sergei Golubchik's avatar
Sergei Golubchik committed
4508 4509 4510 4511 4512 4513
    push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_NOTE,
		 ER_WARN_FIELD_RESOLVED, ER(ER_WARN_FIELD_RESOLVED),
                 db_name, (db_name[0] ? "." : ""),
                 table_name, (table_name [0] ? "." : ""),
                 resolved_item->field_name,
                 current->select_number, last->select_number);
4514
  }
Monty's avatar
Monty committed
4515
  DBUG_RETURN(FALSE);
unknown's avatar
unknown committed
4516 4517 4518
}


unknown's avatar
unknown committed
4519 4520 4521
/**
  Mark range of selects and resolved identifier (field/reference)
  item as dependent.
4522

unknown's avatar
unknown committed
4523 4524 4525 4526 4527 4528 4529 4530 4531
  @param thd             thread handler
  @param last_select     select where resolved_item was resolved
  @param current_sel     current select (select where resolved_item was placed)
  @param found_field     field which was found during resolving
  @param found_item      Item which was found during resolving (if resolved
                         identifier belongs to VIEW)
  @param resolved_item   Identifier which was resolved

  @note
4532 4533 4534 4535 4536 4537 4538 4539 4540
    We have to mark all items between current_sel (including) and
    last_select (excluding) as dependend (select before last_select should
    be marked with actual table mask used by resolved item, all other with
    OUTER_REF_TABLE_BIT) and also write dependence information to Item of
    resolved identifier.
*/

void mark_select_range_as_dependent(THD *thd,
                                    SELECT_LEX *last_select,
unknown's avatar
unknown committed
4541
                                    SELECT_LEX *current_sel,
4542 4543 4544 4545 4546 4547 4548 4549 4550 4551
                                    Field *found_field, Item *found_item,
                                    Item_ident *resolved_item)
{
  /*
    Go from current SELECT to SELECT where field was resolved (it
    have to be reachable from current SELECT, because it was already
    done once when we resolved this field and cached result of
    resolving)
  */
  SELECT_LEX *previous_select= current_sel;
unknown's avatar
unknown committed
4552 4553
  for (; previous_select->outer_select() != last_select;
       previous_select= previous_select->outer_select())
4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580
  {
    Item_subselect *prev_subselect_item=
      previous_select->master_unit()->item;
    prev_subselect_item->used_tables_cache|= OUTER_REF_TABLE_BIT;
    prev_subselect_item->const_item_cache= 0;
  }
  {
    Item_subselect *prev_subselect_item=
      previous_select->master_unit()->item;
    Item_ident *dependent= resolved_item;
    if (found_field == view_ref_found)
    {
      Item::Type type= found_item->type();
      prev_subselect_item->used_tables_cache|=
        found_item->used_tables();
      dependent= ((type == Item::REF_ITEM || type == Item::FIELD_ITEM) ?
                  (Item_ident*) found_item :
                  0);
    }
    else
      prev_subselect_item->used_tables_cache|=
        found_field->table->map;
    prev_subselect_item->const_item_cache= 0;
    mark_as_dependent(thd, last_select, current_sel, resolved_item,
                      dependent);
  }
}
4581 4582


unknown's avatar
unknown committed
4583
/**
4584 4585
  Search a GROUP BY clause for a field with a certain name.

unknown's avatar
unknown committed
4586 4587 4588
  Search the GROUP BY list for a column named as find_item. When searching
  preference is given to columns that are qualified with the same table (and
  database) name as the one being searched for.
4589

unknown's avatar
unknown committed
4590 4591
  @param find_item     the item being searched for
  @param group_list    GROUP BY clause
4592

unknown's avatar
unknown committed
4593
  @return
4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604
    - the found item on success
    - NULL if find_item is not in group_list
*/

static Item** find_field_in_group_list(Item *find_item, ORDER *group_list)
{
  const char *db_name;
  const char *table_name;
  const char *field_name;
  ORDER      *found_group= NULL;
  int         found_match_degree= 0;
4605
  char        name_buff[SAFE_NAME_LEN+1];
4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616

  if (find_item->type() == Item::FIELD_ITEM ||
      find_item->type() == Item::REF_ITEM)
  {
    db_name=    ((Item_ident*) find_item)->db_name;
    table_name= ((Item_ident*) find_item)->table_name;
    field_name= ((Item_ident*) find_item)->field_name;
  }
  else
    return NULL;

4617 4618 4619
  if (db_name && lower_case_table_names)
  {
    /* Convert database to lower case for comparison */
4620
    strmake_buf(name_buff, db_name);
4621 4622 4623 4624
    my_casedn_str(files_charset_info, name_buff);
    db_name= name_buff;
  }

4625
  DBUG_ASSERT(field_name != 0);
4626 4627 4628

  for (ORDER *cur_group= group_list ; cur_group ; cur_group= cur_group->next)
  {
4629 4630 4631
    int cur_match_degree= 0;

    /* SELECT list element with explicit alias */
4632
    if ((*(cur_group->item))->name && !table_name &&
4633 4634 4635
        !(*(cur_group->item))->is_autogenerated_name &&
        !my_strcasecmp(system_charset_info,
                       (*(cur_group->item))->name, field_name))
4636
    {
4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648
      ++cur_match_degree;
    }
    /* Reference on the field or view/derived field. */
    else if ((*(cur_group->item))->type() == Item::FIELD_ITEM ||
             (*(cur_group->item))->type() == Item::REF_ITEM )
    {
      Item_ident *cur_field= (Item_ident*) *cur_group->item;
      const char *l_db_name= cur_field->db_name;
      const char *l_table_name= cur_field->table_name;
      const char *l_field_name= cur_field->field_name;

      DBUG_ASSERT(l_field_name != 0);
4649 4650

      if (!my_strcasecmp(system_charset_info,
4651
                         l_field_name, field_name))
4652 4653 4654 4655
        ++cur_match_degree;
      else
        continue;

4656
      if (l_table_name && table_name)
4657 4658
      {
        /* If field_name is qualified by a table name. */
4659
        if (my_strcasecmp(table_alias_charset, l_table_name, table_name))
4660 4661 4662 4663
          /* Same field names, different tables. */
          return NULL;

        ++cur_match_degree;
4664
        if (l_db_name && db_name)
4665 4666
        {
          /* If field_name is also qualified by a database name. */
4667
          if (strcmp(l_db_name, db_name))
4668 4669 4670 4671 4672
            /* Same field names, different databases. */
            return NULL;
          ++cur_match_degree;
        }
      }
4673 4674 4675
    }
    else
      continue;
4676

4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692
    if (cur_match_degree > found_match_degree)
    {
      found_match_degree= cur_match_degree;
      found_group= cur_group;
    }
    else if (found_group && (cur_match_degree == found_match_degree) &&
             !(*(found_group->item))->eq((*(cur_group->item)), 0))
    {
      /*
        If the current resolve candidate matches equally well as the current
        best match, they must reference the same column, otherwise the field
        is ambiguous.
      */
      my_error(ER_NON_UNIQ_ERROR, MYF(0),
               find_item->full_name(), current_thd->where);
      return NULL;
4693 4694 4695 4696 4697 4698 4699 4700 4701 4702
    }
  }

  if (found_group)
    return found_group->item;
  else
    return NULL;
}


unknown's avatar
unknown committed
4703
/**
4704 4705
  Resolve a column reference in a sub-select.

unknown's avatar
unknown committed
4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717
  Resolve a column reference (usually inside a HAVING clause) against the
  SELECT and GROUP BY clauses of the query described by 'select'. The name
  resolution algorithm searches both the SELECT and GROUP BY clauses, and in
  case of a name conflict prefers GROUP BY column names over SELECT names. If
  both clauses contain different fields with the same names, a warning is
  issued that name of 'ref' is ambiguous. We extend ANSI SQL in that when no
  GROUP BY column is found, then a HAVING name is resolved as a possibly
  derived SELECT column. This extension is allowed only if the
  MODE_ONLY_FULL_GROUP_BY sql mode isn't enabled.

  @param thd     current thread
  @param ref     column reference being resolved
4718
  @param select  the select that ref is resolved against
unknown's avatar
unknown committed
4719 4720

  @note
4721 4722
    The resolution procedure is:
    - Search for a column or derived column named col_ref_i [in table T_j]
unknown's avatar
unknown committed
4723
    in the SELECT clause of Q.
4724
    - Search for a column named col_ref_i [in table T_j]
unknown's avatar
unknown committed
4725
    in the GROUP BY clause of Q.
4726
    - If found different columns with the same name in GROUP BY and SELECT
unknown's avatar
unknown committed
4727 4728 4729 4730
    - issue a warning and return the GROUP BY column,
    - otherwise
    - if the MODE_ONLY_FULL_GROUP_BY mode is enabled return error
    - else return the found SELECT column.
4731 4732


unknown's avatar
unknown committed
4733 4734 4735 4736
  @return
    - NULL - there was an error, and the error was already reported
    - not_found_item - the item was not resolved, no error was reported
    - resolved item - if the item was resolved
4737 4738 4739 4740 4741 4742 4743
*/

static Item**
resolve_ref_in_select_and_group(THD *thd, Item_ident *ref, SELECT_LEX *select)
{
  Item **group_by_ref= NULL;
  Item **select_ref= NULL;
4744
  ORDER *group_list= select->group_list.first;
4745 4746
  bool ambiguous_fields= FALSE;
  uint counter;
unknown's avatar
unknown committed
4747
  enum_resolution_type resolution;
4748 4749 4750 4751 4752

  /*
    Search for a column or derived column named as 'ref' in the SELECT
    clause of the current select.
  */
4753 4754
  if (!(select_ref= find_item_in_list(ref, *(select->get_item_list()),
                                      &counter, REPORT_EXCEPT_NOT_FOUND,
unknown's avatar
unknown committed
4755
                                      &resolution)))
4756
    return NULL; /* Some error occurred. */
unknown's avatar
unknown committed
4757 4758
  if (resolution == RESOLVED_AGAINST_ALIAS)
    ref->alias_name_used= TRUE;
4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776

  /* If this is a non-aggregated field inside HAVING, search in GROUP BY. */
  if (select->having_fix_field && !ref->with_sum_func && group_list)
  {
    group_by_ref= find_field_in_group_list(ref, group_list);
    
    /* Check if the fields found in SELECT and GROUP BY are the same field. */
    if (group_by_ref && (select_ref != not_found_item) &&
        !((*group_by_ref)->eq(*select_ref, 0)))
    {
      ambiguous_fields= TRUE;
      push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_WARN, ER_NON_UNIQ_ERROR,
                          ER(ER_NON_UNIQ_ERROR), ref->full_name(),
                          current_thd->where);

    }
  }

4777
  if (thd->variables.sql_mode & MODE_ONLY_FULL_GROUP_BY &&
4778
      select->having_fix_field  &&
4779 4780
      select_ref != not_found_item && !group_by_ref &&
      !ref->alias_name_used)
4781 4782 4783 4784 4785 4786 4787 4788 4789
  {
    /*
      Report the error if fields was found only in the SELECT item list and
      the strict mode is enabled.
    */
    my_error(ER_NON_GROUPING_FIELD_USED, MYF(0),
             ref->name, "HAVING");
    return NULL;
  }
4790 4791 4792 4793
  if (select_ref != not_found_item || group_by_ref)
  {
    if (select_ref != not_found_item && !ambiguous_fields)
    {
4794
      DBUG_ASSERT(*select_ref != 0);
unknown's avatar
unknown committed
4795
      if (!select->ref_pointer_array[counter])
4796
      {
4797 4798
        my_error(ER_ILLEGAL_REFERENCE, MYF(0),
                 ref->name, "forward reference in item list");
4799 4800
        return NULL;
      }
unknown's avatar
unknown committed
4801
      DBUG_ASSERT((*select_ref)->fixed);
4802 4803
      return (select->ref_pointer_array + counter);
    }
unknown's avatar
unknown committed
4804
    if (group_by_ref)
4805
      return group_by_ref;
unknown's avatar
unknown committed
4806 4807
    DBUG_ASSERT(FALSE);
    return NULL; /* So there is no compiler warning. */
4808
  }
unknown's avatar
unknown committed
4809 4810

  return (Item**) not_found_item;
4811 4812 4813
}


4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830
/*
  @brief
  Whether a table belongs to an outer select.

  @param table table to check
  @param select current select

  @details
  Try to find select the table belongs to by ascending the derived tables chain.
*/

static
bool is_outer_table(TABLE_LIST *table, SELECT_LEX *select)
{
  DBUG_ASSERT(table->select_lex != select);
  TABLE_LIST *tl;

4831 4832 4833 4834
  if (table->belong_to_view &&
      table->belong_to_view->select_lex == select)
    return FALSE;

4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845
  for (tl= select->master_unit()->derived;
       tl && tl->is_merged_derived();
       select= tl->select_lex, tl= select->master_unit()->derived)
  {
    if (tl->select_lex == table->select_lex)
      return FALSE;
  }
  return TRUE;
}


unknown's avatar
unknown committed
4846
/**
4847 4848
  Resolve the name of an outer select column reference.

4849 4850 4851 4852 4853 4854
  @param[in] thd             current thread
  @param[in,out] from_field  found field reference or (Field*)not_found_field
  @param[in,out] reference   view column if this item was resolved to a
    view column

  @description
unknown's avatar
unknown committed
4855 4856
  The method resolves the column reference represented by 'this' as a column
  present in outer selects that contain current select.
4857

unknown's avatar
unknown committed
4858 4859 4860 4861 4862
  In prepared statements, because of cache, find_field_in_tables()
  can resolve fields even if they don't belong to current context.
  In this case this method only finds appropriate context and marks
  current select as dependent. The found reference of field should be
  provided in 'from_field'.
4863

4864 4865 4866 4867 4868 4869 4870 4871 4872 4873
  The cache is critical for prepared statements of type:

  SELECT a FROM (SELECT a FROM test.t1) AS s1 NATURAL JOIN t2 AS s2;

  This is internally converted to a join similar to

  SELECT a FROM t1 AS s1,t2 AS s2 WHERE t2.a=t1.a;

  Without the cache, we would on re-prepare not know if 'a' did match
  s1.a or s2.a.
4874

unknown's avatar
unknown committed
4875 4876 4877 4878 4879 4880 4881
  @note
    This is the inner loop of Item_field::fix_fields:
  @code
        for each outer query Q_k beginning from the inner-most one
        {
          search for a column or derived column named col_ref_i
          [in table T_j] in the FROM clause of Q_k;
4882

unknown's avatar
unknown committed
4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894
          if such a column is not found
            Search for a column or derived column named col_ref_i
            [in table T_j] in the SELECT and GROUP clauses of Q_k.
        }
  @endcode

  @retval
    1   column succefully resolved and fix_fields() should continue.
  @retval
    0   column fully fixed and fix_fields() should return FALSE
  @retval
    -1  error occured
4895
*/
unknown's avatar
unknown committed
4896

4897 4898 4899 4900 4901 4902
int
Item_field::fix_outer_field(THD *thd, Field **from_field, Item **reference)
{
  enum_parsing_place place= NO_MATTER;
  bool field_found= (*from_field != not_found_field);
  bool upward_lookup= FALSE;
4903
  TABLE_LIST *table_list;
4904

4905 4906 4907 4908
  /* Calulate the TABLE_LIST for the table */
  table_list= (cached_table ? cached_table :
               field_found && (*from_field) != view_ref_found ?
               (*from_field)->table->pos_in_table_list : 0);
4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919
  /*
    If there are outer contexts (outer selects, but current select is
    not derived table or view) try to resolve this reference in the
    outer contexts.

    We treat each subselect as a separate namespace, so that different
    subselects may contain columns with the same names. The subselects
    are searched starting from the innermost.
  */
  Name_resolution_context *last_checked_context= context;
  Item **ref= (Item **) not_found_item;
4920 4921
  SELECT_LEX *current_sel= (SELECT_LEX *) thd->lex->current_select;
  Name_resolution_context *outer_context= 0;
unknown's avatar
unknown committed
4922
  SELECT_LEX *select= 0;
4923 4924 4925 4926
  /* Currently derived tables cannot be correlated */
  if (current_sel->master_unit()->first_select()->linkage !=
      DERIVED_TABLE_TYPE)
    outer_context= context->outer_context;
4927 4928 4929 4930 4931 4932 4933 4934 4935

  /*
    This assert is to ensure we have an outer contex when *from_field
    is set.
    If this would not be the case, we would assert in mark_as_dependent
    as last_checked_countex == context
  */
  DBUG_ASSERT(outer_context || !*from_field ||
              *from_field == not_found_field);
4936 4937 4938 4939
  for (;
       outer_context;
       outer_context= outer_context->outer_context)
  {
4940
    select= outer_context->select_lex;
4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951
    Item_subselect *prev_subselect_item=
      last_checked_context->select_lex->master_unit()->item;
    last_checked_context= outer_context;
    upward_lookup= TRUE;

    place= prev_subselect_item->parsing_place;
    /*
      If outer_field is set, field was already found by first call
      to find_field_in_tables(). Only need to find appropriate context.
    */
    if (field_found && outer_context->select_lex !=
4952
        table_list->select_lex)
4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970
      continue;
    /*
      In case of a view, find_field_in_tables() writes the pointer to
      the found view field into '*reference', in other words, it
      substitutes this Item_field with the found expression.
    */
    if (field_found || (*from_field= find_field_in_tables(thd, this,
                                          outer_context->
                                            first_name_resolution_table,
                                          outer_context->
                                            last_name_resolution_table,
                                          reference,
                                          IGNORE_EXCEPT_NON_UNIQUE,
                                          TRUE, TRUE)) !=
        not_found_field)
    {
      if (*from_field)
      {
4971 4972 4973 4974 4975 4976 4977
        if (thd->variables.sql_mode & MODE_ONLY_FULL_GROUP_BY &&
            select->cur_pos_in_select_list != UNDEF_POS)
        {
          /*
            As this is an outer field it should be added to the list of
            non aggregated fields of the outer select.
          */
4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995
          if (select->join)
          {
            marker= select->cur_pos_in_select_list;
            select->join->non_agg_fields.push_back(this);
          }
          else
          {
            /*
              join is absent if it is upper SELECT_LEX of non-select
              command
            */
            DBUG_ASSERT(select->master_unit()->outer_select() == NULL &&
                        (thd->lex->sql_command != SQLCOM_SELECT &&
                         thd->lex->sql_command != SQLCOM_UPDATE_MULTI &&
                         thd->lex->sql_command != SQLCOM_DELETE_MULTI &&
                         thd->lex->sql_command != SQLCOM_INSERT_SELECT &&
                         thd->lex->sql_command != SQLCOM_REPLACE_SELECT));
          }
4996
        }
4997 4998 4999 5000
        if (*from_field != view_ref_found)
        {
          prev_subselect_item->used_tables_cache|= (*from_field)->table->map;
          prev_subselect_item->const_item_cache= 0;
5001
          set_field(*from_field);
5002
          if (!last_checked_context->select_lex->having_fix_field &&
5003 5004
              select->group_list.elements &&
              (place == SELECT_LIST || place == IN_HAVING))
5005 5006 5007
          {
            Item_outer_ref *rf;
            /*
5008 5009 5010 5011 5012 5013 5014
              If an outer field is resolved in a grouping select then it
              is replaced for an Item_outer_ref object. Otherwise an
              Item_field object is used.
              The new Item_outer_ref object is saved in the inner_refs_list of
              the outer select. Here it is only created. It can be fixed only
              after the original field has been fixed and this is done in the
              fix_inner_refs() function.
5015
            */
5016 5017
            ;
            if (!(rf= new Item_outer_ref(context, this)))
5018
              return -1;
5019
            thd->change_item_tree(reference, rf);
5020
            select->inner_refs_list.push_back(rf);
5021
            rf->in_sum_func= thd->lex->in_sum_func;
5022
          }
unknown's avatar
unknown committed
5023 5024 5025 5026 5027
          /*
            A reference is resolved to a nest level that's outer or the same as
            the nest level of the enclosing set function : adjust the value of
            max_arg_level for the function if it's needed.
          */
5028
          if (thd->lex->in_sum_func &&
unknown's avatar
unknown committed
5029
              thd->lex->in_sum_func->nest_level >= select->nest_level)
5030
          {
5031
            Item::Type ref_type= (*reference)->type();
5032 5033 5034 5035 5036 5037
            set_if_bigger(thd->lex->in_sum_func->max_arg_level,
                          select->nest_level);
            set_field(*from_field);
            fixed= 1;
            mark_as_dependent(thd, last_checked_context->select_lex,
                              context->select_lex, this,
5038 5039
                              ((ref_type == REF_ITEM ||
                                ref_type == FIELD_ITEM) ?
5040 5041 5042 5043 5044 5045
                               (Item_ident*) (*reference) : 0));
            return 0;
          }
        }
        else
        {
5046
          Item::Type ref_type= (*reference)->type();
5047 5048 5049 5050 5051 5052
          prev_subselect_item->used_tables_cache|=
            (*reference)->used_tables();
          prev_subselect_item->const_item_cache&=
            (*reference)->const_item();
          mark_as_dependent(thd, last_checked_context->select_lex,
                            context->select_lex, this,
5053
                            ((ref_type == REF_ITEM || ref_type == FIELD_ITEM) ?
5054 5055
                             (Item_ident*) (*reference) :
                             0));
5056 5057 5058 5059 5060 5061
          if (thd->lex->in_sum_func &&
              thd->lex->in_sum_func->nest_level >= select->nest_level)
          {
            set_if_bigger(thd->lex->in_sum_func->max_arg_level,
                          select->nest_level);
          }
5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074
          /*
            A reference to a view field had been found and we
            substituted it instead of this Item (find_field_in_tables
            does it by assigning the new value to *reference), so now
            we can return from this function.
          */
          return 0;
        }
      }
      break;
    }

    /* Search in SELECT and GROUP lists of the outer select. */
5075
    if (place != IN_WHERE && place != IN_ON)
5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113
    {
      if (!(ref= resolve_ref_in_select_and_group(thd, this, select)))
        return -1; /* Some error occurred (e.g. ambiguous names). */
      if (ref != not_found_item)
      {
        DBUG_ASSERT(*ref && (*ref)->fixed);
        prev_subselect_item->used_tables_cache|= (*ref)->used_tables();
        prev_subselect_item->const_item_cache&= (*ref)->const_item();
        break;
      }
    }

    /*
      Reference is not found in this select => this subquery depend on
      outer select (or we just trying to find wrong identifier, in this
      case it does not matter which used tables bits we set)
    */
    prev_subselect_item->used_tables_cache|= OUTER_REF_TABLE_BIT;
    prev_subselect_item->const_item_cache= 0;
  }

  DBUG_ASSERT(ref != 0);
  if (!*from_field)
    return -1;
  if (ref == not_found_item && *from_field == not_found_field)
  {
    if (upward_lookup)
    {
      // We can't say exactly what absent table or field
      my_error(ER_BAD_FIELD_ERROR, MYF(0), full_name(), thd->where);
    }
    else
    {
      /* Call find_field_in_tables only to report the error */
      find_field_in_tables(thd, this,
                           context->first_name_resolution_table,
                           context->last_name_resolution_table,
                           reference, REPORT_ALL_ERRORS,
5114
                           !any_privileges, TRUE);
5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134
    }
    return -1;
  }
  else if (ref != not_found_item)
  {
    Item *save;
    Item_ref *rf;

    /* Should have been checked in resolve_ref_in_select_and_group(). */
    DBUG_ASSERT(*ref && (*ref)->fixed);
    /*
      Here, a subset of actions performed by Item_ref::set_properties
      is not enough. So we pass ptr to NULL into Item_[direct]_ref
      constructor, so no initialization is performed, and call 
      fix_fields() below.
    */
    save= *ref;
    *ref= NULL;                             // Don't call set_properties()
    rf= (place == IN_HAVING ?
         new Item_ref(context, ref, (char*) table_name,
unknown's avatar
unknown committed
5135
                      (char*) field_name, alias_name_used) :
5136
         (!select->group_list.elements ?
5137
         new Item_direct_ref(context, ref, (char*) table_name,
5138 5139 5140
                             (char*) field_name, alias_name_used) :
         new Item_outer_ref(context, ref, (char*) table_name,
                            (char*) field_name, alias_name_used)));
5141 5142 5143
    *ref= save;
    if (!rf)
      return -1;
5144 5145 5146 5147 5148 5149

    if (place != IN_HAVING && select->group_list.elements)
    {
      outer_context->select_lex->inner_refs_list.push_back((Item_outer_ref*)rf);
      ((Item_outer_ref*)rf)->in_sum_func= thd->lex->in_sum_func;
    }
5150 5151 5152 5153 5154 5155 5156 5157 5158 5159
    thd->change_item_tree(reference, rf);
    /*
      rf is Item_ref => never substitute other items (in this case)
      during fix_fields() => we can use rf after fix_fields()
    */
    DBUG_ASSERT(!rf->fixed);                // Assured by Item_ref()
    if (rf->fix_fields(thd, reference) || rf->check_cols(1))
      return -1;

    mark_as_dependent(thd, last_checked_context->select_lex,
5160
                      context->select_lex, rf,
5161
                      rf);
unknown's avatar
unknown committed
5162

5163 5164 5165 5166 5167 5168
    return 0;
  }
  else
  {
    mark_as_dependent(thd, last_checked_context->select_lex,
                      context->select_lex,
5169
                      this, (Item_ident*)*reference);
5170 5171 5172
    if (last_checked_context->select_lex->having_fix_field)
    {
      Item_ref *rf;
5173 5174 5175
      rf= new Item_ref(context, (*from_field)->table->s->db.str,
                       (*from_field)->table->alias.c_ptr(),
                       (char*) field_name);
5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192
      if (!rf)
        return -1;
      thd->change_item_tree(reference, rf);
      /*
        rf is Item_ref => never substitute other items (in this case)
        during fix_fields() => we can use rf after fix_fields()
      */
      DBUG_ASSERT(!rf->fixed);                // Assured by Item_ref()
      if (rf->fix_fields(thd, reference) || rf->check_cols(1))
        return -1;
      return 0;
    }
  }
  return 1;
}


unknown's avatar
unknown committed
5193
/**
5194 5195
  Resolve the name of a column reference.

unknown's avatar
unknown committed
5196 5197 5198
  The method resolves the column reference represented by 'this' as a column
  present in one of: FROM clause, SELECT clause, GROUP BY clause of a query
  Q, or in outer queries that contain Q.
5199

unknown's avatar
unknown committed
5200 5201
  The name resolution algorithm used is (where [T_j] is an optional table
  name that qualifies the column name):
5202

unknown's avatar
unknown committed
5203 5204 5205 5206 5207
  @code
    resolve_column_reference([T_j].col_ref_i)
    {
      search for a column or derived column named col_ref_i
      [in table T_j] in the FROM clause of Q;
5208

unknown's avatar
unknown committed
5209 5210
      if such a column is NOT found AND    // Lookup in outer queries.
         there are outer queries
5211
      {
unknown's avatar
unknown committed
5212
        for each outer query Q_k beginning from the inner-most one
5213
        {
unknown's avatar
unknown committed
5214 5215
          search for a column or derived column named col_ref_i
          [in table T_j] in the FROM clause of Q_k;
5216

unknown's avatar
unknown committed
5217 5218 5219
          if such a column is not found
            Search for a column or derived column named col_ref_i
            [in table T_j] in the SELECT and GROUP clauses of Q_k.
5220 5221
        }
      }
unknown's avatar
unknown committed
5222 5223
    }
  @endcode
5224 5225 5226 5227

    Notice that compared to Item_ref::fix_fields, here we first search the FROM
    clause, and then we search the SELECT and GROUP BY clauses.

unknown's avatar
unknown committed
5228 5229 5230 5231 5232
  @param[in]     thd        current thread
  @param[in,out] reference  view column if this item was resolved to a
    view column

  @retval
5233
    TRUE  if error
unknown's avatar
unknown committed
5234
  @retval
5235 5236 5237
    FALSE on success
*/

5238
bool Item_field::fix_fields(THD *thd, Item **reference)
unknown's avatar
unknown committed
5239
{
unknown's avatar
unknown committed
5240
  DBUG_ASSERT(fixed == 0);
5241 5242 5243
  Field *from_field= (Field *)not_found_field;
  bool outer_fixed= false;

5244
  if (!field)					// If field is not checked
unknown's avatar
unknown committed
5245
  {
5246
    TABLE_LIST *table_list;
5247 5248 5249 5250 5251
    /*
      In case of view, find_field_in_tables() write pointer to view field
      expression to 'reference', i.e. it substitute that expression instead
      of this Item_field
    */
unknown's avatar
unknown committed
5252 5253 5254
    if ((from_field= find_field_in_tables(thd, this,
                                          context->first_name_resolution_table,
                                          context->last_name_resolution_table,
5255
                                          reference,
5256 5257 5258
                                          thd->lex->use_only_table_context ?
                                            REPORT_ALL_ERRORS : 
                                            IGNORE_EXCEPT_NON_UNIQUE,
5259
                                          !any_privileges,
5260
                                          TRUE)) ==
5261
	not_found_field)
unknown's avatar
unknown committed
5262
    {
5263
      int ret;
unknown's avatar
unknown committed
5264 5265 5266 5267
      /* Look up in current select's item_list to find aliased fields */
      if (thd->lex->current_select->is_item_list_lookup)
      {
        uint counter;
unknown's avatar
unknown committed
5268
        enum_resolution_type resolution;
unknown's avatar
unknown committed
5269 5270
        Item** res= find_item_in_list(this, thd->lex->current_select->item_list,
                                      &counter, REPORT_EXCEPT_NOT_FOUND,
unknown's avatar
unknown committed
5271
                                      &resolution);
5272 5273
        if (!res)
          return 1;
unknown's avatar
unknown committed
5274 5275
        if (resolution == RESOLVED_AGAINST_ALIAS)
          alias_name_used= TRUE;
5276
        if (res != (Item **)not_found_item)
unknown's avatar
unknown committed
5277
        {
5278 5279 5280
          if ((*res)->type() == Item::FIELD_ITEM)
          {
            /*
5281 5282 5283 5284
              It's an Item_field referencing another Item_field in the select
              list.
              Use the field from the Item_field in the select list and leave
              the Item_field instance in place.
5285
            */
5286

5287
            Field *new_field= (*((Item_field**)res))->field;
5288

5289
            if (new_field == NULL)
5290 5291 5292 5293 5294 5295 5296
            {
              /* The column to which we link isn't valid. */
              my_error(ER_BAD_FIELD_ERROR, MYF(0), (*res)->name, 
                       current_thd->where);
              return(1);
            }

5297
            set_field(new_field);
5298 5299 5300 5301 5302 5303 5304 5305 5306
            return 0;
          }
          else
          {
            /*
              It's not an Item_field in the select list so we must make a new
              Item_ref to point to the Item in the select list and replace the
              Item_field created by the parser with the new Item_ref.
            */
unknown's avatar
unknown committed
5307
            Item_ref *rf= new Item_ref(context, db_name,table_name,field_name);
5308 5309
            if (!rf)
              return 1;
5310 5311 5312
            bool ret= rf->fix_fields(thd, (Item **) &rf) || rf->check_cols(1);
            if (ret)
              return TRUE;
5313 5314 5315 5316 5317
           
            SELECT_LEX *select= thd->lex->current_select;
            thd->change_item_tree(reference,
                                  select->parsing_place == IN_GROUP_BY && 
				  alias_name_used  ?  *rf->ref : rf);
5318 5319

            return FALSE;
5320
          }
5321 5322
        }
      }
5323 5324 5325
      if ((ret= fix_outer_field(thd, &from_field, reference)) < 0)
        goto error;
      outer_fixed= TRUE;
5326 5327
      if (!ret)
        goto mark_non_agg_field;
5328
    }
5329
    else if (!from_field)
5330
      goto error;
5331

5332 5333 5334 5335
    table_list= (cached_table ? cached_table :
                 from_field != view_ref_found ?
                 from_field->table->pos_in_table_list : 0);
    if (!outer_fixed && table_list && table_list->select_lex &&
5336
        context->select_lex &&
5337 5338 5339
        table_list->select_lex != context->select_lex &&
        !context->select_lex->is_merged_child_of(table_list->select_lex) &&
        is_outer_table(table_list, context->select_lex))
5340 5341 5342 5343 5344
    {
      int ret;
      if ((ret= fix_outer_field(thd, &from_field, reference)) < 0)
        goto error;
      outer_fixed= 1;
5345 5346
      if (!ret)
        goto mark_non_agg_field;
5347 5348
    }

Igor Babaev's avatar
Igor Babaev committed
5349 5350 5351 5352 5353
    if (thd->lex->in_sum_func &&
        thd->lex->in_sum_func->nest_level == 
        thd->lex->current_select->nest_level)
      set_if_bigger(thd->lex->in_sum_func->max_arg_level,
                    thd->lex->current_select->nest_level);
unknown's avatar
VIEW  
unknown committed
5354 5355 5356 5357
    /*
      if it is not expression from merged VIEW we will set this field.

      We can leave expression substituted from view for next PS/SP rexecution
5358
      (i.e. do not register this substitution for reverting on cleanup()
unknown's avatar
VIEW  
unknown committed
5359
      (register_item_tree_changing())), because this subtree will be
5360
      fix_field'ed during setup_tables()->setup_underlying() (i.e. before
unknown's avatar
VIEW  
unknown committed
5361 5362 5363 5364 5365
      all other expressions of query, and references on tables which do
      not present in query will not make problems.

      Also we suppose that view can't be changed during PS/SP life.
    */
5366 5367 5368 5369
    if (from_field == view_ref_found)
      return FALSE;

    set_field(from_field);
unknown's avatar
unknown committed
5370
  }
5371
  else if (thd->mark_used_columns != MARK_COLUMNS_NONE)
5372
  {
5373
    TABLE *table= field->table;
5374 5375
    MY_BITMAP *current_bitmap, *other_bitmap;
    if (thd->mark_used_columns == MARK_COLUMNS_READ)
5376
    {
5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390
      current_bitmap= table->read_set;
      other_bitmap=   table->write_set;
    }
    else
    {
      current_bitmap= table->write_set;
      other_bitmap=   table->read_set;
    }
    if (!bitmap_fast_test_and_set(current_bitmap, field->field_index))
    {
      if (!bitmap_is_set(other_bitmap, field->field_index))
      {
        /* First usage of column */
        table->used_fields++;                     // Used to optimize loops
5391
        /* purecov: begin inspected */
5392
        table->covering_keys.intersect(field->part_of_key);
5393
        /* purecov: end */
5394
      }
5395
    }
5396
  }
unknown's avatar
VIEW  
unknown committed
5397 5398 5399 5400
#ifndef NO_EMBEDDED_ACCESS_CHECKS
  if (any_privileges)
  {
    char *db, *tab;
5401 5402
    db=  field->table->s->db.str;
    tab= field->table->s->table_name.str;
unknown's avatar
VIEW  
unknown committed
5403 5404 5405 5406
    if (!(have_privileges= (get_column_grant(thd, &field->table->grant,
                                             db, tab, field_name) &
                            VIEW_ANY_ACL)))
    {
5407
      my_error(ER_COLUMNACCESS_DENIED_ERROR, MYF(0),
5408 5409
               "ANY", thd->security_ctx->priv_user,
               thd->security_ctx->host_or_ip, field_name, tab);
5410
      goto error;
unknown's avatar
VIEW  
unknown committed
5411 5412 5413
    }
  }
#endif
5414
  fixed= 1;
5415 5416
  if (thd->variables.sql_mode & MODE_ONLY_FULL_GROUP_BY &&
      !outer_fixed && !thd->lex->in_sum_func &&
5417 5418
      thd->lex->current_select->cur_pos_in_select_list != UNDEF_POS &&
      thd->lex->current_select->join)
5419
  {
5420
    thd->lex->current_select->join->non_agg_fields.push_back(this);
5421 5422
    marker= thd->lex->current_select->cur_pos_in_select_list;
  }
5423
mark_non_agg_field:
5424 5425 5426 5427 5428 5429
  /*
    table->pos_in_table_list can be 0 when fixing partition functions
    or virtual fields.
  */
  if (fixed && (thd->variables.sql_mode & MODE_ONLY_FULL_GROUP_BY) &&
      field->table->pos_in_table_list)
5430 5431 5432 5433
  {
    /*
      Mark selects according to presence of non aggregated fields.
      Fields from outer selects added to the aggregate function
5434
      outer_fields list as it's unknown at the moment whether it's
5435
      aggregated or not.
5436
      We're using the select lex of the cached table (if present).
5437
    */
5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450
    SELECT_LEX *select_lex;
    if (cached_table)
      select_lex= cached_table->select_lex;
    else if (!(select_lex= field->table->pos_in_table_list->select_lex))
    {
      /*
        This can only happen when there is no real table in the query.
        We are using the field's resolution context. context->select_lex is eee
        safe for use because it's either the SELECT we want to use 
        (the current level) or a stub added by non-SELECT queries.
      */
      select_lex= context->select_lex;
    }
5451
    if (!thd->lex->in_sum_func)
5452
      select_lex->set_non_agg_field_used(true);
5453 5454 5455 5456 5457 5458
    else
    {
      if (outer_fixed)
        thd->lex->in_sum_func->outer_fields.push_back(this);
      else if (thd->lex->in_sum_func->nest_level !=
          thd->lex->current_select->nest_level)
5459
        select_lex->set_non_agg_field_used(true);
5460 5461
    }
  }
5462
  return FALSE;
5463 5464 5465 5466

error:
  context->process_error(thd);
  return TRUE;
unknown's avatar
unknown committed
5467 5468
}

5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483
/*
  @brief
  Mark virtual columns as used in a partitioning expression 
*/

bool Item_field::vcol_in_partition_func_processor(uchar *int_arg)
{
  DBUG_ASSERT(fixed);
  if (field->vcol_info)
  {
    field->vcol_info->mark_as_in_partitioning_expr();
  }
  return FALSE;
}

5484 5485 5486 5487 5488 5489 5490 5491

Item *Item_field::safe_charset_converter(CHARSET_INFO *tocs)
{
  no_const_subst= 1;
  return Item::safe_charset_converter(tocs);
}


unknown's avatar
unknown committed
5492 5493
void Item_field::cleanup()
{
unknown's avatar
unknown committed
5494
  DBUG_ENTER("Item_field::cleanup");
unknown's avatar
unknown committed
5495
  Item_ident::cleanup();
unknown's avatar
unknown committed
5496
  depended_from= NULL;
5497 5498
  /*
    Even if this object was created by direct link to field in setup_wild()
unknown's avatar
unknown committed
5499
    it will be linked correctly next time by name of field and table alias.
5500 5501
    I.e. we can drop 'field'.
   */
5502
  field= result_field= 0;
5503
  item_equal= NULL;
5504
  null_value= FALSE;
5505
  DBUG_VOID_RETURN;
5506
}
unknown's avatar
unknown committed
5507

unknown's avatar
unknown committed
5508 5509
/**
  Find a field among specified multiple equalities.
unknown's avatar
unknown committed
5510

unknown's avatar
unknown committed
5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523
  The function first searches the field among multiple equalities
  of the current level (in the cond_equal->current_level list).
  If it fails, it continues searching in upper levels accessed
  through a pointer cond_equal->upper_levels.
  The search terminates as soon as a multiple equality containing 
  the field is found. 

  @param cond_equal   reference to list of multiple equalities where
                      the field (this object) is to be looked for

  @return
    - First Item_equal containing the field, if success
    - 0, otherwise
unknown's avatar
unknown committed
5524
*/
unknown's avatar
unknown committed
5525

unknown's avatar
unknown committed
5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546
Item_equal *Item_field::find_item_equal(COND_EQUAL *cond_equal)
{
  Item_equal *item= 0;
  while (cond_equal)
  {
    List_iterator_fast<Item_equal> li(cond_equal->current_level);
    while ((item= li++))
    {
      if (item->contains(field))
        return item;
    }
    /* 
      The field is not found in any of the multiple equalities
      of the current level. Look for it in upper levels
    */
    cond_equal= cond_equal->upper_levels;
  }
  return 0;
}


unknown's avatar
unknown committed
5547
/**
Igor Babaev's avatar
Igor Babaev committed
5548
  Check whether a field item can be substituted for an equal item
5549

Igor Babaev's avatar
Igor Babaev committed
5550 5551 5552
  @details
  The function checks whether a substitution of a field item for
  an equal item is valid.
5553

Igor Babaev's avatar
Igor Babaev committed
5554
  @param arg   *arg != NULL <-> the field is in the context
Igor Babaev's avatar
Igor Babaev committed
5555
               where substitution for an equal item is valid
unknown's avatar
unknown committed
5556 5557

  @note
5558
    The following statement is not always true:
unknown's avatar
unknown committed
5559
  @n
5560
    x=y => F(x)=F(x/y).
unknown's avatar
unknown committed
5561
  @n
5562
    This means substitution of an item for an equal item not always
unknown's avatar
unknown committed
5563 5564 5565 5566 5567
    yields an equavalent condition. Here's an example:
    @code
    'a'='a '
    (LENGTH('a')=1) != (LENGTH('a ')=2)
  @endcode
5568 5569
    Such a substitution is surely valid if either the substituted
    field is not of a STRING type or if it is an argument of
unknown's avatar
unknown committed
5570
    a comparison predicate.
5571

unknown's avatar
unknown committed
5572
  @retval
5573
    TRUE   substitution is valid
unknown's avatar
unknown committed
5574
  @retval
5575 5576 5577
    FALSE  otherwise
*/

5578
bool Item_field::subst_argument_checker(uchar **arg)
5579
{
Igor Babaev's avatar
Igor Babaev committed
5580 5581 5582 5583
  return *arg &&
         (*arg == (uchar *) Item::ANY_SUBST ||
          result_type() != STRING_RESULT || 
          (field->flags & BINARY_FLAG));
5584 5585 5586
}


5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604
/**
  Convert a numeric value to a zero-filled string

  @param[in,out]  item   the item to operate on
  @param          field  The field that this value is equated to

  This function converts a numeric value to a string. In this conversion
  the zero-fill flag of the field is taken into account.
  This is required so the resulting string value can be used instead of
  the field reference when propagating equalities.
*/

static void convert_zerofill_number_to_string(Item **item, Field_num *field)
{
  char buff[MAX_FIELD_WIDTH],*pos;
  String tmp(buff,sizeof(buff), field->charset()), *res;

  res= (*item)->val_str(&tmp);
5605 5606 5607 5608 5609 5610 5611 5612
  if ((*item)->is_null())
    *item= new Item_null();
  else
  {
    field->prepend_zeros(res);
    pos= (char *) sql_strmake (res->ptr(), res->length());
    *item= new Item_string(pos, res->length(), field->charset());
  }
5613 5614 5615
}


unknown's avatar
unknown committed
5616
/**
5617
  Set a pointer to the multiple equality the field reference belongs to
unknown's avatar
unknown committed
5618
  (if any).
unknown's avatar
unknown committed
5619

unknown's avatar
unknown committed
5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631
  The function looks for a multiple equality containing the field item
  among those referenced by arg.
  In the case such equality exists the function does the following.
  If the found multiple equality contains a constant, then the field
  reference is substituted for this constant, otherwise it sets a pointer
  to the multiple equality in the field item.


  @param arg    reference to list of multiple equalities where
                the field (this object) is to be looked for

  @note
unknown's avatar
unknown committed
5632
    This function is supposed to be called as a callback parameter in calls
unknown's avatar
unknown committed
5633
    of the compile method.
unknown's avatar
unknown committed
5634

unknown's avatar
unknown committed
5635 5636 5637
  @return
    - pointer to the replacing constant item, if the field item was substituted
    - pointer to the field item, otherwise.
unknown's avatar
unknown committed
5638
*/
unknown's avatar
unknown committed
5639

5640
Item *Item_field::equal_fields_propagator(uchar *arg)
unknown's avatar
unknown committed
5641 5642 5643 5644 5645 5646 5647
{
  if (no_const_subst)
    return this;
  item_equal= find_item_equal((COND_EQUAL *) arg);
  Item *item= 0;
  if (item_equal)
    item= item_equal->get_const();
5648 5649 5650 5651 5652 5653 5654 5655 5656
  /*
    Disable const propagation for items used in different comparison contexts.
    This must be done because, for example, Item_hex_string->val_int() is not
    the same as (Item_hex_string->val_str() in BINARY column)->val_int().
    We cannot simply disable the replacement in a particular context (
    e.g. <bin_col> = <int_col> AND <bin_col> = <hex_string>) since
    Items don't know the context they are in and there are functions like 
    IF (<hex_string>, 'yes', 'no').
  */
5657
  if (!item || !has_compatible_context(item))
unknown's avatar
unknown committed
5658
    item= this;
5659 5660
  else if (field && (field->flags & ZEROFILL_FLAG) && IS_NUM(field->type()))
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
5661
    if (item && (cmp_context == STRING_RESULT || cmp_context == IMPOSSIBLE_RESULT))
5662 5663 5664 5665
      convert_zerofill_number_to_string(&item, (Field_num *)field);
    else
      item= this;
  }
unknown's avatar
unknown committed
5666 5667 5668 5669
  return item;
}


unknown's avatar
unknown committed
5670 5671 5672 5673
/**
  Mark the item to not be part of substitution if it's not a binary item.

  See comments in Arg_comparator::set_compare_func() for details.
5674 5675
*/

5676
bool Item_field::set_no_const_sub(uchar *arg)
5677 5678 5679
{
  if (field->charset() != &my_charset_bin)
    no_const_subst=1;
5680
  return FALSE;
5681 5682 5683
}


unknown's avatar
unknown committed
5684
/**
unknown's avatar
unknown committed
5685
  Replace an Item_field for an equal Item_field that evaluated earlier
unknown's avatar
unknown committed
5686
  (if any).
unknown's avatar
unknown committed
5687

Igor Babaev's avatar
Igor Babaev committed
5688 5689
  If this->item_equal points to some item and coincides with arg then
  the function returns a pointer to an item that is taken from
unknown's avatar
unknown committed
5690 5691 5692 5693 5694 5695 5696
  the very beginning of the item_equal list which the Item_field
  object refers to (belongs to) unless item_equal contains  a constant
  item. In this case the function returns this constant item, 
  (if the substitution does not require conversion).   
  If the Item_field object does not refer any Item_equal object
  'this' is returned .

Igor Babaev's avatar
Igor Babaev committed
5697
  @param arg   NULL or points to so some item of the Item_equal type  
unknown's avatar
unknown committed
5698 5699 5700


  @note
unknown's avatar
unknown committed
5701
    This function is supposed to be called as a callback parameter in calls
Igor Babaev's avatar
Igor Babaev committed
5702
    of the transformer method.
unknown's avatar
unknown committed
5703

unknown's avatar
unknown committed
5704 5705 5706 5707
  @return
    - pointer to a replacement Item_field if there is a better equal item or
      a pointer to a constant equal item;
    - this - otherwise.
unknown's avatar
unknown committed
5708 5709
*/

5710
Item *Item_field::replace_equal_field(uchar *arg)
unknown's avatar
unknown committed
5711
{
5712 5713
  REPLACE_EQUAL_FIELD_ARG* param= (REPLACE_EQUAL_FIELD_ARG*)arg;
  if (item_equal && item_equal == param->item_equal)
unknown's avatar
unknown committed
5714
  {
5715 5716 5717
    Item *const_item= item_equal->get_const();
    if (const_item)
    {
5718
      if (!has_compatible_context(const_item))
5719 5720 5721
        return this;
      return const_item;
    }
5722 5723
    Item_field *subst= 
      (Item_field *)(item_equal->get_first(param->context_tab, this));
Igor Babaev's avatar
Igor Babaev committed
5724 5725
    if (subst)
      subst= (Item_field *) (subst->real_item());
Igor Babaev's avatar
Igor Babaev committed
5726
    if (subst && !field->eq(subst->field))
unknown's avatar
unknown committed
5727
      return subst;
unknown's avatar
unknown committed
5728
  }
unknown's avatar
unknown committed
5729
  return this;
unknown's avatar
unknown committed
5730
}
unknown's avatar
unknown committed
5731

5732

unknown's avatar
unknown committed
5733
void Item::init_make_field(Send_field *tmp_field,
5734
			   enum enum_field_types field_type_arg)
unknown's avatar
unknown committed
5735
{
5736
  char *empty_name= (char*) "";
unknown's avatar
unknown committed
5737
  tmp_field->db_name=		empty_name;
5738 5739 5740 5741
  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;
unknown's avatar
unknown committed
5742
  tmp_field->charsetnr=         collation.collation->number;
5743
  tmp_field->flags=             (maybe_null ? 0 : NOT_NULL_FLAG) | 
5744
                                (my_binary_compare(charset_for_protocol()) ?
5745
                                 BINARY_FLAG : 0);
5746
  tmp_field->type=              field_type_arg;
unknown's avatar
unknown committed
5747 5748
  tmp_field->length=max_length;
  tmp_field->decimals=decimals;
5749 5750
  if (unsigned_flag)
    tmp_field->flags |= UNSIGNED_FLAG;
unknown's avatar
unknown committed
5751 5752
}

unknown's avatar
unknown committed
5753
void Item::make_field(Send_field *tmp_field)
unknown's avatar
unknown committed
5754
{
unknown's avatar
unknown committed
5755
  init_make_field(tmp_field, field_type());
unknown's avatar
unknown committed
5756 5757 5758
}


5759
enum_field_types Item::string_field_type() const
5760
{
unknown's avatar
unknown committed
5761
  enum_field_types f_type= MYSQL_TYPE_VAR_STRING;
5762
  if (max_length >= 16777216)
unknown's avatar
unknown committed
5763
    f_type= MYSQL_TYPE_LONG_BLOB;
5764
  else if (max_length >= 65536)
unknown's avatar
unknown committed
5765
    f_type= MYSQL_TYPE_MEDIUM_BLOB;
unknown's avatar
unknown committed
5766
  return f_type;
5767 5768 5769 5770 5771 5772
}


void Item_empty_string::make_field(Send_field *tmp_field)
{
  init_make_field(tmp_field, string_field_type());
5773 5774
}

unknown's avatar
unknown committed
5775

unknown's avatar
unknown committed
5776
enum_field_types Item::field_type() const
unknown's avatar
unknown committed
5777
{
5778
  switch (result_type()) {
5779
  case STRING_RESULT:  return string_field_type();
5780 5781 5782
  case INT_RESULT:     return MYSQL_TYPE_LONGLONG;
  case DECIMAL_RESULT: return MYSQL_TYPE_NEWDECIMAL;
  case REAL_RESULT:    return MYSQL_TYPE_DOUBLE;
unknown's avatar
unknown committed
5783
  case ROW_RESULT:
Sergei Golubchik's avatar
Sergei Golubchik committed
5784
  case TIME_RESULT:
Michael Widenius's avatar
Michael Widenius committed
5785
  case IMPOSSIBLE_RESULT:
unknown's avatar
unknown committed
5786
    DBUG_ASSERT(0);
5787 5788
    return MYSQL_TYPE_VARCHAR;
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
5789
  return MYSQL_TYPE_VARCHAR;
unknown's avatar
unknown committed
5790 5791
}

5792

5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804
/**
  Verifies that the input string is well-formed according to its character set.
  @param send_error   If true, call my_error if string is not well-formed.

  Will truncate input string if it is not well-formed.

  @return
  If well-formed: input string.
  If not well-formed:
    if strict mode: NULL pointer and we set this Item's value to NULL
    if not strict mode: input string truncated up to last good character
 */
5805
String *Item::check_well_formed_result(String *str, bool send_error)
5806 5807 5808 5809 5810 5811 5812
{
  /* Check whether we got a well-formed string */
  CHARSET_INFO *cs= str->charset();
  int well_formed_error;
  uint wlen= cs->cset->well_formed_len(cs,
                                       str->ptr(), str->ptr() + str->length(),
                                       str->length(), &well_formed_error);
5813
  null_value= false;
5814 5815 5816 5817 5818 5819 5820
  if (wlen < str->length())
  {
    THD *thd= current_thd;
    char hexbuf[7];
    uint diff= str->length() - wlen;
    set_if_smaller(diff, 3);
    octet2hex(hexbuf, str->ptr() + wlen, diff);
5821 5822 5823 5824 5825 5826 5827 5828
    if (send_error)
    {
      my_error(ER_INVALID_CHARACTER_STRING, MYF(0),
               cs->csname,  hexbuf);
      return 0;
    }
    if ((thd->variables.sql_mode &
         (MODE_STRICT_TRANS_TABLES | MODE_STRICT_ALL_TABLES)))
5829 5830 5831 5832 5833 5834 5835 5836
    {
      null_value= 1;
      str= 0;
    }
    else
    {
      str->length(wlen);
    }
Marc Alff's avatar
Marc Alff committed
5837
    push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_WARN, ER_INVALID_CHARACTER_STRING,
5838 5839 5840 5841 5842
                        ER(ER_INVALID_CHARACTER_STRING), cs->csname, hexbuf);
  }
  return str;
}

unknown's avatar
unknown committed
5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885
/*
  Compare two items using a given collation
  
  SYNOPSIS
    eq_by_collation()
    item               item to compare with
    binary_cmp         TRUE <-> compare as binaries
    cs                 collation to use when comparing strings

  DESCRIPTION
    This method works exactly as Item::eq if the collation cs coincides with
    the collation of the compared objects. Otherwise, first the collations that
    differ from cs are replaced for cs and then the items are compared by
    Item::eq. After the comparison the original collations of items are
    restored.

  RETURN
    1    compared items has been detected as equal   
    0    otherwise
*/

bool Item::eq_by_collation(Item *item, bool binary_cmp, CHARSET_INFO *cs)
{
  CHARSET_INFO *save_cs= 0;
  CHARSET_INFO *save_item_cs= 0;
  if (collation.collation != cs)
  {
    save_cs= collation.collation;
    collation.collation= cs;
  }
  if (item->collation.collation != cs)
  {
    save_item_cs= item->collation.collation;
    item->collation.collation= cs;
  }
  bool res= eq(item, binary_cmp);
  if (save_cs)
    collation.collation= save_cs;
  if (save_item_cs)
    item->collation.collation= save_item_cs;
  return res;
}  

5886

unknown's avatar
unknown committed
5887 5888
/**
  Create a field to hold a string value from an item.
5889

5890
  If too_big_for_varchar() create a blob @n
unknown's avatar
unknown committed
5891 5892
  If max_length > 0 create a varchar @n
  If max_length == 0 create a CHAR(0) 
5893

unknown's avatar
unknown committed
5894
  @param table		Table for which the field is created
5895 5896 5897 5898
*/

Field *Item::make_string_field(TABLE *table)
{
unknown's avatar
unknown committed
5899
  Field *field;
5900
  DBUG_ASSERT(collation.collation);
5901 5902 5903 5904
  /* 
    Note: the following check is repeated in 
    subquery_types_allow_materialization():
  */
5905
  if (too_big_for_varchar())
unknown's avatar
unknown committed
5906
    field= new Field_blob(max_length, maybe_null, name,
5907
                          collation.collation, TRUE);
5908
  /* Item_type_holder holds the exact type, do not change it */
5909
  else if (max_length > 0 &&
5910
      (type() != Item::TYPE_HOLDER || field_type() != MYSQL_TYPE_STRING))
unknown's avatar
unknown committed
5911
    field= new Field_varstring(max_length, maybe_null, name, table->s,
5912
                               collation.collation);
unknown's avatar
unknown committed
5913 5914 5915 5916 5917 5918
  else
    field= new Field_string(max_length, maybe_null, name,
                            collation.collation);
  if (field)
    field->init(table);
  return field;
5919 5920 5921
}


unknown's avatar
unknown committed
5922 5923
/**
  Create a field based on field_type of argument.
5924 5925

  For now, this is only used to create a field for
unknown's avatar
unknown committed
5926
  IFNULL(x,something) and time functions
5927

unknown's avatar
unknown committed
5928 5929 5930 5931
  @retval
    NULL  error
  @retval
    \#    Created field
5932 5933
*/

unknown's avatar
unknown committed
5934
Field *Item::tmp_table_field_from_field_type(TABLE *table, bool fixed_length)
5935
{
5936 5937 5938 5939
  /*
    The field functions defines a field to be not null if null_ptr is not 0
  */
  uchar *null_ptr= maybe_null ? (uchar*) "" : 0;
unknown's avatar
unknown committed
5940
  Field *field;
5941 5942

  switch (field_type()) {
5943
  case MYSQL_TYPE_DECIMAL:
unknown's avatar
unknown committed
5944
  case MYSQL_TYPE_NEWDECIMAL:
5945
    field= Field_new_decimal::create_from_item(this);
unknown's avatar
unknown committed
5946
    break;
5947
  case MYSQL_TYPE_TINY:
5948
    field= new Field_tiny((uchar*) 0, max_length, null_ptr, 0, Field::NONE,
unknown's avatar
unknown committed
5949 5950
			  name, 0, unsigned_flag);
    break;
5951
  case MYSQL_TYPE_SHORT:
5952
    field= new Field_short((uchar*) 0, max_length, null_ptr, 0, Field::NONE,
unknown's avatar
unknown committed
5953 5954
			   name, 0, unsigned_flag);
    break;
5955
  case MYSQL_TYPE_LONG:
5956
    field= new Field_long((uchar*) 0, max_length, null_ptr, 0, Field::NONE,
unknown's avatar
unknown committed
5957 5958
			  name, 0, unsigned_flag);
    break;
5959 5960
#ifdef HAVE_LONG_LONG
  case MYSQL_TYPE_LONGLONG:
5961
    field= new Field_longlong((uchar*) 0, max_length, null_ptr, 0, Field::NONE,
unknown's avatar
unknown committed
5962 5963
			      name, 0, unsigned_flag);
    break;
5964
#endif
5965
  case MYSQL_TYPE_FLOAT:
5966
    field= new Field_float((uchar*) 0, max_length, null_ptr, 0, Field::NONE,
unknown's avatar
unknown committed
5967 5968
			   name, decimals, 0, unsigned_flag);
    break;
5969
  case MYSQL_TYPE_DOUBLE:
5970
    field= new Field_double((uchar*) 0, max_length, null_ptr, 0, Field::NONE,
unknown's avatar
unknown committed
5971 5972
			    name, decimals, 0, unsigned_flag);
    break;
5973
  case MYSQL_TYPE_INT24:
5974
    field= new Field_medium((uchar*) 0, max_length, null_ptr, 0, Field::NONE,
unknown's avatar
unknown committed
5975 5976
			    name, 0, unsigned_flag);
    break;
5977
  case MYSQL_TYPE_NEWDATE:
5978
  case MYSQL_TYPE_DATE:
5979
    field= new Field_newdate(0, null_ptr, 0, Field::NONE, name, &my_charset_bin);
unknown's avatar
unknown committed
5980
    break;
5981
  case MYSQL_TYPE_TIME:
5982 5983
    field= new_Field_time(0, null_ptr, 0, Field::NONE, name,
                              decimals, &my_charset_bin);
unknown's avatar
unknown committed
5984
    break;
5985
  case MYSQL_TYPE_TIMESTAMP:
5986 5987
    field= new_Field_timestamp(0, null_ptr, 0,
                               Field::NONE, name, 0, decimals, &my_charset_bin);
unknown's avatar
unknown committed
5988
    break;
5989
  case MYSQL_TYPE_DATETIME:
5990 5991
    field= new_Field_datetime(0, null_ptr, 0, Field::NONE, name,
                              decimals, &my_charset_bin);
unknown's avatar
unknown committed
5992
    break;
5993
  case MYSQL_TYPE_YEAR:
5994
    field= new Field_year((uchar*) 0, max_length, null_ptr, 0, Field::NONE,
unknown's avatar
unknown committed
5995 5996
			  name);
    break;
unknown's avatar
a fix.  
unknown committed
5997
  case MYSQL_TYPE_BIT:
5998
    field= new Field_bit_as_char(NULL, max_length, null_ptr, 0,
unknown's avatar
unknown committed
5999 6000
                                 Field::NONE, name);
    break;
6001
  default:
6002
    /* This case should never be chosen */
6003 6004
    DBUG_ASSERT(0);
    /* If something goes awfully wrong, it's better to get a string than die */
unknown's avatar
unknown committed
6005
  case MYSQL_TYPE_STRING:
6006
  case MYSQL_TYPE_NULL:
6007
    if (fixed_length && !too_big_for_varchar())
unknown's avatar
unknown committed
6008 6009 6010 6011 6012
    {
      field= new Field_string(max_length, maybe_null, name,
                              collation.collation);
      break;
    }
6013
    /* fall through */
6014 6015
  case MYSQL_TYPE_ENUM:
  case MYSQL_TYPE_SET:
6016
  case MYSQL_TYPE_VAR_STRING:
6017
  case MYSQL_TYPE_VARCHAR:
6018
    return make_string_field(table);
6019 6020 6021 6022
  case MYSQL_TYPE_TINY_BLOB:
  case MYSQL_TYPE_MEDIUM_BLOB:
  case MYSQL_TYPE_LONG_BLOB:
  case MYSQL_TYPE_BLOB:
6023
    if (this->type() == Item::TYPE_HOLDER)
unknown's avatar
unknown committed
6024 6025
      field= new Field_blob(max_length, maybe_null, name, collation.collation,
                            1);
6026
    else
unknown's avatar
unknown committed
6027
      field= new Field_blob(max_length, maybe_null, name, collation.collation);
6028
    break;					// Blob handled outside of case
6029
#ifdef HAVE_SPATIAL
unknown's avatar
unknown committed
6030
  case MYSQL_TYPE_GEOMETRY:
6031 6032
    field= new Field_geom(max_length, maybe_null,
                          name, table->s, get_geometry_type());
6033
#endif /* HAVE_SPATIAL */
6034
  }
unknown's avatar
unknown committed
6035 6036 6037
  if (field)
    field->init(table);
  return field;
6038 6039
}

6040

unknown's avatar
unknown committed
6041 6042
/* ARGSUSED */
void Item_field::make_field(Send_field *tmp_field)
unknown's avatar
unknown committed
6043
{
unknown's avatar
unknown committed
6044
  field->make_field(tmp_field);
6045
  DBUG_ASSERT(tmp_field->table_name != 0);
unknown's avatar
unknown committed
6046 6047
  if (name)
    tmp_field->col_name=name;			// Use user supplied name
6048 6049 6050 6051
  if (table_name)
    tmp_field->table_name= table_name;
  if (db_name)
    tmp_field->db_name= db_name;
unknown's avatar
unknown committed
6052 6053
}

6054

unknown's avatar
unknown committed
6055
/**
unknown's avatar
unknown committed
6056
  Save a field value in another field
unknown's avatar
unknown committed
6057

unknown's avatar
unknown committed
6058 6059 6060 6061
  @param from             Field to take the value from
  @param [out] null_value Pointer to the null_value flag to set
  @param to               Field to save the value in
  @param no_conversions   How to deal with NULL value
unknown's avatar
unknown committed
6062

unknown's avatar
unknown committed
6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077
  @details
  The function takes the value of the field 'from' and, if this value
  is not null, it saves in the field 'to' setting off the flag referenced
  by 'null_value'. Otherwise this flag is set on and field 'to' is
  also set to null possibly with conversion.

  @note
  This function is used by the functions Item_field::save_in_field,
  Item_field::save_org_in_field and Item_ref::save_in_field

  @retval FALSE OK
  @retval TRUE  Error

*/

Sergey Petrunya's avatar
Sergey Petrunya committed
6078
static int save_field_in_field(Field *from, bool *null_value,
unknown's avatar
unknown committed
6079
                               Field *to, bool no_conversions)
unknown's avatar
unknown committed
6080
{
6081
  int res;
unknown's avatar
unknown committed
6082 6083
  DBUG_ENTER("save_field_in_field");
  if (from->is_null())
unknown's avatar
unknown committed
6084
  {
unknown's avatar
unknown committed
6085 6086
    (*null_value)= 1;
    DBUG_RETURN(set_field_to_null_with_conversions(to, no_conversions));
unknown's avatar
unknown committed
6087
  }
6088 6089 6090 6091 6092
  to->set_notnull();

  /*
    If we're setting the same field as the one we're reading from there's 
    nothing to do. This can happen in 'SET x = x' type of scenarios.
unknown's avatar
unknown committed
6093 6094
  */
  if (to == from)
unknown's avatar
unknown committed
6095
  {
unknown's avatar
unknown committed
6096 6097
    (*null_value)= 0;
    DBUG_RETURN(0);
unknown's avatar
unknown committed
6098
  }
6099

unknown's avatar
unknown committed
6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118
  res= field_conv(to, from);
  (*null_value)= 0;
  DBUG_RETURN(res);
}


/**
  Set a field's value from a item.
*/

void Item_field::save_org_in_field(Field *to)
{
  save_field_in_field(field, &null_value, to, TRUE);
}


int Item_field::save_in_field(Field *to, bool no_conversions)
{
  return save_field_in_field(result_field, &null_value, to, no_conversions);
unknown's avatar
unknown committed
6119 6120
}

6121

unknown's avatar
unknown committed
6122 6123
/**
  Store null in field.
unknown's avatar
unknown committed
6124

unknown's avatar
unknown committed
6125 6126
  This is used on INSERT.
  Allow NULL to be inserted in timestamp and auto_increment values.
unknown's avatar
unknown committed
6127

unknown's avatar
unknown committed
6128
  @param field		Field where we want to store NULL
unknown's avatar
unknown committed
6129

unknown's avatar
unknown committed
6130 6131 6132 6133 6134
  @retval
    0   ok
  @retval
    1   Field doesn't support NULL values and can't handle 'field = NULL'
*/
unknown's avatar
unknown committed
6135

unknown's avatar
unknown committed
6136
int Item_null::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
6137
{
6138
  return set_field_to_null_with_conversions(field, no_conversions);
unknown's avatar
unknown committed
6139 6140 6141
}


unknown's avatar
unknown committed
6142 6143
/**
  Store null in field.
6144

unknown's avatar
unknown committed
6145
  @param field		Field where we want to store NULL
6146

unknown's avatar
unknown committed
6147
  @retval
unknown's avatar
unknown committed
6148
    0	 OK
unknown's avatar
unknown committed
6149
  @retval
6150
    1	 Field doesn't support NULL values
unknown's avatar
unknown committed
6151
*/
6152

unknown's avatar
unknown committed
6153
int Item_null::save_safe_in_field(Field *field)
unknown's avatar
unknown committed
6154 6155 6156 6157 6158
{
  return set_field_to_null(field);
}


6159 6160 6161
/*
  This implementation can lose str_value content, so if the
  Item uses str_value to store something, it should
6162 6163
  reimplement it's ::save_in_field() as Item_string, for example, does.

Sergei Golubchik's avatar
Sergei Golubchik committed
6164
  Note: all Item_XXX::val_str(str) methods must NOT assume that
6165
  str != str_value. For example, see fix for bug #44743.
6166 6167
*/

unknown's avatar
unknown committed
6168
int Item::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
6169
{
6170
  int error;
6171
  if (result_type() == STRING_RESULT)
unknown's avatar
unknown committed
6172 6173
  {
    String *result;
6174
    CHARSET_INFO *cs= collation.collation;
unknown's avatar
unknown committed
6175
    char buff[MAX_FIELD_WIDTH];		// Alloc buffer for small columns
unknown's avatar
unknown committed
6176
    str_value.set_quick(buff, sizeof(buff), cs);
unknown's avatar
unknown committed
6177 6178
    result=val_str(&str_value);
    if (null_value)
6179
    {
unknown's avatar
unknown committed
6180
      str_value.set_quick(0, 0, cs);
6181
      return set_field_to_null_with_conversions(field, no_conversions);
6182
    }
6183 6184 6185

    /* NOTE: If null_value == FALSE, "result" must be not NULL.  */

unknown's avatar
unknown committed
6186
    field->set_notnull();
6187
    error=field->store(result->ptr(),result->length(),cs);
6188
    str_value.set_quick(0, 0, cs);
unknown's avatar
unknown committed
6189 6190 6191
  }
  else if (result_type() == REAL_RESULT)
  {
6192
    double nr= val_real();
unknown's avatar
unknown committed
6193
    if (null_value)
6194
      return set_field_to_null_with_conversions(field, no_conversions);
unknown's avatar
unknown committed
6195
    field->set_notnull();
6196
    error=field->store(nr);
unknown's avatar
unknown committed
6197
  }
unknown's avatar
unknown committed
6198 6199 6200 6201 6202
  else if (result_type() == DECIMAL_RESULT)
  {
    my_decimal decimal_value;
    my_decimal *value= val_decimal(&decimal_value);
    if (null_value)
unknown's avatar
unknown committed
6203
      return set_field_to_null_with_conversions(field, no_conversions);
unknown's avatar
unknown committed
6204 6205 6206
    field->set_notnull();
    error=field->store_decimal(value);
  }
unknown's avatar
unknown committed
6207 6208 6209 6210
  else
  {
    longlong nr=val_int();
    if (null_value)
6211
      return set_field_to_null_with_conversions(field, no_conversions);
unknown's avatar
unknown committed
6212
    field->set_notnull();
6213
    error=field->store(nr, unsigned_flag);
unknown's avatar
unknown committed
6214
  }
6215
  return error ? error : (field->table->in_use->is_error() ? 1 : 0);
unknown's avatar
unknown committed
6216 6217
}

6218

unknown's avatar
unknown committed
6219
int Item_string::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
6220 6221 6222
{
  String *result;
  result=val_str(&str_value);
6223
  return save_str_value_in_field(field, result);
unknown's avatar
unknown committed
6224 6225
}

6226

6227 6228
static int save_int_value_in_field (Field *field, longlong nr, 
                                    bool null_value, bool unsigned_flag)
unknown's avatar
unknown committed
6229 6230 6231 6232
{
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
6233
  return field->store(nr, unsigned_flag);
unknown's avatar
unknown committed
6234 6235
}

unknown's avatar
unknown committed
6236

6237 6238 6239 6240 6241 6242
int Item_int::save_in_field(Field *field, bool no_conversions)
{
  return save_int_value_in_field (field, val_int(), null_value, unsigned_flag);
}


6243 6244 6245 6246 6247 6248 6249 6250
void Item_datetime::set(longlong packed)
{
  unpack_time(packed, &ltime);
}

int Item_datetime::save_in_field(Field *field, bool no_conversions)
{
  field->set_notnull();
6251
  return field->store_time_dec(&ltime, decimals);
6252 6253 6254 6255 6256 6257 6258
}

longlong Item_datetime::val_int()
{
  return TIME_to_ulonglong(&ltime);
}

unknown's avatar
unknown committed
6259 6260 6261 6262 6263 6264 6265
int Item_decimal::save_in_field(Field *field, bool no_conversions)
{
  field->set_notnull();
  return field->store_decimal(&decimal_value);
}


6266 6267 6268 6269 6270 6271 6272 6273 6274 6275
bool Item_int::eq(const Item *arg, bool binary_cmp) const
{
  /* No need to check for null value as basic constant can't be NULL */
  if (arg->basic_const_item() && arg->type() == type())
  {
    /*
      We need to cast off const to call val_int(). This should be OK for
      a basic constant.
    */
    Item *item= (Item*) arg;
Michael Widenius's avatar
Michael Widenius committed
6276 6277 6278
    return (item->val_int() == value &&
            ((longlong) value >= 0 ||
             (item->unsigned_flag == unsigned_flag)));
6279 6280 6281 6282 6283
  }
  return FALSE;
}


6284
Item *Item_int_with_ref::clone_item()
6285
{
6286
  DBUG_ASSERT(ref->const_item());
6287 6288 6289 6290 6291 6292 6293 6294 6295 6296
  /*
    We need to evaluate the constant to make sure it works with
    parameter markers.
  */
  return (ref->unsigned_flag ?
          new Item_uint(ref->name, ref->val_int(), ref->max_length) :
          new Item_int(ref->name, ref->val_int(), ref->max_length));
}


unknown's avatar
unknown committed
6297 6298
Item_num *Item_uint::neg()
{
6299
  Item_decimal *item= new Item_decimal(value, 1);
unknown's avatar
unknown committed
6300
  return item->neg();
unknown's avatar
unknown committed
6301
}
unknown's avatar
unknown committed
6302

unknown's avatar
unknown committed
6303

6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318
static uint nr_of_decimals(const char *str, const char *end)
{
  const char *decimal_point;

  /* Find position for '.' */
  for (;;)
  {
    if (str == end)
      return 0;
    if (*str == 'e' || *str == 'E')
      return NOT_FIXED_DEC;    
    if (*str++ == '.')
      break;
  }
  decimal_point= str;
6319
  for ( ; str < end && my_isdigit(system_charset_info, *str) ; str++)
6320
    ;
6321
  if (str < end && (*str == 'e' || *str == 'E'))
6322
    return NOT_FIXED_DEC;
6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339
  /*
    QQ:
    The number of decimal digist in fact should be (str - decimal_point - 1).
    But it seems the result of nr_of_decimals() is never used!

    In case of 'e' and 'E' nr_of_decimals returns NOT_FIXED_DEC.
    In case if there is no 'e' or 'E' parser code in sql_yacc.yy
    never calls Item_float::Item_float() - it creates Item_decimal instead.

    The only piece of code where we call Item_float::Item_float(str, len)
    without having 'e' or 'E' is item_xmlfunc.cc, but this Item_float
    never appears in metadata itself. Changing the code to return
    (str - decimal_point - 1) does not make any changes in the test results.

    This should be addressed somehow.
    Looks like a reminder from before real DECIMAL times.
  */
6340 6341 6342 6343
  return (uint) (str - decimal_point);
}


unknown's avatar
unknown committed
6344
/**
6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355
  This function is only called during parsing:
  - when parsing SQL query from sql_yacc.yy
  - when parsing XPath query from item_xmlfunc.cc
  We will signal an error if value is not a true double value (overflow):
  eng: Illegal %s '%-.192s' value found during parsing
  
  Note: the string is NOT null terminated when called from item_xmlfunc.cc,
  so this->name will contain some SQL query tail behind the "length" bytes.
  This is Ok for now, as this Item is never seen in SHOW,
  or EXPLAIN, or anywhere else in metadata.
  Item->name should be fixed to use LEX_STRING eventually.
unknown's avatar
unknown committed
6356 6357
*/

unknown's avatar
unknown committed
6358
Item_float::Item_float(const char *str_arg, uint length)
unknown's avatar
unknown committed
6359 6360
{
  int error;
6361 6362 6363
  char *end_not_used;
  value= my_strntod(&my_charset_bin, (char*) str_arg, length, &end_not_used,
                    &error);
unknown's avatar
unknown committed
6364 6365
  if (error)
  {
6366 6367 6368
    char tmp[NAME_LEN + 1];
    my_snprintf(tmp, sizeof(tmp), "%.*s", length, str_arg);
    my_error(ER_ILLEGAL_VALUE_FOR_TYPE, MYF(0), "double", tmp);
unknown's avatar
unknown committed
6369 6370
  }
  presentation= name=(char*) str_arg;
6371
  decimals=(uint8) nr_of_decimals(str_arg, str_arg+length);
unknown's avatar
unknown committed
6372 6373 6374 6375 6376
  max_length=length;
  fixed= 1;
}


unknown's avatar
unknown committed
6377
int Item_float::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
6378
{
6379
  double nr= val_real();
unknown's avatar
unknown committed
6380 6381 6382
  if (null_value)
    return set_field_to_null(field);
  field->set_notnull();
unknown's avatar
unknown committed
6383
  return field->store(nr);
unknown's avatar
unknown committed
6384 6385
}

6386

6387
void Item_float::print(String *str, enum_query_type query_type)
6388 6389 6390 6391 6392 6393 6394 6395
{
  if (presentation)
  {
    str->append(presentation);
    return;
  }
  char buffer[20];
  String num(buffer, sizeof(buffer), &my_charset_bin);
6396
  num.set_real(value, decimals, &my_charset_bin);
6397 6398 6399 6400
  str->append(num);
}


unknown's avatar
unknown committed
6401 6402 6403 6404 6405
/*
  hex item
  In string context this is a binary string.
  In number context this is a longlong value.
*/
unknown's avatar
unknown committed
6406

6407
bool Item_float::eq(const Item *arg, bool binary_cmp) const
6408 6409 6410 6411 6412 6413 6414 6415
{
  if (arg->basic_const_item() && arg->type() == type())
  {
    /*
      We need to cast off const to call val_int(). This should be OK for
      a basic constant.
    */
    Item *item= (Item*) arg;
6416
    return item->val_real() == value;
6417 6418 6419 6420
  }
  return FALSE;
}

unknown's avatar
unknown committed
6421

unknown's avatar
unknown committed
6422
inline uint char_val(char X)
unknown's avatar
unknown committed
6423 6424 6425 6426 6427 6428
{
  return (uint) (X >= '0' && X <= '9' ? X-'0' :
		 X >= 'A' && X <= 'Z' ? X-'A'+10 :
		 X-'a'+10);
}

Georgi Kodinov's avatar
Georgi Kodinov committed
6429

Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6430
void Item_hex_constant::hex_string_init(const char *str, uint str_length)
unknown's avatar
unknown committed
6431 6432 6433 6434
{
  max_length=(str_length+1)/2;
  char *ptr=(char*) sql_alloc(max_length+1);
  if (!ptr)
Georgi Kodinov's avatar
Georgi Kodinov committed
6435 6436
  {
    str_value.set("", 0, &my_charset_bin);
unknown's avatar
unknown committed
6437
    return;
Georgi Kodinov's avatar
Georgi Kodinov committed
6438
  }
unknown's avatar
unknown committed
6439
  str_value.set(ptr,max_length,&my_charset_bin);
unknown's avatar
unknown committed
6440 6441 6442 6443 6444 6445 6446 6447 6448
  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
6449
  collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
unknown's avatar
unknown committed
6450
  fixed= 1;
unknown's avatar
unknown committed
6451
  unsigned_flag= 1;
unknown's avatar
unknown committed
6452 6453
}

Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6454
longlong Item_hex_hybrid::val_int()
unknown's avatar
unknown committed
6455
{
unknown's avatar
unknown committed
6456
  // following assert is redundant, because fixed=1 assigned in constructor
6457
  DBUG_ASSERT(fixed == 1);
unknown's avatar
unknown committed
6458 6459 6460 6461 6462 6463 6464 6465 6466 6467
  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;
}


Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6468
int Item_hex_hybrid::save_in_field(Field *field, bool no_conversions)
unknown's avatar
unknown committed
6469 6470 6471
{
  field->set_notnull();
  if (field->result_type() == STRING_RESULT)
6472 6473 6474 6475 6476
    return field->store(str_value.ptr(), str_value.length(), 
                        collation.collation);

  ulonglong nr;
  uint32 length= str_value.length();
6477 6478 6479
  if (!length)
    return 1;

6480
  if (length > 8)
unknown's avatar
unknown committed
6481
  {
6482 6483
    nr= field->flags & UNSIGNED_FLAG ? ULONGLONG_MAX : LONGLONG_MAX;
    goto warn;
unknown's avatar
unknown committed
6484
  }
6485 6486
  nr= (ulonglong) val_int();
  if ((length == 8) && !(field->flags & UNSIGNED_FLAG) && (nr > LONGLONG_MAX))
unknown's avatar
unknown committed
6487
  {
6488 6489
    nr= LONGLONG_MAX;
    goto warn;
unknown's avatar
unknown committed
6490
  }
unknown's avatar
unknown committed
6491
  return field->store((longlong) nr, TRUE);  // Assume hex numbers are unsigned
6492 6493

warn:
unknown's avatar
unknown committed
6494
  if (!field->store((longlong) nr, TRUE))
6495 6496 6497
    field->set_warning(MYSQL_ERROR::WARN_LEVEL_WARN, ER_WARN_DATA_OUT_OF_RANGE,
                       1);
  return 1;
unknown's avatar
unknown committed
6498 6499 6500
}


Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6501
void Item_hex_hybrid::print(String *str, enum_query_type query_type)
6502
{
Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6503 6504
  uint32 len= min(str_value.length(), sizeof(longlong));
  const char *ptr= str_value.ptr() + str_value.length() - len;
6505
  str->append("0x");
Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6506
  str->append_hex(ptr, len);
6507 6508 6509
}


Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6510
void Item_hex_string::print(String *str, enum_query_type query_type)
6511
{
Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6512 6513 6514 6515 6516 6517 6518 6519 6520 6521
  str->append("X'");
  str->append_hex(str_value.ptr(), str_value.length());
  str->append("'");
}


bool Item_hex_constant::eq(const Item *arg, bool binary_cmp) const
{
  if (arg->basic_const_item() && arg->type() == type() &&
      arg->cast_to_int_type() == cast_to_int_type())
6522 6523 6524 6525 6526 6527 6528 6529
  {
    if (binary_cmp)
      return !stringcmp(&str_value, &arg->str_value);
    return !sortcmp(&str_value, &arg->str_value, collation.collation);
  }
  return FALSE;
}

unknown's avatar
unknown committed
6530

Alexander Barkov's avatar
The bug  
Alexander Barkov committed
6531
Item *Item_hex_constant::safe_charset_converter(CHARSET_INFO *tocs)
unknown's avatar
unknown committed
6532 6533 6534 6535 6536 6537 6538
{
  Item_string *conv;
  String tmp, *str= val_str(&tmp);

  if (!(conv= new Item_string(str->ptr(), str->length(), tocs)))
    return NULL;
  conv->str_value.copy();
6539
  conv->str_value.mark_as_const();
unknown's avatar
unknown committed
6540 6541 6542 6543
  return conv;
}


unknown's avatar
unknown committed
6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560
/*
  bin item.
  In string context this is a binary string.
  In number context this is a longlong value.
*/
  
Item_bin_string::Item_bin_string(const char *str, uint str_length)
{
  const char *end= str + str_length - 1;
  uchar bits= 0;
  uint power= 1;

  max_length= (str_length + 7) >> 3;
  char *ptr= (char*) sql_alloc(max_length + 1);
  if (!ptr)
    return;
  str_value.set(ptr, max_length, &my_charset_bin);
Gleb Shchepa's avatar
Gleb Shchepa committed
6561 6562

  if (max_length > 0)
unknown's avatar
unknown committed
6563
  {
Gleb Shchepa's avatar
Gleb Shchepa committed
6564 6565 6566
    ptr+= max_length - 1;
    ptr[1]= 0;                     // Set end null for string
    for (; end >= str; end--)
unknown's avatar
unknown committed
6567
    {
Gleb Shchepa's avatar
Gleb Shchepa committed
6568 6569 6570 6571 6572 6573 6574 6575 6576
      if (power == 256)
      {
        power= 1;
        *ptr--= bits;
        bits= 0;
      }
      if (*end == '1')
        bits|= power;
      power<<= 1;
unknown's avatar
unknown committed
6577
    }
Gleb Shchepa's avatar
Gleb Shchepa committed
6578
    *ptr= (char) bits;
unknown's avatar
unknown committed
6579
  }
Gleb Shchepa's avatar
Gleb Shchepa committed
6580 6581 6582
  else
    ptr[0]= 0;

unknown's avatar
unknown committed
6583 6584 6585 6586 6587
  collation.set(&my_charset_bin, DERIVATION_COERCIBLE);
  fixed= 1;
}


unknown's avatar
unknown committed
6588 6589
/**
  Pack data in buffer for sending.
unknown's avatar
unknown committed
6590 6591 6592
*/

bool Item_null::send(Protocol *protocol, String *packet)
unknown's avatar
unknown committed
6593
{
unknown's avatar
unknown committed
6594
  return protocol->store_null();
unknown's avatar
unknown committed
6595 6596
}

unknown's avatar
unknown committed
6597 6598
/**
  This is only called from items that is not of type item_field.
unknown's avatar
unknown committed
6599 6600
*/

unknown's avatar
unknown committed
6601
bool Item::send(Protocol *protocol, String *buffer)
unknown's avatar
unknown committed
6602
{
6603
  bool UNINIT_VAR(result);                       // Will be set if null_value == 0
6604
  enum_field_types f_type;
unknown's avatar
unknown committed
6605

6606
  switch ((f_type=field_type())) {
unknown's avatar
unknown committed
6607
  default:
6608 6609 6610 6611 6612 6613 6614 6615 6616
  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:
unknown's avatar
unknown committed
6617 6618
  case MYSQL_TYPE_STRING:
  case MYSQL_TYPE_VAR_STRING:
6619
  case MYSQL_TYPE_VARCHAR:
unknown's avatar
unknown committed
6620
  case MYSQL_TYPE_BIT:
unknown's avatar
unknown committed
6621
  case MYSQL_TYPE_NEWDECIMAL:
unknown's avatar
unknown committed
6622 6623 6624
  {
    String *res;
    if ((res=val_str(buffer)))
6625 6626
    {
      DBUG_ASSERT(!null_value);
6627
      result= protocol->store(res->ptr(),res->length(),res->charset());
6628
    }
6629 6630 6631 6632
    else
    {
      DBUG_ASSERT(null_value);
    }
unknown's avatar
unknown committed
6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643
    break;
  }
  case MYSQL_TYPE_TINY:
  {
    longlong nr;
    nr= val_int();
    if (!null_value)
      result= protocol->store_tiny(nr);
    break;
  }
  case MYSQL_TYPE_SHORT:
unknown's avatar
unknown committed
6644
  case MYSQL_TYPE_YEAR:
unknown's avatar
unknown committed
6645 6646 6647 6648 6649 6650 6651
  {
    longlong nr;
    nr= val_int();
    if (!null_value)
      result= protocol->store_short(nr);
    break;
  }
6652
  case MYSQL_TYPE_INT24:
unknown's avatar
unknown committed
6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668
  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
6669 6670 6671
  case MYSQL_TYPE_FLOAT:
  {
    float nr;
6672
    nr= (float) val_real();
unknown's avatar
unknown committed
6673 6674 6675 6676
    if (!null_value)
      result= protocol->store(nr, decimals, buffer);
    break;
  }
unknown's avatar
unknown committed
6677 6678
  case MYSQL_TYPE_DOUBLE:
  {
6679
    double nr= val_real();
unknown's avatar
unknown committed
6680 6681 6682 6683 6684 6685
    if (!null_value)
      result= protocol->store(nr, decimals, buffer);
    break;
  }
  case MYSQL_TYPE_DATETIME:
  case MYSQL_TYPE_DATE:
6686
  case MYSQL_TYPE_TIMESTAMP:
unknown's avatar
unknown committed
6687
  {
6688
    MYSQL_TIME tm;
6689
    get_date(&tm, sql_mode_for_dates());
unknown's avatar
unknown committed
6690 6691
    if (!null_value)
    {
6692
      if (f_type == MYSQL_TYPE_DATE)
unknown's avatar
unknown committed
6693 6694
	return protocol->store_date(&tm);
      else
6695
	result= protocol->store(&tm, decimals);
unknown's avatar
unknown committed
6696 6697 6698 6699 6700
    }
    break;
  }
  case MYSQL_TYPE_TIME:
  {
6701
    MYSQL_TIME tm;
unknown's avatar
unknown committed
6702 6703
    get_time(&tm);
    if (!null_value)
6704
      result= protocol->store_time(&tm, decimals);
unknown's avatar
unknown committed
6705 6706 6707 6708 6709 6710
    break;
  }
  }
  if (null_value)
    result= protocol->store_null();
  return result;
unknown's avatar
unknown committed
6711 6712
}

unknown's avatar
unknown committed
6713

6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733
/**
  Check if an item is a constant one and can be cached.

  @param arg [out] TRUE <=> Cache this item.

  @return TRUE  Go deeper in item tree.
  @return FALSE Don't go deeper in item tree.
*/

bool Item::cache_const_expr_analyzer(uchar **arg)
{
  bool *cache_flag= (bool*)*arg;
  if (!*cache_flag)
  {
    Item *item= real_item();
    /*
      Cache constant items unless it's a basic constant, constant field or
      a subselect (they use their own cache).
    */
    if (const_item() &&
6734
        !(basic_const_item() || item->basic_const_item() ||
6735
          item->type() == Item::NULL_ITEM || /* Item_name_const hack */
6736
          item->type() == Item::FIELD_ITEM ||
6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776
          item->type() == SUBSELECT_ITEM ||
           /*
             Do not cache GET_USER_VAR() function as its const_item() may
             return TRUE for the current thread but it still may change
             during the execution.
           */
          (item->type() == Item::FUNC_ITEM &&
           ((Item_func*)item)->functype() == Item_func::GUSERVAR_FUNC)))
      *cache_flag= TRUE;
    return TRUE;
  }
  return FALSE;
}


/**
  Cache item if needed.

  @param arg   TRUE <=> Cache this item.

  @return cache if cache needed.
  @return this otherwise.
*/

Item* Item::cache_const_expr_transformer(uchar *arg)
{
  if (*(bool*)arg)
  {
    *((bool*)arg)= FALSE;
    Item_cache *cache= Item_cache::get_cache(this);
    if (!cache)
      return NULL;
    cache->setup(this);
    cache->store(this);
    return cache;
  }
  return this;
}


unknown's avatar
unknown committed
6777
bool Item_field::send(Protocol *protocol, String *buffer)
unknown's avatar
unknown committed
6778
{
unknown's avatar
unknown committed
6779
  return protocol->store(result_field);
unknown's avatar
unknown committed
6780 6781
}

6782

6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798
void Item_field::update_null_value() 
{ 
  /* 
    need to set no_errors to prevent warnings about type conversion 
    popping up.
  */
  THD *thd= field->table->in_use;
  int no_errors;

  no_errors= thd->no_errors;
  thd->no_errors= 1;
  Item::update_null_value();
  thd->no_errors= no_errors;
}


6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820
/*
  Add the field to the select list and substitute it for the reference to
  the field.

  SYNOPSIS
    Item_field::update_value_transformer()
    select_arg      current select

  DESCRIPTION
    If the field doesn't belong to the table being inserted into then it is
    added to the select list, pointer to it is stored in the ref_pointer_array
    of the select and the field itself is substituted for the Item_ref object.
    This is done in order to get correct values from update fields that
    belongs to the SELECT part in the INSERT .. SELECT .. ON DUPLICATE KEY
    UPDATE statement.

  RETURN
    0             if error occured
    ref           if all conditions are met
    this field    otherwise
*/

6821
Item *Item_field::update_value_transformer(uchar *select_arg)
6822 6823 6824 6825 6826 6827 6828 6829 6830
{
  SELECT_LEX *select= (SELECT_LEX*)select_arg;
  DBUG_ASSERT(fixed);

  if (field->table != select->context.table_list->table &&
      type() != Item::TRIGGER_FIELD_ITEM)
  {
    List<Item> *all_fields= &select->join->all_fields;
    Item **ref_pointer_array= select->ref_pointer_array;
6831
    DBUG_ASSERT(all_fields->elements <= select->ref_pointer_array_size);
6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844
    int el= all_fields->elements;
    Item_ref *ref;

    ref_pointer_array[el]= (Item*)this;
    all_fields->push_front((Item*)this);
    ref= new Item_ref(&select->context, ref_pointer_array + el,
                      table_name, field_name);
    return ref;
  }
  return this;
}


6845
void Item_field::print(String *str, enum_query_type query_type)
6846
{
6847
  if (field && field->table->const_table &&
6848
      !(query_type & (QT_NO_DATA_EXPANSION | QT_VIEW_INTERNAL)))
6849
  {
6850
    print_value(str);
6851 6852
    return;
  }
6853
  Item_ident::print(str, query_type);
6854 6855 6856
}


6857 6858
Item_ref::Item_ref(Name_resolution_context *context_arg,
                   Item **item, const char *table_name_arg,
unknown's avatar
unknown committed
6859 6860
                   const char *field_name_arg,
                   bool alias_name_used_arg)
6861
  :Item_ident(context_arg, NullS, table_name_arg, field_name_arg),
6862
   result_field(0), ref(item), reference_trough_name(0)
unknown's avatar
unknown committed
6863
{
unknown's avatar
unknown committed
6864
  alias_name_used= alias_name_used_arg;
unknown's avatar
unknown committed
6865 6866 6867
  /*
    This constructor used to create some internals references over fixed items
  */
6868
  if ((set_properties_only= (ref && *ref && (*ref)->fixed)))
unknown's avatar
unknown committed
6869 6870 6871
    set_properties();
}

6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885
/*
  A Field_enumerator-compatible class that invokes mark_as_dependent() for
  each field that is a reference to some ancestor of current_select.
*/
class Dependency_marker: public Field_enumerator
{
public:
  THD *thd;
  st_select_lex *current_select;
  virtual void visit_field(Item_field *item)
  {
    // Find which select the field is in. This is achieved by walking up 
    // the select tree and looking for the table of interest.
    st_select_lex *sel;
6886 6887 6888 6889 6890
    for (sel= current_select;
         sel ;
         sel= (sel->context.outer_context ?
               sel->context.outer_context->select_lex:
               NULL))
6891
    {
6892
      List_iterator<TABLE_LIST> li(sel->leaf_tables);
6893
      TABLE_LIST *tbl;
6894
      while ((tbl= li++))
6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905
      {
        if (tbl->table == item->field->table)
        {
          if (sel != current_select)
            mark_as_dependent(thd, sel, current_select, item, item);
          return;
        }
      }
    }
  }
};
unknown's avatar
unknown committed
6906

6907 6908 6909
Item_ref::Item_ref(TABLE_LIST *view_arg, Item **item,
                   const char *field_name_arg, bool alias_name_used_arg)
  :Item_ident(view_arg, field_name_arg),
6910
   result_field(NULL), ref(item), reference_trough_name(0)
6911 6912 6913 6914 6915
{
  alias_name_used= alias_name_used_arg;
  /*
    This constructor is used to create some internal references over fixed items
  */
6916
  if ((set_properties_only= (ref && *ref && (*ref)->fixed)))
6917 6918 6919 6920
    set_properties();
}


unknown's avatar
unknown committed
6921
/**
6922
  Resolve the name of a reference to a column reference.
6923

unknown's avatar
unknown committed
6924 6925 6926 6927
  The method resolves the column reference represented by 'this' as a column
  present in one of: GROUP BY clause, SELECT clause, outer queries. It is
  used typically for columns in the HAVING clause which are not under
  aggregate functions.
6928

unknown's avatar
unknown committed
6929 6930
  POSTCONDITION @n
  Item_ref::ref is 0 or points to a valid item.
6931

unknown's avatar
unknown committed
6932
  @note
6933 6934
    The name resolution algorithm used is (where [T_j] is an optional table
    name that qualifies the column name):
6935

unknown's avatar
unknown committed
6936 6937
  @code
        resolve_extended([T_j].col_ref_i)
6938
        {
unknown's avatar
unknown committed
6939 6940
          Search for a column or derived column named col_ref_i [in table T_j]
          in the SELECT and GROUP clauses of Q.
6941

unknown's avatar
unknown committed
6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958
          if such a column is NOT found AND    // Lookup in outer queries.
             there are outer queries
          {
            for each outer query Q_k beginning from the inner-most one
           {
              Search for a column or derived column named col_ref_i
              [in table T_j] in the SELECT and GROUP clauses of Q_k.

              if such a column is not found AND
                 - Q_k is not a group query AND
                 - Q_k is not inside an aggregate function
                 OR
                 - Q_(k-1) is not in a HAVING or SELECT clause of Q_k
              {
                search for a column or derived column named col_ref_i
                [in table T_j] in the FROM clause of Q_k;
              }
6959 6960 6961
            }
          }
        }
unknown's avatar
unknown committed
6962 6963
  @endcode
  @n
6964
    This procedure treats GROUP BY and SELECT clauses as one namespace for
6965 6966 6967
    column references in HAVING. Notice that compared to
    Item_field::fix_fields, here we first search the SELECT and GROUP BY
    clauses, and then we search the FROM clause.
6968

unknown's avatar
unknown committed
6969 6970 6971
  @param[in]     thd        current thread
  @param[in,out] reference  view column if this item was resolved to a
    view column
6972

unknown's avatar
unknown committed
6973 6974 6975 6976 6977 6978 6979
  @todo
    Here we could first find the field anyway, and then test this
    condition, so that we can give a better error message -
    ER_WRONG_FIELD_WITH_GROUP, instead of the less informative
    ER_BAD_FIELD_ERROR which we produce now.

  @retval
6980
    TRUE  if error
unknown's avatar
unknown committed
6981
  @retval
6982 6983
    FALSE on success
*/
unknown's avatar
unknown committed
6984

6985
bool Item_ref::fix_fields(THD *thd, Item **reference)
unknown's avatar
unknown committed
6986
{
6987
  enum_parsing_place place= NO_MATTER;
6988
  DBUG_ASSERT(fixed == 0);
6989 6990
  SELECT_LEX *current_sel= thd->lex->current_select;

6991 6992 6993 6994 6995
  if (set_properties_only)
  {
    /* do nothing */
  }
  else if (!ref || ref == not_found_item)
unknown's avatar
unknown committed
6996
  {
6997
    DBUG_ASSERT(reference_trough_name != 0);
6998 6999 7000
    if (!(ref= resolve_ref_in_select_and_group(thd, this,
                                               context->select_lex)))
      goto error;             /* Some error occurred (e.g. ambiguous names). */
7001

7002
    if (ref == not_found_item) /* This reference was not resolved. */
unknown's avatar
unknown committed
7003
    {
7004 7005
      Name_resolution_context *last_checked_context= context;
      Name_resolution_context *outer_context= context->outer_context;
7006 7007 7008
      Field *from_field;
      ref= 0;

7009
      if (!outer_context)
7010 7011 7012
      {
        /* The current reference cannot be resolved in this query. */
        my_error(ER_BAD_FIELD_ERROR,MYF(0),
Monty's avatar
Monty committed
7013
                 this->full_name(), thd->where);
7014
        goto error;
7015
      }
7016

unknown's avatar
unknown committed
7017
      /*
7018 7019 7020
        If there is an outer context (select), and it is not a derived table
        (which do not support the use of outer fields for now), try to
        resolve this reference in the outer select(s).
7021

7022 7023 7024
        We treat each subselect as a separate namespace, so that different
        subselects may contain columns with the same names. The subselects are
        searched starting from the innermost.
unknown's avatar
unknown committed
7025
      */
7026 7027
      from_field= (Field*) not_found_field;

7028
      do
7029
      {
7030 7031 7032 7033
        SELECT_LEX *select= outer_context->select_lex;
        Item_subselect *prev_subselect_item=
          last_checked_context->select_lex->master_unit()->item;
        last_checked_context= outer_context;
7034

7035
        /* Search in the SELECT and GROUP lists of the outer select. */
7036
        if (outer_context->resolve_in_select_list)
7037
        {
7038 7039
          if (!(ref= resolve_ref_in_select_and_group(thd, this, select)))
            goto error; /* Some error occurred (e.g. ambiguous names). */
7040
          if (ref != not_found_item)
7041
          {
7042 7043 7044 7045
            DBUG_ASSERT(*ref && (*ref)->fixed);
            prev_subselect_item->used_tables_cache|= (*ref)->used_tables();
            prev_subselect_item->const_item_cache&= (*ref)->const_item();
            break;
7046 7047
          }
          /*
7048 7049 7050
            Set ref to 0 to ensure that we get an error in case we replaced
            this item with another item and still use this item in some
            other place of the parse tree.
7051
          */
7052
          ref= 0;
7053
        }
7054

7055 7056 7057 7058 7059
        place= prev_subselect_item->parsing_place;
        /*
          Check table fields only if the subquery is used somewhere out of
          HAVING or the outer SELECT does not use grouping (i.e. tables are
          accessible).
7060
          TODO:
7061 7062 7063 7064 7065 7066
          Here we could first find the field anyway, and then test this
          condition, so that we can give a better error message -
          ER_WRONG_FIELD_WITH_GROUP, instead of the less informative
          ER_BAD_FIELD_ERROR which we produce now.
        */
        if ((place != IN_HAVING ||
7067 7068
             (!select->with_sum_func &&
              select->group_list.elements == 0)))
7069
        {
7070
          /*
7071 7072 7073
            In case of view, find_field_in_tables() write pointer to view
            field expression to 'reference', i.e. it substitute that
            expression instead of this Item_ref
7074
          */
7075
          from_field= find_field_in_tables(thd, this,
unknown's avatar
unknown committed
7076 7077 7078 7079
                                           outer_context->
                                             first_name_resolution_table,
                                           outer_context->
                                             last_name_resolution_table,
7080 7081
                                           reference,
                                           IGNORE_EXCEPT_NON_UNIQUE,
7082
                                           TRUE, TRUE);
7083
          if (! from_field)
7084
            goto error;
7085
          if (from_field == view_ref_found)
7086
          {
7087
            Item::Type refer_type= (*reference)->type();
7088 7089 7090 7091 7092
            prev_subselect_item->used_tables_cache|=
              (*reference)->used_tables();
            prev_subselect_item->const_item_cache&=
              (*reference)->const_item();
            DBUG_ASSERT((*reference)->type() == REF_ITEM);
7093 7094
            mark_as_dependent(thd, last_checked_context->select_lex,
                              context->select_lex, this,
7095 7096
                              ((refer_type == REF_ITEM ||
                                refer_type == FIELD_ITEM) ?
7097 7098 7099 7100 7101 7102
                               (Item_ident*) (*reference) :
                               0));
            /*
              view reference found, we substituted it instead of this
              Item, so can quit
            */
7103 7104
            return FALSE;
          }
7105 7106
          if (from_field != not_found_field)
          {
7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125
            if (cached_table && cached_table->select_lex &&
                outer_context->select_lex &&
                cached_table->select_lex != outer_context->select_lex)
            {
              /*
                Due to cache, find_field_in_tables() can return field which
                doesn't belong to provided outer_context. In this case we have
                to find proper field context in order to fix field correcly.
              */
              do
              {
                outer_context= outer_context->outer_context;
                select= outer_context->select_lex;
                prev_subselect_item=
                  last_checked_context->select_lex->master_unit()->item;
                last_checked_context= outer_context;
              } while (outer_context && outer_context->select_lex &&
                       cached_table->select_lex != outer_context->select_lex);
            }
7126 7127 7128 7129
            prev_subselect_item->used_tables_cache|= from_field->table->map;
            prev_subselect_item->const_item_cache= 0;
            break;
          }
7130
        }
7131 7132 7133 7134 7135 7136
        DBUG_ASSERT(from_field == not_found_field);

        /* Reference is not found => depend on outer (or just error). */
        prev_subselect_item->used_tables_cache|= OUTER_REF_TABLE_BIT;
        prev_subselect_item->const_item_cache= 0;

7137 7138
        outer_context= outer_context->outer_context;
      } while (outer_context);
7139 7140 7141

      DBUG_ASSERT(from_field != 0 && from_field != view_ref_found);
      if (from_field != not_found_field)
7142
      {
7143
        Item_field* fld;
unknown's avatar
unknown committed
7144
        if (!(fld= new Item_field(from_field)))
7145
          goto error;
7146
        thd->change_item_tree(reference, fld);
7147
        mark_as_dependent(thd, last_checked_context->select_lex,
Monty's avatar
Monty committed
7148
                          current_sel, fld, fld);
unknown's avatar
unknown committed
7149 7150 7151 7152 7153 7154 7155 7156 7157 7158
        /*
          A reference is resolved to a nest level that's outer or the same as
          the nest level of the enclosing set function : adjust the value of
          max_arg_level for the function if it's needed.
        */
        if (thd->lex->in_sum_func &&
            thd->lex->in_sum_func->nest_level >= 
            last_checked_context->select_lex->nest_level)
          set_if_bigger(thd->lex->in_sum_func->max_arg_level,
                        last_checked_context->select_lex->nest_level);
7159 7160 7161 7162 7163 7164
        return FALSE;
      }
      if (ref == 0)
      {
        /* The item was not a table field and not a reference */
        my_error(ER_BAD_FIELD_ERROR, MYF(0),
Monty's avatar
Monty committed
7165
                 this->full_name(), thd->where);
7166
        goto error;
7167
      }
7168 7169
      /* Should be checked in resolve_ref_in_select_and_group(). */
      DBUG_ASSERT(*ref && (*ref)->fixed);
7170 7171
      mark_as_dependent(thd, last_checked_context->select_lex,
                        context->select_lex, this, this);
unknown's avatar
unknown committed
7172 7173 7174 7175 7176 7177 7178 7179 7180 7181
      /*
        A reference is resolved to a nest level that's outer or the same as
        the nest level of the enclosing set function : adjust the value of
        max_arg_level for the function if it's needed.
      */
      if (thd->lex->in_sum_func &&
          thd->lex->in_sum_func->nest_level >= 
          last_checked_context->select_lex->nest_level)
        set_if_bigger(thd->lex->in_sum_func->max_arg_level,
                      last_checked_context->select_lex->nest_level);
7182
    }
unknown's avatar
unknown committed
7183
  }
7184
  else if (ref_type() != VIEW_REF)
7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196
  {
    /*
      It could be that we're referring to something that's in ancestor selects.
      We must make an appropriate mark_as_dependent() call for each such
      outside reference.
    */
    Dependency_marker dep_marker;
    dep_marker.current_select= current_sel;
    dep_marker.thd= thd;
    (*ref)->walk(&Item::enumerate_field_refs_processor, FALSE,
                 (uchar*)&dep_marker);
  }
7197

7198
  DBUG_ASSERT(*ref);
7199
  /*
7200
    Check if this is an incorrect reference in a group function or forward
unknown's avatar
unknown committed
7201 7202 7203
    reference. Do not issue an error if this is:
      1. outer reference (will be fixed later by the fix_inner_refs function);
      2. an unnamed reference inside an aggregate function.
7204
  */
unknown's avatar
unknown committed
7205 7206 7207 7208 7209 7210
  if (!((*ref)->type() == REF_ITEM &&
       ((Item_ref *)(*ref))->ref_type() == OUTER_REF) &&
      (((*ref)->with_sum_func && name &&
        !(current_sel->linkage != GLOBAL_OPTIONS_TYPE &&
          current_sel->having_fix_field)) ||
       !(*ref)->fixed))
7211
  {
7212 7213 7214 7215
    my_error(ER_ILLEGAL_REFERENCE, MYF(0),
             name, ((*ref)->with_sum_func?
                    "reference to group function":
                    "forward reference in item list"));
7216
    goto error;
7217
  }
7218 7219 7220

  set_properties();

7221
  if ((*ref)->check_cols(1))
7222
    goto error;
7223
  return FALSE;
7224 7225 7226 7227

error:
  context->process_error(thd);
  return TRUE;
7228 7229
}

7230

7231 7232
void Item_ref::set_properties()
{
7233 7234 7235
  max_length= (*ref)->max_length;
  maybe_null= (*ref)->maybe_null;
  decimals=   (*ref)->decimals;
7236
  collation.set((*ref)->collation);
unknown's avatar
unknown committed
7237 7238 7239 7240
  /*
    We have to remember if we refer to a sum function, to ensure that
    split_sum_func() doesn't try to change the reference.
  */
unknown's avatar
unknown committed
7241
  with_sum_func= (*ref)->with_sum_func;
7242
  with_param= (*ref)->with_param;
unknown's avatar
unknown committed
7243
  with_field= (*ref)->with_field;
unknown's avatar
Merge  
unknown committed
7244
  unsigned_flag= (*ref)->unsigned_flag;
unknown's avatar
unknown committed
7245 7246 7247
  fixed= 1;
  if (alias_name_used)
    return;
unknown's avatar
unknown committed
7248 7249 7250 7251
  if ((*ref)->type() == FIELD_ITEM)
    alias_name_used= ((Item_ident *) (*ref))->alias_name_used;
  else
    alias_name_used= TRUE; // it is not field, so it is was resolved by alias
unknown's avatar
unknown committed
7252 7253
}

7254

unknown's avatar
unknown committed
7255 7256
void Item_ref::cleanup()
{
unknown's avatar
unknown committed
7257
  DBUG_ENTER("Item_ref::cleanup");
unknown's avatar
unknown committed
7258
  Item_ident::cleanup();
7259
  result_field= 0;
7260 7261 7262 7263 7264
  if (reference_trough_name)
  {
    /* We have to reset the reference as it may been freed */
    ref= 0;
  }
unknown's avatar
unknown committed
7265
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
7266 7267 7268
}


7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287
/**
  Transform an Item_ref object with a transformer callback function.

  The function first applies the transform method to the item
  referenced by this Item_reg object. If this returns a new item the
  old item is substituted for a new one. After this the transformer
  is applied to the Item_ref object.

  @param transformer   the transformer callback function to be applied to
                       the nodes of the tree of the object
  @param argument      parameter to be passed to the transformer

  @return Item returned as the result of transformation of the Item_ref object
    @retval !NULL The transformation was successful
    @retval NULL  Out of memory error
*/

Item* Item_ref::transform(Item_transformer transformer, uchar *arg)
{
Sergei Golubchik's avatar
Sergei Golubchik committed
7288
  DBUG_ASSERT(!current_thd->stmt_arena->is_stmt_prepare());
7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315
  DBUG_ASSERT((*ref) != NULL);

  /* Transform the object we are referencing. */
  Item *new_item= (*ref)->transform(transformer, arg);
  if (!new_item)
    return NULL;

  /*
    THD::change_item_tree() should be called only if the tree was
    really transformed, i.e. when a new item has been created.
    Otherwise we'll be allocating a lot of unnecessary memory for
    change records at each execution.
  */
  if (*ref != new_item)
    current_thd->change_item_tree(ref, new_item);

  /* Transform the item ref object. */
  return (this->*transformer)(arg);
}


/**
  Compile an Item_ref object with a processor and a transformer
  callback functions.

  First the function applies the analyzer to the Item_ref object. Then
  if the analizer succeeeds we first applies the compile method to the
Igor Babaev's avatar
Igor Babaev committed
7316
  object the Item_ref object is referencing. If this returns a new
7317 7318
  item the old item is substituted for a new one.  After this the
  transformer is applied to the Item_ref object itself.
Igor Babaev's avatar
Igor Babaev committed
7319 7320
  The compile function is not called if the analyzer returns NULL
  in the parameter arg_p. 
7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340

  @param analyzer      the analyzer callback function to be applied to the
                       nodes of the tree of the object
  @param[in,out] arg_p parameter to be passed to the processor
  @param transformer   the transformer callback function to be applied to the
                       nodes of the tree of the object
  @param arg_t         parameter to be passed to the transformer

  @return Item returned as the result of transformation of the Item_ref object
*/

Item* Item_ref::compile(Item_analyzer analyzer, uchar **arg_p,
                        Item_transformer transformer, uchar *arg_t)
{
  /* Analyze this Item object. */
  if (!(this->*analyzer)(arg_p))
    return NULL;

  /* Compile the Item we are referencing. */
  DBUG_ASSERT((*ref) != NULL);
Igor Babaev's avatar
Igor Babaev committed
7341 7342 7343 7344 7345 7346 7347
  if (*arg_p)
  {
    uchar *arg_v= *arg_p;
    Item *new_item= (*ref)->compile(analyzer, &arg_v, transformer, arg_t);
    if (new_item && *ref != new_item)
      current_thd->change_item_tree(ref, new_item);
  }
Igor Babaev's avatar
Igor Babaev committed
7348

7349 7350 7351 7352 7353
  /* Transform this Item object. */
  return (this->*transformer)(arg_t);
}


7354
void Item_ref::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
7355
{
7356
  if (ref)
unknown's avatar
unknown committed
7357 7358
  {
    if ((*ref)->type() != Item::CACHE_ITEM && ref_type() != VIEW_REF &&
unknown's avatar
unknown committed
7359
        !table_name && name && alias_name_used)
unknown's avatar
unknown committed
7360 7361
    {
      THD *thd= current_thd;
7362
      append_identifier(thd, str, (*ref)->real_item()->name,
7363
                        strlen((*ref)->real_item()->name));
unknown's avatar
unknown committed
7364 7365
    }
    else
7366
      (*ref)->print(str, query_type);
unknown's avatar
unknown committed
7367
  }
unknown's avatar
unknown committed
7368
  else
7369
    Item_ident::print(str, query_type);
unknown's avatar
unknown committed
7370 7371 7372
}


7373 7374 7375 7376 7377 7378 7379 7380
bool Item_ref::send(Protocol *prot, String *tmp)
{
  if (result_field)
    return prot->store(result_field);
  return (*ref)->send(prot, tmp);
}


7381 7382 7383 7384 7385 7386 7387 7388
double Item_ref::val_result()
{
  if (result_field)
  {
    if ((null_value= result_field->is_null()))
      return 0.0;
    return result_field->val_real();
  }
7389
  return val_real();
7390 7391 7392
}


7393 7394 7395 7396 7397 7398 7399 7400 7401
bool Item_ref::is_null_result()
{
  if (result_field)
    return (null_value=result_field->is_null());

  return is_null();
}


7402 7403 7404 7405 7406
longlong Item_ref::val_int_result()
{
  if (result_field)
  {
    if ((null_value= result_field->is_null()))
7407
      return 0;
7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426
    return result_field->val_int();
  }
  return val_int();
}


String *Item_ref::str_result(String* str)
{
  if (result_field)
  {
    if ((null_value= result_field->is_null()))
      return 0;
    str->set_charset(str_value.charset());
    return result_field->val_str(str, &str_value);
  }
  return val_str(str);
}


unknown's avatar
unknown committed
7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444
my_decimal *Item_ref::val_decimal_result(my_decimal *decimal_value)
{
  if (result_field)
  {
    if ((null_value= result_field->is_null()))
      return 0;
    return result_field->val_decimal(decimal_value);
  }
  return val_decimal(decimal_value);
}


bool Item_ref::val_bool_result()
{
  if (result_field)
  {
    if ((null_value= result_field->is_null()))
      return 0;
7445
    switch (result_field->result_type()) {
unknown's avatar
unknown committed
7446
    case INT_RESULT:
7447
      return result_field->val_int() != 0;
unknown's avatar
unknown committed
7448
    case DECIMAL_RESULT:
7449 7450 7451 7452 7453 7454 7455
    {
      my_decimal decimal_value;
      my_decimal *val= result_field->val_decimal(&decimal_value);
      if (val)
        return !my_decimal_is_zero(val);
      return 0;
    }
unknown's avatar
unknown committed
7456 7457 7458 7459
    case REAL_RESULT:
    case STRING_RESULT:
      return result_field->val_real() != 0.0;
    case ROW_RESULT:
Sergei Golubchik's avatar
Sergei Golubchik committed
7460
    case TIME_RESULT:
Michael Widenius's avatar
Michael Widenius committed
7461
    case IMPOSSIBLE_RESULT:
unknown's avatar
unknown committed
7462 7463 7464 7465 7466 7467 7468
      DBUG_ASSERT(0);
    }
  }
  return val_bool();
}


unknown's avatar
unknown committed
7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487
void Item_ref::save_result(Field *to)
{
  if (result_field)
  {
    save_field_in_field(result_field, &null_value, to, TRUE);
    return;
  }
  (*ref)->save_result(to);
  null_value= (*ref)->null_value;
}


void Item_ref::save_val(Field *to)
{
  (*ref)->save_result(to);
  null_value= (*ref)->null_value;
}


unknown's avatar
unknown committed
7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526
double Item_ref::val_real()
{
  DBUG_ASSERT(fixed);
  double tmp=(*ref)->val_result();
  null_value=(*ref)->null_value;
  return tmp;
}


longlong Item_ref::val_int()
{
  DBUG_ASSERT(fixed);
  longlong tmp=(*ref)->val_int_result();
  null_value=(*ref)->null_value;
  return tmp;
}


bool Item_ref::val_bool()
{
  DBUG_ASSERT(fixed);
  bool tmp= (*ref)->val_bool_result();
  null_value= (*ref)->null_value;
  return tmp;
}


String *Item_ref::val_str(String* tmp)
{
  DBUG_ASSERT(fixed);
  tmp=(*ref)->str_result(tmp);
  null_value=(*ref)->null_value;
  return tmp;
}


bool Item_ref::is_null()
{
  DBUG_ASSERT(fixed);
7527 7528 7529
  bool tmp=(*ref)->is_null_result();
  null_value=(*ref)->null_value;
  return tmp;
unknown's avatar
unknown committed
7530 7531 7532
}


7533
bool Item_ref::get_date(MYSQL_TIME *ltime,ulonglong fuzzydate)
unknown's avatar
unknown committed
7534 7535 7536 7537 7538 7539 7540
{
  return (null_value=(*ref)->get_date_result(ltime,fuzzydate));
}


my_decimal *Item_ref::val_decimal(my_decimal *decimal_value)
{
unknown's avatar
unknown committed
7541
  my_decimal *val= (*ref)->val_decimal_result(decimal_value);
unknown's avatar
unknown committed
7542 7543 7544 7545
  null_value= (*ref)->null_value;
  return val;
}

7546 7547 7548
int Item_ref::save_in_field(Field *to, bool no_conversions)
{
  int res;
7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561
  if (result_field)
  {
    if (result_field->is_null())
    {
      null_value= 1;
      res= set_field_to_null_with_conversions(to, no_conversions);
      return res;
    }
    to->set_notnull();
    res= field_conv(to, result_field);
    null_value= 0;
    return res;
  }
7562 7563 7564 7565 7566
  res= (*ref)->save_in_field(to, no_conversions);
  null_value= (*ref)->null_value;
  return res;
}

unknown's avatar
unknown committed
7567

unknown's avatar
unknown committed
7568 7569 7570 7571 7572 7573
void Item_ref::save_org_in_field(Field *field)
{
  (*ref)->save_org_in_field(field);
}


7574 7575 7576 7577 7578 7579 7580 7581 7582 7583
void Item_ref::make_field(Send_field *field)
{
  (*ref)->make_field(field);
  /* Non-zero in case of a view */
  if (name)
    field->col_name= name;
  if (table_name)
    field->table_name= table_name;
  if (db_name)
    field->db_name= db_name;
7584 7585 7586 7587
  if (orig_field_name)
    field->org_col_name= orig_field_name;
  if (orig_table_name)
    field->org_table_name= orig_table_name;
unknown's avatar
unknown committed
7588
}
7589 7590


unknown's avatar
unknown committed
7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605
Item *Item_ref::get_tmp_table_item(THD *thd)
{
  if (!result_field)
    return (*ref)->get_tmp_table_item(thd);

  Item_field *item= new Item_field(result_field);
  if (item)
  {
    item->table_name= table_name;
    item->db_name= db_name;
  }
  return item;
}


7606
void Item_ref_null_helper::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
7607
{
7608
  str->append(STRING_WITH_LEN("<ref_null_helper>("));
7609
  if (ref)
7610
    (*ref)->print(str, query_type);
unknown's avatar
unknown committed
7611 7612 7613 7614 7615 7616
  else
    str->append('?');
  str->append(')');
}


unknown's avatar
unknown committed
7617 7618 7619 7620 7621 7622 7623
void Item_direct_ref::save_val(Field *to)
{
  (*ref)->save_val(to);
  null_value=(*ref)->null_value;
}


unknown's avatar
unknown committed
7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665
double Item_direct_ref::val_real()
{
  double tmp=(*ref)->val_real();
  null_value=(*ref)->null_value;
  return tmp;
}


longlong Item_direct_ref::val_int()
{
  longlong tmp=(*ref)->val_int();
  null_value=(*ref)->null_value;
  return tmp;
}


String *Item_direct_ref::val_str(String* tmp)
{
  tmp=(*ref)->val_str(tmp);
  null_value=(*ref)->null_value;
  return tmp;
}


my_decimal *Item_direct_ref::val_decimal(my_decimal *decimal_value)
{
  my_decimal *tmp= (*ref)->val_decimal(decimal_value);
  null_value=(*ref)->null_value;
  return tmp;
}


bool Item_direct_ref::val_bool()
{
  bool tmp= (*ref)->val_bool();
  null_value=(*ref)->null_value;
  return tmp;
}


bool Item_direct_ref::is_null()
{
unknown's avatar
unknown committed
7666
  return (*ref)->is_null();
unknown's avatar
unknown committed
7667 7668 7669
}


7670
bool Item_direct_ref::get_date(MYSQL_TIME *ltime,ulonglong fuzzydate)
unknown's avatar
unknown committed
7671 7672 7673 7674 7675
{
  return (null_value=(*ref)->get_date(ltime,fuzzydate));
}


unknown's avatar
unknown committed
7676 7677
Item_cache_wrapper::~Item_cache_wrapper()
{
7678
  DBUG_ASSERT(expr_cache == 0);
unknown's avatar
unknown committed
7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689
}

Item_cache_wrapper::Item_cache_wrapper(Item *item_arg)
:orig_item(item_arg), expr_cache(NULL), expr_value(NULL)
{
  DBUG_ASSERT(orig_item->fixed);
  max_length= orig_item->max_length;
  maybe_null= orig_item->maybe_null;
  decimals=   orig_item->decimals;
  collation.set(orig_item->collation);
  with_sum_func= orig_item->with_sum_func;
7690
  with_param= orig_item->with_param;
unknown's avatar
unknown committed
7691
  with_field= orig_item->with_field;
unknown's avatar
unknown committed
7692 7693 7694
  unsigned_flag= orig_item->unsigned_flag;
  name= item_arg->name;
  name_length= item_arg->name_length;
unknown's avatar
unknown committed
7695
  with_subselect=  orig_item->with_subselect;
unknown's avatar
unknown committed
7696 7697 7698 7699 7700 7701 7702 7703

  if ((expr_value= Item_cache::get_cache(orig_item)))
    expr_value->setup(orig_item);

  fixed= 1;
}


unknown's avatar
unknown committed
7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717
/**
  Initialize the cache if it is needed
*/

void Item_cache_wrapper::init_on_demand()
{
    if (!expr_cache->is_inited())
    {
      orig_item->get_cache_parameters(parameters);
      expr_cache->init();
    }
}


7718 7719 7720 7721
void Item_cache_wrapper::print(String *str, enum_query_type query_type)
{
  str->append(func_name());
  if (expr_cache)
unknown's avatar
unknown committed
7722 7723
  {
    init_on_demand();
7724
    expr_cache->print(str, query_type);
unknown's avatar
unknown committed
7725
  }
7726 7727 7728 7729 7730 7731 7732 7733
  else
    str->append(STRING_WITH_LEN("<<DISABLED>>"));
  str->append('(');
  orig_item->print(str, query_type);
  str->append(')');
}


unknown's avatar
unknown committed
7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747
/**
  Prepare the expression cache wrapper (do nothing)

  @retval FALSE OK
*/

bool Item_cache_wrapper::fix_fields(THD *thd  __attribute__((unused)),
                                    Item **it __attribute__((unused)))
{
  DBUG_ASSERT(orig_item->fixed);
  DBUG_ASSERT(fixed);
  return FALSE;
}

Sergei Golubchik's avatar
Sergei Golubchik committed
7748 7749 7750 7751 7752 7753
bool Item_cache_wrapper::send(Protocol *protocol, String *buffer)
{
  if (result_field)
    return protocol->store(result_field);
  return Item::send(protocol, buffer);
}
unknown's avatar
unknown committed
7754 7755 7756 7757 7758 7759 7760

/**
  Clean the expression cache wrapper up before reusing it.
*/

void Item_cache_wrapper::cleanup()
{
7761 7762
  DBUG_ENTER("Item_cache_wrapper::cleanup");
  Item_result_field::cleanup();
unknown's avatar
unknown committed
7763 7764
  delete expr_cache;
  expr_cache= 0;
7765
  /* expr_value is Item so it will be destroyed from list of Items */
unknown's avatar
unknown committed
7766
  expr_value= 0;
unknown's avatar
unknown committed
7767
  parameters.empty();
7768
  DBUG_VOID_RETURN;
unknown's avatar
unknown committed
7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787
}


/**
  Create an expression cache that uses a temporary table

  @param thd           Thread handle
  @param depends_on    Parameters of the expression to create cache for

  @details
  The function takes 'depends_on' as the list of all parameters for
  the expression wrapped into this object and creates an expression
  cache in a temporary table containing the field for the parameters
  and the result of the expression.

  @retval FALSE OK
  @retval TRUE  Error
*/

unknown's avatar
unknown committed
7788
bool Item_cache_wrapper::set_cache(THD *thd)
unknown's avatar
unknown committed
7789 7790
{
  DBUG_ENTER("Item_cache_wrapper::set_cache");
7791
  DBUG_ASSERT(expr_cache == 0);
unknown's avatar
unknown committed
7792
  expr_cache= new Expression_cache_tmptable(thd, parameters, expr_value);
unknown's avatar
unknown committed
7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816
  DBUG_RETURN(expr_cache == NULL);
}


/**
  Check if the current values of the parameters are in the expression cache

  @details
  The function checks whether the current set of the parameters of the
  referenced item can be found in the expression cache. If so the function
  returns the item by which the result of the expression can be easily
  extracted from the cache with the corresponding val_* method.

  @retval NULL    - parameters are not in the cache
  @retval <item*> - item providing the result of the expression found in cache
*/

Item *Item_cache_wrapper::check_cache()
{
  DBUG_ENTER("Item_cache_wrapper::check_cache");
  if (expr_cache)
  {
    Expression_cache_tmptable::result res;
    Item *cached_value;
unknown's avatar
unknown committed
7817
    init_on_demand();
unknown's avatar
unknown committed
7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032
    res= expr_cache->check_value(&cached_value);
    if (res == Expression_cache_tmptable::HIT)
      DBUG_RETURN(cached_value);
  }
  DBUG_RETURN(NULL);
}


/**
  Get the value of the cached expression and put it in the cache
*/

inline void Item_cache_wrapper::cache()
{
  expr_value->store(orig_item);
  expr_value->cache_value();
  expr_cache->put_value(expr_value); // put in expr_cache
}


/**
  Get the value of the possibly cached item into the field.
*/

void Item_cache_wrapper::save_val(Field *to)
{
  Item *cached_value;
  DBUG_ENTER("Item_cache_wrapper::val_int");
  if (!expr_cache)
  {
    orig_item->save_val(to);
    null_value= orig_item->null_value;
    DBUG_VOID_RETURN;
  }

  if ((cached_value= check_cache()))
  {
    cached_value->save_val(to);
    null_value= cached_value->null_value;
    DBUG_VOID_RETURN;
  }
  cache();
  null_value= expr_value->null_value;
  expr_value->save_val(to);
  DBUG_VOID_RETURN;
}


/**
  Get the integer value of the possibly cached item.
*/

longlong Item_cache_wrapper::val_int()
{
  Item *cached_value;
  DBUG_ENTER("Item_cache_wrapper::val_int");
  if (!expr_cache)
  {
    longlong tmp= orig_item->val_int();
    null_value= orig_item->null_value;
    DBUG_RETURN(tmp);
  }

  if ((cached_value= check_cache()))
  {
    longlong tmp= cached_value->val_int();
    null_value= cached_value->null_value;
    DBUG_RETURN(tmp);
  }
  cache();
  null_value= expr_value->null_value;
  DBUG_RETURN(expr_value->val_int());
}


/**
  Get the real value of the possibly cached item
*/

double Item_cache_wrapper::val_real()
{
  Item *cached_value;
  DBUG_ENTER("Item_cache_wrapper::val_real");
  if (!expr_cache)
  {
    double tmp= orig_item->val_real();
    null_value= orig_item->null_value;
    DBUG_RETURN(tmp);
  }

  if ((cached_value= check_cache()))
  {
    double tmp= cached_value->val_real();
    null_value= cached_value->null_value;
    DBUG_RETURN(tmp);
  }
  cache();
  null_value= expr_value->null_value;
  DBUG_RETURN(expr_value->val_real());
}


/**
  Get the string value of the possibly cached item
*/

String *Item_cache_wrapper::val_str(String* str)
{
  Item *cached_value;
  DBUG_ENTER("Item_cache_wrapper::val_str");
  if (!expr_cache)
  {
    String *tmp= orig_item->val_str(str);
    null_value= orig_item->null_value;
    DBUG_RETURN(tmp);
  }

  if ((cached_value= check_cache()))
  {
    String *tmp= cached_value->val_str(str);
    null_value= cached_value->null_value;
    DBUG_RETURN(tmp);
  }
  cache();
  if ((null_value= expr_value->null_value))
    DBUG_RETURN(NULL);
  DBUG_RETURN(expr_value->val_str(str));
}


/**
  Get the decimal value of the possibly cached item
*/

my_decimal *Item_cache_wrapper::val_decimal(my_decimal* decimal_value)
{
  Item *cached_value;
  DBUG_ENTER("Item_cache_wrapper::val_decimal");
  if (!expr_cache)
  {
    my_decimal *tmp= orig_item->val_decimal(decimal_value);
    null_value= orig_item->null_value;
    DBUG_RETURN(tmp);
  }

  if ((cached_value= check_cache()))
  {
    my_decimal *tmp= cached_value->val_decimal(decimal_value);
    null_value= cached_value->null_value;
    DBUG_RETURN(tmp);
  }
  cache();
  if ((null_value= expr_value->null_value))
    DBUG_RETURN(NULL);
  DBUG_RETURN(expr_value->val_decimal(decimal_value));
}


/**
  Get the boolean value of the possibly cached item
*/

bool Item_cache_wrapper::val_bool()
{
  Item *cached_value;
  DBUG_ENTER("Item_cache_wrapper::val_bool");
  if (!expr_cache)
  {
    bool tmp= orig_item->val_bool();
    null_value= orig_item->null_value;
    DBUG_RETURN(tmp);
  }

  if ((cached_value= check_cache()))
  {
    bool tmp= cached_value->val_bool();
    null_value= cached_value->null_value;
    DBUG_RETURN(tmp);
  }
  cache();
  null_value= expr_value->null_value;
  DBUG_RETURN(expr_value->val_bool());
}


/**
  Check for NULL the value of the possibly cached item
*/

bool Item_cache_wrapper::is_null()
{
  Item *cached_value;
  DBUG_ENTER("Item_cache_wrapper::is_null");
  if (!expr_cache)
  {
    bool tmp= orig_item->is_null();
    null_value= orig_item->null_value;
    DBUG_RETURN(tmp);
  }

  if ((cached_value= check_cache()))
  {
    bool tmp= cached_value->is_null();
    null_value= cached_value->null_value;
    DBUG_RETURN(tmp);
  }
  cache();
  DBUG_RETURN((null_value= expr_value->null_value));
}


/**
  Get the date value of the possibly cached item
*/

8033
bool Item_cache_wrapper::get_date(MYSQL_TIME *ltime, ulonglong fuzzydate)
unknown's avatar
unknown committed
8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057
{
  Item *cached_value;
  DBUG_ENTER("Item_cache_wrapper::get_date");
  if (!expr_cache)
    DBUG_RETURN((null_value= orig_item->get_date(ltime, fuzzydate)));

  if ((cached_value= check_cache()))
    DBUG_RETURN((null_value= cached_value->get_date(ltime, fuzzydate)));

  cache();
  DBUG_RETURN((null_value= expr_value->get_date(ltime, fuzzydate)));
}


int Item_cache_wrapper::save_in_field(Field *to, bool no_conversions)
{
  int res;
  DBUG_ASSERT(!result_field);
  res= orig_item->save_in_field(to, no_conversions);
  null_value= orig_item->null_value;
  return res;
}


8058 8059 8060 8061 8062 8063 8064 8065
Item* Item_cache_wrapper::get_tmp_table_item(THD *thd_arg)
{
  if (!orig_item->with_sum_func && !orig_item->const_item())
    return new Item_field(result_field);
  return copy_or_same(thd_arg);
}


unknown's avatar
unknown committed
8066 8067 8068 8069 8070 8071 8072
bool Item_direct_view_ref::send(Protocol *protocol, String *buffer)
{
  if (check_null_ref())
    return protocol->store_null();
  return Item_direct_ref::send(protocol, buffer);
}

unknown's avatar
unknown committed
8073 8074
/**
  Prepare referenced field then call usual Item_direct_ref::fix_fields .
8075

unknown's avatar
unknown committed
8076 8077
  @param thd         thread handler
  @param reference   reference on reference where this item stored
8078

unknown's avatar
unknown committed
8079
  @retval
8080
    FALSE   OK
unknown's avatar
unknown committed
8081
  @retval
8082 8083 8084 8085 8086 8087 8088 8089
    TRUE    Error
*/

bool Item_direct_view_ref::fix_fields(THD *thd, Item **reference)
{
  /* view fild reference must be defined */
  DBUG_ASSERT(*ref);
  /* (*ref)->check_cols() will be made in Item_direct_ref::fix_fields */
8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107
  if ((*ref)->fixed)
  {
    Item *ref_item= (*ref)->real_item();
    if (ref_item->type() == Item::FIELD_ITEM)
    {
      /*
        In some cases we need to update table read set(see bug#47150).
        If ref item is FIELD_ITEM and fixed then field and table
        have proper values. So we can use them for update.
      */
      Field *fld= ((Item_field*) ref_item)->field;
      DBUG_ASSERT(fld && fld->table);
      if (thd->mark_used_columns == MARK_COLUMNS_READ)
        bitmap_set_bit(fld->table->read_set, fld->field_index);
    }
  }
  else if (!(*ref)->fixed &&
           ((*ref)->fix_fields(thd, ref)))
8108
    return TRUE;
8109

Igor Babaev's avatar
Igor Babaev committed
8110 8111 8112 8113
  if (Item_direct_ref::fix_fields(thd, reference))
    return TRUE;
  if (view->table && view->table->maybe_null)
    maybe_null= TRUE;
8114
  set_null_ref_table();
Igor Babaev's avatar
Igor Babaev committed
8115
  return FALSE;
8116 8117
}

8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132
/*
  Prepare referenced outer field then call usual Item_direct_ref::fix_fields

  SYNOPSIS
    Item_outer_ref::fix_fields()
    thd         thread handler
    reference   reference on reference where this item stored

  RETURN
    FALSE   OK
    TRUE    Error
*/

bool Item_outer_ref::fix_fields(THD *thd, Item **reference)
{
8133 8134 8135
  bool err;
  /* outer_ref->check_cols() will be made in Item_direct_ref::fix_fields */
  if ((*ref) && !(*ref)->fixed && ((*ref)->fix_fields(thd, reference)))
8136
    return TRUE;
8137 8138 8139 8140 8141 8142
  err= Item_direct_ref::fix_fields(thd, reference);
  if (!outer_ref)
    outer_ref= *ref;
  if ((*ref)->type() == Item::FIELD_ITEM)
    table_name= ((Item_field*)outer_ref)->table_name;
  return err;
8143 8144
}

8145

8146 8147
void Item_outer_ref::fix_after_pullout(st_select_lex *new_parent, Item **ref)
{
Igor Babaev's avatar
Igor Babaev committed
8148
  if (get_depended_from() == new_parent)
8149 8150
  {
    *ref= outer_ref;
8151
    (*ref)->fix_after_pullout(new_parent, ref);
8152 8153 8154 8155 8156
  }
}

void Item_ref::fix_after_pullout(st_select_lex *new_parent, Item **refptr)
{
8157
  (*ref)->fix_after_pullout(new_parent, ref);
Igor Babaev's avatar
Igor Babaev committed
8158
  if (get_depended_from() == new_parent)
8159 8160 8161 8162
    depended_from= NULL;
}


8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198
/**
  Mark references from inner selects used in group by clause

  The method is used by the walk method when called for the expressions
  from the group by clause. The callsare  occurred in the function
  fix_inner_refs invoked by JOIN::prepare.
  The parameter passed to Item_outer_ref::check_inner_refs_processor
  is the iterator over the list of inner references from the subselects
  of the select to be prepared. The function marks those references
  from this list whose occurrences are encountered in the group by 
  expressions passed to the walk method.  
 
  @param arg  pointer to the iterator over a list of inner references

  @return
    FALSE always
*/

bool Item_outer_ref::check_inner_refs_processor(uchar *arg)
{
  List_iterator_fast<Item_outer_ref> *it=
    ((List_iterator_fast<Item_outer_ref> *) arg);
  Item_outer_ref *ref;
  while ((ref= (*it)++))
  {
    if (ref == this)
    {
      ref->found_in_group_by= 1;
      break;
    }
  }
  (*it).rewind();
  return FALSE;
}


unknown's avatar
unknown committed
8199
/**
8200
  Compare two view column references for equality.
8201

unknown's avatar
unknown committed
8202 8203 8204 8205
  A view column reference is considered equal to another column
  reference if the second one is a view column and if both column
  references resolve to the same item. It is assumed that both
  items are of the same type.
8206

unknown's avatar
unknown committed
8207 8208
  @param item        item to compare with
  @param binary_cmp  make binary comparison
8209

unknown's avatar
unknown committed
8210
  @retval
8211
    TRUE    Referenced item is equal to given item
unknown's avatar
unknown committed
8212
  @retval
8213 8214 8215 8216 8217
    FALSE   otherwise
*/

bool Item_direct_view_ref::eq(const Item *item, bool binary_cmp) const
{
8218 8219 8220 8221 8222 8223
  if (item->type() == REF_ITEM)
  {
    Item_ref *item_ref= (Item_ref*) item;
    if (item_ref->ref_type() == VIEW_REF)
    {
      Item *item_ref_ref= *(item_ref->ref);
8224
      return ((*ref)->real_item() == item_ref_ref->real_item());
8225 8226 8227
    }
  }
  return FALSE;
8228
}
8229

Igor Babaev's avatar
Igor Babaev committed
8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246

Item_equal *Item_direct_view_ref::find_item_equal(COND_EQUAL *cond_equal)
{
  Item* field_item= real_item();
  if (field_item->type() != FIELD_ITEM)
    return NULL;
  return ((Item_field *) field_item)->find_item_equal(cond_equal);  
}


/**
  Check whether a reference to field item can be substituted for an equal item

  @details
  The function checks whether a substitution of a reference to field item for
  an equal item is valid.

Igor Babaev's avatar
Igor Babaev committed
8247
  @param arg   *arg != NULL <-> the reference is in the context
Igor Babaev's avatar
Igor Babaev committed
8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259
               where substitution for an equal item is valid

  @note
    See also the note for Item_field::subst_argument_checker

  @retval
    TRUE   substitution is valid
  @retval
    FALSE  otherwise
*/
bool Item_direct_view_ref::subst_argument_checker(uchar **arg)
{
Igor Babaev's avatar
Igor Babaev committed
8260 8261 8262 8263 8264 8265 8266 8267 8268 8269
  bool res= FALSE;
  if (*arg)
  { 
    Item *item= real_item();
    if (item->type() == FIELD_ITEM &&
        (*arg == (uchar *) Item::ANY_SUBST || 
         result_type() != STRING_RESULT ||
         (((Item_field *) item)->field->flags & BINARY_FLAG)))
      res= TRUE;
  }
Igor Babaev's avatar
Igor Babaev committed
8270 8271
  /* Block any substitution into the wrapped object */
  if (*arg)
Igor Babaev's avatar
Igor Babaev committed
8272
    *arg= NULL; 
Igor Babaev's avatar
Igor Babaev committed
8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357
  return res; 
}


/**
  Set a pointer to the multiple equality the view field reference belongs to
  (if any).

  @details
  The function looks for a multiple equality containing this item of the type
  Item_direct_view_ref among those referenced by arg.
  In the case such equality exists the function does the following.
  If the found multiple equality contains a constant, then the item
  is substituted for this constant, otherwise the function sets a pointer
  to the multiple equality in the item.

  @param arg    reference to list of multiple equalities where
                the item (this object) is to be looked for

  @note
    This function is supposed to be called as a callback parameter in calls
    of the compile method.

  @note 
    The function calls Item_field::equal_fields_propagator for the field item
    this->real_item() to do the job. Then it takes the pointer to equal_item
    from this field item and assigns it to this->item_equal.

  @return
    - pointer to the replacing constant item, if the field item was substituted
    - pointer to the field item, otherwise.
*/

Item *Item_direct_view_ref::equal_fields_propagator(uchar *arg)
{
  Item *field_item= real_item();
  if (field_item->type() != FIELD_ITEM)
    return this;
  Item *item= field_item->equal_fields_propagator(arg);
  set_item_equal(field_item->get_item_equal());
  field_item->set_item_equal(NULL);
  if (item != field_item)
    return item;
  return this;
}


/**
  Replace an Item_direct_view_ref for an equal Item_field evaluated earlier
  (if any).

  @details
  If this->item_equal points to some item and coincides with arg then
  the function returns a pointer to a field item that is referred to by the 
  first element of the item_equal list which the Item_direct_view_ref
  object belongs to unless item_equal contains  a constant item. In this
  case the function returns this constant item (if the substitution does
   not require conversion).   
  If the Item_direct_view_item object does not refer any Item_equal object
  'this' is returned .

  @param arg   NULL or points to so some item of the Item_equal type  

  @note
    This function is supposed to be called as a callback parameter in calls
    of the transformer method.

  @note 
    The function calls Item_field::replace_equal_field for the field item
    this->real_item() to do the job.

  @return
    - pointer to a replacement Item_field if there is a better equal item or
      a pointer to a constant equal item;
    - this - otherwise.
*/

Item *Item_direct_view_ref::replace_equal_field(uchar *arg)
{
  Item *field_item= real_item();
  if (field_item->type() != FIELD_ITEM)
    return this;
  field_item->set_item_equal(item_equal);
  Item *item= field_item->replace_equal_field(arg);
  field_item->set_item_equal(0);
Igor Babaev's avatar
Igor Babaev committed
8358
  return item != field_item ? item : this;
Igor Babaev's avatar
Igor Babaev committed
8359 8360 8361
}


unknown's avatar
SCRUM  
unknown committed
8362 8363
bool Item_default_value::eq(const Item *item, bool binary_cmp) const
{
unknown's avatar
SCRUM  
unknown committed
8364
  return item->type() == DEFAULT_VALUE_ITEM && 
unknown's avatar
SCRUM  
unknown committed
8365 8366 8367
    ((Item_default_value *)item)->arg->eq(arg, binary_cmp);
}

8368

8369
bool Item_default_value::fix_fields(THD *thd, Item **items)
unknown's avatar
SCRUM  
unknown committed
8370
{
8371
  Item *real_arg;
unknown's avatar
unknown committed
8372 8373
  Item_field *field_arg;
  Field *def_field;
8374
  DBUG_ASSERT(fixed == 0);
unknown's avatar
unknown committed
8375

unknown's avatar
SCRUM  
unknown committed
8376
  if (!arg)
8377 8378
  {
    fixed= 1;
unknown's avatar
unknown committed
8379
    return FALSE;
8380
  }
8381 8382 8383
  if (!arg->fixed && arg->fix_fields(thd, &arg))
    goto error;

8384

8385 8386
  real_arg= arg->real_item();
  if (real_arg->type() != FIELD_ITEM)
unknown's avatar
SCRUM  
unknown committed
8387
  {
8388
    my_error(ER_NO_DEFAULT_FOR_FIELD, MYF(0), arg->name);
8389
    goto error;
unknown's avatar
SCRUM  
unknown committed
8390
  }
8391

8392
  field_arg= (Item_field *)real_arg;
unknown's avatar
unknown committed
8393 8394
  if (field_arg->field->flags & NO_DEFAULT_VALUE_FLAG)
  {
8395
    my_error(ER_NO_DEFAULT_FOR_FIELD, MYF(0), field_arg->field->field_name);
8396
    goto error;
unknown's avatar
unknown committed
8397 8398
  }
  if (!(def_field= (Field*) sql_alloc(field_arg->field->size_of())))
8399
    goto error;
8400
  memcpy((void *)def_field, (void *)field_arg->field, field_arg->field->size_of());
unknown's avatar
unknown committed
8401 8402 8403
  def_field->move_field_offset((my_ptrdiff_t)
                               (def_field->table->s->default_values -
                                def_field->table->record[0]));
unknown's avatar
SCRUM  
unknown committed
8404
  set_field(def_field);
unknown's avatar
unknown committed
8405
  return FALSE;
8406 8407 8408 8409

error:
  context->process_error(thd);
  return TRUE;
unknown's avatar
SCRUM  
unknown committed
8410 8411
}

8412

8413
void Item_default_value::print(String *str, enum_query_type query_type)
unknown's avatar
SCRUM  
unknown committed
8414
{
unknown's avatar
SCRUM  
unknown committed
8415 8416
  if (!arg)
  {
8417
    str->append(STRING_WITH_LEN("default"));
unknown's avatar
SCRUM  
unknown committed
8418
    return;
unknown's avatar
SCRUM  
unknown committed
8419
  }
8420
  str->append(STRING_WITH_LEN("default("));
8421
  arg->print(str, query_type);
unknown's avatar
SCRUM  
unknown committed
8422 8423
  str->append(')');
}
8424

8425 8426 8427 8428 8429

int Item_default_value::save_in_field(Field *field_arg, bool no_conversions)
{
  if (!arg)
  {
8430 8431
    if (field_arg->flags & NO_DEFAULT_VALUE_FLAG &&
        field_arg->real_type() != MYSQL_TYPE_ENUM)
8432
    {
8433 8434 8435 8436 8437 8438 8439
      if (field_arg->reset())
      {
        my_message(ER_CANT_CREATE_GEOMETRY_OBJECT,
                   ER(ER_CANT_CREATE_GEOMETRY_OBJECT), MYF(0));
        return -1;
      }

8440 8441
      if (context->error_processor == &view_error_processor)
      {
8442
        TABLE_LIST *view= field_arg->table->pos_in_table_list->top_table();
8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457
        push_warning_printf(field_arg->table->in_use,
                            MYSQL_ERROR::WARN_LEVEL_WARN,
                            ER_NO_DEFAULT_FOR_VIEW_FIELD,
                            ER(ER_NO_DEFAULT_FOR_VIEW_FIELD),
                            view->view_db.str,
                            view->view_name.str);
      }
      else
      {
        push_warning_printf(field_arg->table->in_use,
                            MYSQL_ERROR::WARN_LEVEL_WARN,
                            ER_NO_DEFAULT_FOR_FIELD,
                            ER(ER_NO_DEFAULT_FOR_FIELD),
                            field_arg->field_name);
      }
8458 8459 8460 8461 8462 8463 8464 8465 8466
      return 1;
    }
    field_arg->set_default();
    return 0;
  }
  return Item_field::save_in_field(field_arg, no_conversions);
}


unknown's avatar
unknown committed
8467
/**
8468
  This method like the walk method traverses the item tree, but at the
unknown's avatar
unknown committed
8469
  same time it can replace some nodes in the tree.
8470
*/ 
8471

8472
Item *Item_default_value::transform(Item_transformer transformer, uchar *args)
8473
{
8474
  DBUG_ASSERT(!current_thd->stmt_arena->is_stmt_prepare());
8475

8476 8477 8478 8479 8480 8481 8482
  /*
    If the value of arg is NULL, then this object represents a constant,
    so further transformation is unnecessary (and impossible).
  */
  if (!arg)
    return 0;

8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498
  Item *new_item= arg->transform(transformer, args);
  if (!new_item)
    return 0;

  /*
    THD::change_item_tree() should be called only if the tree was
    really transformed, i.e. when a new item has been created.
    Otherwise we'll be allocating a lot of unnecessary memory for
    change records at each execution.
  */
  if (arg != new_item)
    current_thd->change_item_tree(&arg, new_item);
  return (this->*transformer)(args);
}


unknown's avatar
unknown committed
8499 8500 8501
bool Item_insert_value::eq(const Item *item, bool binary_cmp) const
{
  return item->type() == INSERT_VALUE_ITEM &&
8502
    ((Item_insert_value *)item)->arg->eq(arg, binary_cmp);
unknown's avatar
unknown committed
8503 8504 8505
}


8506
bool Item_insert_value::fix_fields(THD *thd, Item **items)
unknown's avatar
unknown committed
8507
{
8508
  DBUG_ASSERT(fixed == 0);
8509
  /* We should only check that arg is in first table */
8510
  if (!arg->fixed)
8511
  {
8512
    bool res;
8513
    TABLE_LIST *orig_next_table= context->last_name_resolution_table;
8514 8515
    context->last_name_resolution_table= context->first_name_resolution_table;
    res= arg->fix_fields(thd, &arg);
8516
    context->last_name_resolution_table= orig_next_table;
8517 8518
    if (res)
      return TRUE;
8519
  }
8520

unknown's avatar
unknown committed
8521
  if (arg->type() == REF_ITEM)
8522 8523
    arg= static_cast<Item_ref *>(arg)->ref[0];
  if (arg->type() != FIELD_ITEM)
unknown's avatar
unknown committed
8524
  {
8525 8526
    my_error(ER_BAD_FIELD_ERROR, MYF(0), "", "VALUES() function");
    return TRUE;
unknown's avatar
unknown committed
8527
  }
8528

unknown's avatar
unknown committed
8529
  Item_field *field_arg= (Item_field *)arg;
8530

unknown's avatar
unknown committed
8531 8532 8533 8534
  if (field_arg->field->table->insert_values)
  {
    Field *def_field= (Field*) sql_alloc(field_arg->field->size_of());
    if (!def_field)
unknown's avatar
unknown committed
8535
      return TRUE;
8536
    memcpy((void *)def_field, (void *)field_arg->field, field_arg->field->size_of());
unknown's avatar
unknown committed
8537 8538 8539
    def_field->move_field_offset((my_ptrdiff_t)
                                 (def_field->table->insert_values -
                                  def_field->table->record[0]));
unknown's avatar
unknown committed
8540 8541 8542 8543
    set_field(def_field);
  }
  else
  {
8544 8545 8546 8547
    static uchar null_bit=1;
    /* charset doesn't matter here */
    Field *tmp_field= new Field_string(0, 0, &null_bit, 1, Field::NONE,
                                field_arg->field->field_name, &my_charset_bin);
unknown's avatar
unknown committed
8548 8549 8550 8551
    if (tmp_field)
    {
      tmp_field->init(field_arg->field->table);
      set_field(tmp_field);
8552 8553
      // the index is important when read bits set
      tmp_field->field_index= field_arg->field->field_index;
unknown's avatar
unknown committed
8554
    }
unknown's avatar
unknown committed
8555
  }
unknown's avatar
unknown committed
8556
  return FALSE;
unknown's avatar
unknown committed
8557 8558
}

8559
void Item_insert_value::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
8560
{
8561
  str->append(STRING_WITH_LEN("values("));
8562
  arg->print(str, query_type);
unknown's avatar
unknown committed
8563 8564 8565
  str->append(')');
}

8566

unknown's avatar
unknown committed
8567
/**
unknown's avatar
unknown committed
8568 8569
  Find index of Field object which will be appropriate for item
  representing field of row being changed in trigger.
8570

unknown's avatar
unknown committed
8571 8572 8573
  @param thd     current thread context
  @param table   table of trigger (and where we looking for fields)
  @param table_grant_info   GRANT_INFO of the subject table
8574

unknown's avatar
unknown committed
8575
  @note
8576
    This function does almost the same as fix_fields() for Item_field
unknown's avatar
unknown committed
8577 8578 8579 8580 8581 8582 8583 8584
    but is invoked right after trigger definition parsing. Since at
    this stage we can't say exactly what Field object (corresponding
    to TABLE::record[0] or TABLE::record[1]) should be bound to this
    Item, we only find out index of the Field and then select concrete
    Field object in fix_fields() (by that time Table_trigger_list::old_field/
    new_field should point to proper array of Fields).
    It also binds Item_trigger_field to Table_triggers_list object for
    table of trigger which uses this item.
8585
*/
unknown's avatar
unknown committed
8586

unknown's avatar
unknown committed
8587 8588
void Item_trigger_field::setup_field(THD *thd, TABLE *table,
                                     GRANT_INFO *table_grant_info)
8589
{
8590
  /*
8591 8592 8593 8594 8595
    It is too early to mark fields used here, because before execution
    of statement that will invoke trigger other statements may use same
    TABLE object, so all such mark-up will be wiped out.
    So instead we do it in Table_triggers_list::mark_fields_used()
    method which is called during execution of these statements.
8596
  */
8597 8598
  enum_mark_columns save_mark_used_columns= thd->mark_used_columns;
  thd->mark_used_columns= MARK_COLUMNS_NONE;
unknown's avatar
unknown committed
8599 8600 8601 8602
  /*
    Try to find field by its name and if it will be found
    set field_idx properly.
  */
unknown's avatar
unknown committed
8603
  (void)find_field_in_table(thd, table, field_name, (uint) strlen(field_name),
8604
                            0, &field_idx);
8605
  thd->mark_used_columns= save_mark_used_columns;
unknown's avatar
unknown committed
8606
  triggers= table->triggers;
unknown's avatar
unknown committed
8607
  table_grants= table_grant_info;
8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619
}


bool Item_trigger_field::eq(const Item *item, bool binary_cmp) const
{
  return item->type() == TRIGGER_FIELD_ITEM &&
         row_version == ((Item_trigger_field *)item)->row_version &&
         !my_strcasecmp(system_charset_info, field_name,
                        ((Item_trigger_field *)item)->field_name);
}


8620
void Item_trigger_field::set_required_privilege(bool rw)
8621 8622 8623 8624 8625 8626 8627 8628 8629
{
  /*
    Require SELECT and UPDATE privilege if this field will be read and
    set, and only UPDATE privilege for setting the field.
  */
  want_privilege= (rw ? SELECT_ACL | UPDATE_ACL : UPDATE_ACL);
}


8630
bool Item_trigger_field::set_value(THD *thd, sp_rcontext * /*ctx*/, Item **it)
8631
{
8632
  Item *item= sp_prepare_func_item(thd, it);
8633

8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653
  if (!item)
    return true;

  if (!fixed)
  {
    if (fix_fields(thd, NULL))
      return true;
  }

  // NOTE: field->table->copy_blobs should be false here, but let's
  // remember the value at runtime to avoid subtle bugs.
  bool copy_blobs_saved= field->table->copy_blobs;

  field->table->copy_blobs= true;

  int err_code= item->save_in_field(field, 0);

  field->table->copy_blobs= copy_blobs_saved;

  return err_code < 0;
8654 8655 8656
}


8657
bool Item_trigger_field::fix_fields(THD *thd, Item **items)
8658 8659 8660 8661 8662 8663
{
  /*
    Since trigger is object tightly associated with TABLE object most
    of its set up can be performed during trigger loading i.e. trigger
    parsing! So we have little to do in fix_fields. :)
  */
unknown's avatar
unknown committed
8664

8665
  DBUG_ASSERT(fixed == 0);
8666

unknown's avatar
unknown committed
8667 8668
  /* Set field. */

unknown's avatar
unknown committed
8669
  if (field_idx != (uint)-1)
8670
  {
unknown's avatar
unknown committed
8671 8672 8673 8674 8675 8676 8677 8678
#ifndef NO_EMBEDDED_ACCESS_CHECKS
    /*
      Check access privileges for the subject table. We check privileges only
      in runtime.
    */

    if (table_grants)
    {
8679
      table_grants->want_privilege= want_privilege;
unknown's avatar
unknown committed
8680

unknown's avatar
unknown committed
8681 8682
      if (check_grant_column(thd, table_grants, triggers->trigger_table->s->db.str,
                             triggers->trigger_table->s->table_name.str, field_name,
unknown's avatar
unknown committed
8683 8684 8685 8686 8687
                             strlen(field_name), thd->security_ctx))
        return TRUE;
    }
#endif // NO_EMBEDDED_ACCESS_CHECKS

unknown's avatar
unknown committed
8688 8689
    field= (row_version == OLD_ROW) ? triggers->old_field[field_idx] :
                                      triggers->new_field[field_idx];
8690 8691
    set_field(field);
    fixed= 1;
unknown's avatar
unknown committed
8692
    return FALSE;
8693 8694 8695 8696
  }

  my_error(ER_BAD_FIELD_ERROR, MYF(0), field_name,
           (row_version == NEW_ROW) ? "NEW" : "OLD");
unknown's avatar
unknown committed
8697
  return TRUE;
8698 8699 8700
}


8701
void Item_trigger_field::print(String *str, enum_query_type query_type)
8702 8703 8704 8705 8706 8707 8708 8709 8710
{
  str->append((row_version == NEW_ROW) ? "NEW" : "OLD", 3);
  str->append('.');
  str->append(field_name);
}


void Item_trigger_field::cleanup()
{
8711
  want_privilege= original_privilege;
8712 8713 8714 8715 8716 8717 8718 8719
  /*
    Since special nature of Item_trigger_field we should not do most of
    things from Item_field::cleanup() or Item_ident::cleanup() here.
  */
  Item::cleanup();
}


unknown's avatar
unknown committed
8720 8721
Item_result item_cmp_type(Item_result a,Item_result b)
{
8722 8723 8724
  if (a == b)
    return a;
  if (a == ROW_RESULT || b == ROW_RESULT)
unknown's avatar
unknown committed
8725
    return ROW_RESULT;
8726
  if (a == TIME_RESULT || b == TIME_RESULT)
8727
    return TIME_RESULT;
unknown's avatar
unknown committed
8728 8729 8730
  if ((a == INT_RESULT || a == DECIMAL_RESULT) &&
      (b == INT_RESULT || b == DECIMAL_RESULT))
    return DECIMAL_RESULT;
8731
  return REAL_RESULT;
unknown's avatar
unknown committed
8732 8733 8734
}


8735
void resolve_const_item(THD *thd, Item **ref, Item *comp_item)
unknown's avatar
unknown committed
8736
{
8737
  Item *item= *ref;
8738
  Item *new_item= NULL;
unknown's avatar
unknown committed
8739
  if (item->basic_const_item())
8740
    return;                                     // Can't be better
8741
  Item_result res_type=item_cmp_type(comp_item->cmp_type(), item->cmp_type());
unknown's avatar
unknown committed
8742 8743
  char *name=item->name;			// Alloced by sql_alloc

8744
  switch (res_type) {
8745 8746 8747 8748
  case TIME_RESULT:
  {
    bool is_null;
    Item **ref_copy= ref;
Sergei Golubchik's avatar
Sergei Golubchik committed
8749
    /* the following call creates a constant and puts it in new_item */
8750 8751 8752
    get_datetime_value(thd, &ref_copy, &new_item, comp_item, &is_null);
    if (is_null)
      new_item= new Item_null(name);
8753
    break;
8754
  }
unknown's avatar
unknown committed
8755
  case STRING_RESULT:
unknown's avatar
unknown committed
8756 8757
  {
    char buff[MAX_FIELD_WIDTH];
unknown's avatar
unknown committed
8758
    String tmp(buff,sizeof(buff),&my_charset_bin),*result;
unknown's avatar
unknown committed
8759 8760
    result=item->val_str(&tmp);
    if (item->null_value)
8761 8762 8763 8764 8765 8766 8767
      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
8768
    break;
unknown's avatar
unknown committed
8769
  }
unknown's avatar
unknown committed
8770
  case INT_RESULT:
unknown's avatar
unknown committed
8771 8772 8773 8774
  {
    longlong result=item->val_int();
    uint length=item->max_length;
    bool null_value=item->null_value;
8775 8776
    new_item= (null_value ? (Item*) new Item_null(name) :
               (Item*) new Item_int(name, result, length));
unknown's avatar
unknown committed
8777
    break;
unknown's avatar
unknown committed
8778
  }
8779
  case ROW_RESULT:
8780
  if (item->type() == Item::ROW_ITEM && comp_item->type() == Item::ROW_ITEM)
8781
  {
8782 8783 8784 8785 8786 8787 8788 8789
    /*
      Substitute constants only in Item_rows. Don't affect other Items
      with ROW_RESULT (eg Item_singlerow_subselect).

      For such Items more optimal is to detect if it is constant and replace
      it with Item_row. This would optimize queries like this:
      SELECT * FROM t1 WHERE (a,b) = (SELECT a,b FROM t2 LIMIT 1);
    */
unknown's avatar
unknown committed
8790 8791 8792
    Item_row *item_row= (Item_row*) item;
    Item_row *comp_item_row= (Item_row*) comp_item;
    uint col;
8793 8794 8795
    new_item= 0;
    /*
      If item and comp_item are both Item_rows and have same number of cols
unknown's avatar
unknown committed
8796 8797 8798
      then process items in Item_row one by one.
      We can't ignore NULL values here as this item may be used with <=>, in
      which case NULL's are significant.
8799
    */
unknown's avatar
unknown committed
8800 8801 8802 8803
    DBUG_ASSERT(item->result_type() == comp_item->result_type());
    DBUG_ASSERT(item_row->cols() == comp_item_row->cols());
    col= item_row->cols();
    while (col-- > 0)
8804 8805
      resolve_const_item(thd, item_row->addr(col),
                         comp_item_row->element_index(col));
unknown's avatar
unknown committed
8806
    break;
8807
  }
8808
  /* Fallthrough */
unknown's avatar
unknown committed
8809
  case REAL_RESULT:
unknown's avatar
unknown committed
8810
  {						// It must REAL_RESULT
8811
    double result= item->val_real();
unknown's avatar
unknown committed
8812 8813
    uint length=item->max_length,decimals=item->decimals;
    bool null_value=item->null_value;
8814
    new_item= (null_value ? (Item*) new Item_null(name) : (Item*)
unknown's avatar
unknown committed
8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828
               new Item_float(name, result, decimals, length));
    break;
  }
  case DECIMAL_RESULT:
  {
    my_decimal decimal_value;
    my_decimal *result= item->val_decimal(&decimal_value);
    uint length= item->max_length, decimals= item->decimals;
    bool null_value= item->null_value;
    new_item= (null_value ?
               (Item*) new Item_null(name) :
               (Item*) new Item_decimal(name, result, length, decimals));
    break;
  }
Michael Widenius's avatar
Michael Widenius committed
8829
  case IMPOSSIBLE_RESULT:
unknown's avatar
unknown committed
8830
    DBUG_ASSERT(0);
Michael Widenius's avatar
Michael Widenius committed
8831
    break;
unknown's avatar
unknown committed
8832
  }
8833 8834
  if (new_item)
    thd->change_item_tree(ref, new_item);
unknown's avatar
unknown committed
8835 8836
}

unknown's avatar
unknown committed
8837
/**
8838
  Compare the value stored in field with the expression from the query.
unknown's avatar
unknown committed
8839

8840 8841
  @param field   Field which the Item is stored in after conversion
  @param item    Original expression from query
8842

8843 8844 8845 8846
  @return Returns an integer greater than, equal to, or less than 0 if
          the value stored in the field is greater than, equal to,
          or less than the original Item. A 0 may also be returned if 
          out of memory.          
8847

8848
  @note We use this in the range optimizer/partition pruning,
8849 8850
        because in some cases we can't store the value in the field
        without some precision/character loss.
8851

8852 8853 8854
        We similarly use it to verify that expressions like
        BIGINT_FIELD <cmp> <literal value>
        is done correctly (as int/decimal/float according to literal type).
Sergei Golubchik's avatar
Sergei Golubchik committed
8855

8856 8857
  @todo rewrite it to use Arg_comparator (currently it's a simplified and
        incomplete version of it)
unknown's avatar
unknown committed
8858 8859
*/

8860
int stored_field_cmp_to_item(THD *thd, Field *field, Item *item)
unknown's avatar
unknown committed
8861 8862 8863 8864 8865 8866 8867
{
  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];
8868 8869
    
    String item_tmp(item_buff,sizeof(item_buff),&my_charset_bin);
unknown's avatar
unknown committed
8870
    String field_tmp(field_buff,sizeof(field_buff),&my_charset_bin);
8871 8872 8873 8874 8875
    String *item_result= item->val_str(&item_tmp);
    /*
      Some implementations of Item::val_str(String*) actually modify
      the field Item::null_value, hence we can't check it earlier.
    */
unknown's avatar
unknown committed
8876
    if (item->null_value)
8877
      return 0;
8878
    String *field_result= field->val_str(&field_tmp);
8879

8880 8881
    enum_field_types field_type= field->type();

8882 8883
    if (field_type == MYSQL_TYPE_DATE || field_type == MYSQL_TYPE_DATETIME ||
        field_type == MYSQL_TYPE_TIMESTAMP)
8884
    {
8885 8886 8887 8888
      enum_mysql_timestamp_type type= MYSQL_TIMESTAMP_ERROR;

      if (field_type == MYSQL_TYPE_DATE)
        type= MYSQL_TIMESTAMP_DATE;
Michael Widenius's avatar
Michael Widenius committed
8889
      else
8890 8891 8892 8893 8894 8895 8896 8897
        type= MYSQL_TIMESTAMP_DATETIME;
        
      const char *field_name= field->field_name;
      MYSQL_TIME field_time, item_time;
      get_mysql_time_from_str(thd, field_result, type, field_name, &field_time);
      get_mysql_time_from_str(thd, item_result, type, field_name,  &item_time);

      return my_time_compare(&field_time, &item_time);
8898
    }
Guilhem Bichot's avatar
Guilhem Bichot committed
8899
    return sortcmp(field_result, item_result, field->charset());
unknown's avatar
unknown committed
8900 8901
  }
  if (res_type == INT_RESULT)
8902
    return 0;					// Both are of type int
unknown's avatar
unknown committed
8903 8904 8905 8906 8907 8908
  if (res_type == DECIMAL_RESULT)
  {
    my_decimal item_buf, *item_val,
               field_buf, *field_val;
    item_val= item->val_decimal(&item_buf);
    if (item->null_value)
8909
      return 0;
unknown's avatar
unknown committed
8910
    field_val= field->val_decimal(&field_buf);
Guilhem Bichot's avatar
Guilhem Bichot committed
8911
    return my_decimal_cmp(field_val, item_val);
unknown's avatar
unknown committed
8912
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
8913 8914 8915 8916
  /*
    We have to check field->cmp_type() instead of res_type,
    as result_type() - and thus res_type - can never be TIME_RESULT (yet).
  */
8917 8918
  if (field->cmp_type() == TIME_RESULT)
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
8919 8920 8921 8922 8923 8924 8925 8926
    MYSQL_TIME field_time, item_time;
    if (field->type() == MYSQL_TYPE_TIME)
    {
      field->get_time(&field_time);
      item->get_time(&item_time);
    }
    else
    {
8927 8928
      field->get_date(&field_time, TIME_INVALID_DATES);
      item->get_date(&item_time, TIME_INVALID_DATES);
Sergei Golubchik's avatar
Sergei Golubchik committed
8929 8930
    }
    return my_time_compare(&field_time, &item_time);
8931
  }
8932 8933 8934 8935 8936 8937
  /*
    The patch for Bug#13463415 started using this function for comparing
    BIGINTs. That uncovered a bug in Visual Studio 32bit optimized mode.
    Prefixing the auto variables with volatile fixes the problem....
  */
  volatile double result= item->val_real();
unknown's avatar
unknown committed
8938
  if (item->null_value)
8939
    return 0;
8940
  volatile double field_result= field->val_real();
8941 8942 8943
  if (field_result < result)
    return -1;
  else if (field_result > result)
unknown's avatar
unknown committed
8944
    return 1;
8945
  return 0;
unknown's avatar
unknown committed
8946 8947
}

8948
Item_cache* Item_cache::get_cache(const Item *item)
8949
{
8950
  return get_cache(item, item->cmp_type());
8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965
}


/**
  Get a cache item of given type.

  @param item         value to be cached
  @param type         required type of cache

  @return cache item
*/

Item_cache* Item_cache::get_cache(const Item *item, const Item_result type)
{
  switch (type) {
8966
  case INT_RESULT:
8967
    return new Item_cache_int(item->field_type());
8968 8969
  case REAL_RESULT:
    return new Item_cache_real();
unknown's avatar
unknown committed
8970 8971
  case DECIMAL_RESULT:
    return new Item_cache_decimal();
8972
  case STRING_RESULT:
8973
    return new Item_cache_str(item);
unknown's avatar
unknown committed
8974 8975
  case ROW_RESULT:
    return new Item_cache_row();
8976
  case TIME_RESULT:
Sergei Golubchik's avatar
Sergei Golubchik committed
8977
    return new Item_cache_temporal(item->field_type());
Michael Widenius's avatar
Michael Widenius committed
8978
  case IMPOSSIBLE_RESULT:
8979
    DBUG_ASSERT(0);
Michael Widenius's avatar
Michael Widenius committed
8980
    break;
8981
  }
Michael Widenius's avatar
Michael Widenius committed
8982
  return 0;                                     // Impossible
8983 8984
}

8985 8986
void Item_cache::store(Item *item)
{
8987 8988 8989
  example= item;
  if (!item)
    null_value= TRUE;
8990 8991
  value_cached= FALSE;
}
unknown's avatar
unknown committed
8992

8993
void Item_cache::print(String *str, enum_query_type query_type)
unknown's avatar
unknown committed
8994
{
8995 8996 8997 8998 8999
  if (value_cached)
  {
    print_value(str);
    return;
  }
9000
  str->append(STRING_WITH_LEN("<cache>("));
unknown's avatar
unknown committed
9001
  if (example)
9002
    example->print(str, query_type);
unknown's avatar
unknown committed
9003
  else
9004
    Item::print(str, query_type);
unknown's avatar
unknown committed
9005 9006 9007
  str->append(')');
}

unknown's avatar
unknown committed
9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021
/**
  Assign to this cache NULL value if it is possible
*/

void Item_cache::set_null()
{
  if (maybe_null)
  {
    null_value= TRUE;
    value_cached= TRUE;
  }
}


9022
bool  Item_cache_int::cache_value()
unknown's avatar
unknown committed
9023
{
9024 9025
  if (!example)
    return FALSE;
9026 9027 9028 9029
  value_cached= TRUE;
  value= example->val_int_result();
  null_value= example->null_value;
  unsigned_flag= example->unsigned_flag;
9030
  return TRUE;
unknown's avatar
unknown committed
9031 9032 9033 9034 9035 9036
}


String *Item_cache_int::val_str(String *str)
{
  DBUG_ASSERT(fixed == 1);
9037
  if (!has_value())
9038
    return NULL;
9039
  str->set_int(value, unsigned_flag, default_charset());
unknown's avatar
unknown committed
9040 9041 9042 9043 9044 9045 9046
  return str;
}


my_decimal *Item_cache_int::val_decimal(my_decimal *decimal_val)
{
  DBUG_ASSERT(fixed == 1);
9047
  if (!has_value())
9048
    return NULL;
unknown's avatar
unknown committed
9049 9050
  int2my_decimal(E_DEC_FATAL_ERROR, value, unsigned_flag, decimal_val);
  return decimal_val;
unknown's avatar
unknown committed
9051 9052
}

9053 9054 9055
double Item_cache_int::val_real()
{
  DBUG_ASSERT(fixed == 1);
9056
  if (!has_value())
9057
    return 0.0;
9058 9059
  return (double) value;
}
unknown's avatar
unknown committed
9060

9061
longlong Item_cache_int::val_int()
unknown's avatar
unknown committed
9062
{
9063
  DBUG_ASSERT(fixed == 1);
9064
  if (!has_value())
9065
    return 0;
9066
  return value;
unknown's avatar
unknown committed
9067 9068
}

Sergei Golubchik's avatar
Sergei Golubchik committed
9069
int Item_cache_int::save_in_field(Field *field, bool no_conversions)
9070
{
Sergei Golubchik's avatar
Sergei Golubchik committed
9071
  int error;
Sergei Golubchik's avatar
Sergei Golubchik committed
9072
  if (!has_value())
Sergei Golubchik's avatar
Sergei Golubchik committed
9073
    return set_field_to_null_with_conversions(field, no_conversions);
9074

Sergei Golubchik's avatar
Sergei Golubchik committed
9075 9076
  field->set_notnull();
  error= field->store(value, unsigned_flag);
9077

Sergei Golubchik's avatar
Sergei Golubchik committed
9078
  return error ? error : field->table->in_use->is_error() ? 1 : 0;
9079 9080 9081
}


Sergei Golubchik's avatar
Sergei Golubchik committed
9082 9083
Item_cache_temporal::Item_cache_temporal(enum_field_types field_type_arg):
  Item_cache_int(field_type_arg)
9084
{
Sergei Golubchik's avatar
Sergei Golubchik committed
9085 9086
  if (mysql_type_to_time_type(cached_field_type) == MYSQL_TIMESTAMP_ERROR)
    cached_field_type= MYSQL_TYPE_DATETIME;
9087 9088 9089
}


9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101
longlong Item_cache_temporal::val_temporal_packed()
{
  DBUG_ASSERT(fixed == 1);
  if ((!value_cached && !cache_value()) || null_value)
  {
    null_value= TRUE;
    return 0;
  }
  return value;
}


Sergei Golubchik's avatar
Sergei Golubchik committed
9102
String *Item_cache_temporal::val_str(String *str)
9103
{
Sergei Golubchik's avatar
Sergei Golubchik committed
9104
  DBUG_ASSERT(fixed == 1);
Sergei Golubchik's avatar
Sergei Golubchik committed
9105
  if (!has_value())
Sergei Golubchik's avatar
Sergei Golubchik committed
9106 9107 9108 9109 9110
  {
    null_value= true;
    return NULL;
  }
  return val_string_from_date(str);
9111 9112 9113
}


9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149
my_decimal *Item_cache_temporal::val_decimal(my_decimal *decimal_value)
{
  DBUG_ASSERT(fixed == 1);
  if ((!value_cached && !cache_value()) || null_value)
  {
    null_value= true;
    return NULL;
  }
  return val_decimal_from_date(decimal_value);
}


longlong Item_cache_temporal::val_int()
{
  DBUG_ASSERT(fixed == 1);
  if ((!value_cached && !cache_value()) || null_value)
  {
    null_value= true;
    return 0;
  }
  return val_int_from_date();
}


double Item_cache_temporal::val_real()
{
  DBUG_ASSERT(fixed == 1);
  if ((!value_cached && !cache_value()) || null_value)
  {
    null_value= true;
    return 0;
  }
  return val_real_from_date();
}


Sergei Golubchik's avatar
Sergei Golubchik committed
9150
bool  Item_cache_temporal::cache_value()
9151
{
Sergei Golubchik's avatar
Sergei Golubchik committed
9152 9153
  if (!example)
    return false;
Sergei Golubchik's avatar
Sergei Golubchik committed
9154

Sergei Golubchik's avatar
Sergei Golubchik committed
9155 9156 9157
  value_cached= true;
 
  MYSQL_TIME ltime;
9158
  if (example->get_date_result(&ltime, 0))
Sergei Golubchik's avatar
Sergei Golubchik committed
9159 9160 9161 9162 9163
    value=0;
  else
    value= pack_time(&ltime);
  null_value= example->null_value;
  return true;
9164 9165
}

Sergei Golubchik's avatar
Sergei Golubchik committed
9166

9167
bool Item_cache_temporal::get_date(MYSQL_TIME *ltime, ulonglong fuzzydate)
9168
{
Sergei Golubchik's avatar
Sergei Golubchik committed
9169
  ErrConvInteger str(value);
9170

Sergei Golubchik's avatar
Sergei Golubchik committed
9171
  if (!has_value())
9172 9173 9174 9175
  {
    bzero((char*) ltime,sizeof(*ltime));
    return 1;
  }
9176

Sergei Golubchik's avatar
Sergei Golubchik committed
9177 9178 9179
  unpack_time(value, ltime);
  ltime->time_type= mysql_type_to_time_type(field_type());
  if (ltime->time_type == MYSQL_TIMESTAMP_TIME)
9180
  {
Sergei Golubchik's avatar
Sergei Golubchik committed
9181 9182
    ltime->hour+= (ltime->month*32+ltime->day)*24;
    ltime->month= ltime->day= 0;
9183
  }
Sergei Golubchik's avatar
Sergei Golubchik committed
9184 9185
  return 0;
 
9186 9187 9188
}


Sergei Golubchik's avatar
Sergei Golubchik committed
9189
int Item_cache_temporal::save_in_field(Field *field, bool no_conversions)
9190
{
9191 9192
  MYSQL_TIME ltime;
  if (get_date(&ltime, 0))
9193 9194
    return set_field_to_null_with_conversions(field, no_conversions);
  field->set_notnull();
9195
  int error= field->store_time_dec(&ltime, decimals);
9196
  return error ? error : field->table->in_use->is_error() ? 1 : 0;
9197 9198
}

Michael Widenius's avatar
Michael Widenius committed
9199

9200
void Item_cache_temporal::store_packed(longlong val_arg, Item *example)
9201
{
Sergei Golubchik's avatar
Sergei Golubchik committed
9202
  /* An explicit values is given, save it. */
9203
  store(example);
Sergei Golubchik's avatar
Sergei Golubchik committed
9204 9205 9206
  value_cached= true;
  value= val_arg;
  null_value= false;
9207 9208
}

Sergei Golubchik's avatar
Sergei Golubchik committed
9209

9210
bool Item_cache_real::cache_value()
9211
{
9212 9213
  if (!example)
    return FALSE;
9214 9215 9216
  value_cached= TRUE;
  value= example->val_result();
  null_value= example->null_value;
9217
  return TRUE;
9218 9219 9220 9221 9222 9223
}


double Item_cache_real::val_real()
{
  DBUG_ASSERT(fixed == 1);
9224
  if (!has_value())
9225
    return 0.0;
9226 9227
  return value;
}
unknown's avatar
unknown committed
9228

unknown's avatar
unknown committed
9229 9230 9231
longlong Item_cache_real::val_int()
{
  DBUG_ASSERT(fixed == 1);
9232
  if (!has_value())
9233
    return 0;
9234
  return (longlong) rint(value);
unknown's avatar
unknown committed
9235 9236 9237 9238 9239 9240
}


String* Item_cache_real::val_str(String *str)
{
  DBUG_ASSERT(fixed == 1);
9241
  if (!has_value())
9242
    return NULL;
9243
  str->set_real(value, decimals, default_charset());
unknown's avatar
unknown committed
9244 9245 9246 9247 9248 9249 9250
  return str;
}


my_decimal *Item_cache_real::val_decimal(my_decimal *decimal_val)
{
  DBUG_ASSERT(fixed == 1);
9251
  if (!has_value())
9252
    return NULL;
unknown's avatar
unknown committed
9253 9254 9255 9256 9257
  double2my_decimal(E_DEC_FATAL_ERROR, value, decimal_val);
  return decimal_val;
}


9258
bool Item_cache_decimal::cache_value()
unknown's avatar
unknown committed
9259
{
9260 9261
  if (!example)
    return FALSE;
9262 9263 9264
  value_cached= TRUE;
  my_decimal *val= example->val_decimal_result(&decimal_value);
  if (!(null_value= example->null_value) && val != &decimal_value)
unknown's avatar
unknown committed
9265
    my_decimal2decimal(val, &decimal_value);
9266
  return TRUE;
unknown's avatar
unknown committed
9267 9268 9269 9270 9271 9272
}

double Item_cache_decimal::val_real()
{
  DBUG_ASSERT(fixed);
  double res;
9273
  if (!has_value())
9274
    return 0.0;
unknown's avatar
unknown committed
9275 9276 9277 9278 9279 9280 9281 9282
  my_decimal2double(E_DEC_FATAL_ERROR, &decimal_value, &res);
  return res;
}

longlong Item_cache_decimal::val_int()
{
  DBUG_ASSERT(fixed);
  longlong res;
9283
  if (!has_value())
9284
    return 0;
unknown's avatar
unknown committed
9285 9286 9287 9288 9289 9290 9291
  my_decimal2int(E_DEC_FATAL_ERROR, &decimal_value, unsigned_flag, &res);
  return res;
}

String* Item_cache_decimal::val_str(String *str)
{
  DBUG_ASSERT(fixed);
9292
  if (!has_value())
9293
    return NULL;
unknown's avatar
unknown committed
9294 9295 9296 9297 9298 9299 9300 9301 9302
  my_decimal_round(E_DEC_FATAL_ERROR, &decimal_value, decimals, FALSE,
                   &decimal_value);
  my_decimal2string(E_DEC_FATAL_ERROR, &decimal_value, 0, 0, 0, str);
  return str;
}

my_decimal *Item_cache_decimal::val_decimal(my_decimal *val)
{
  DBUG_ASSERT(fixed);
9303
  if (!has_value())
9304
    return NULL;
unknown's avatar
unknown committed
9305 9306 9307 9308
  return &decimal_value;
}


9309
bool Item_cache_str::cache_value()
9310
{
9311 9312
  if (!example)
    return FALSE;
9313 9314 9315 9316
  value_cached= TRUE;
  value_buff.set(buffer, sizeof(buffer), example->collation.collation);
  value= example->str_result(&value_buff);
  if ((null_value= example->null_value))
9317
    value= 0;
9318
  else if (value != &value_buff)
9319 9320 9321 9322 9323 9324 9325 9326 9327
  {
    /*
      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;
    */
9328 9329
    value_buff.copy(*value);
    value= &value_buff;
9330
  }
9331
  return TRUE;
9332
}
9333

9334
double Item_cache_str::val_real()
9335 9336
{
  DBUG_ASSERT(fixed == 1);
9337 9338
  int err_not_used;
  char *end_not_used;
9339
  if (!has_value())
9340
    return 0.0;
9341
  if (value)
9342
    return my_strntod(value->charset(), (char*) value->ptr(),
9343 9344
		      value->length(), &end_not_used, &err_not_used);
  return (double) 0;
9345
}
9346 9347


9348 9349
longlong Item_cache_str::val_int()
{
9350
  DBUG_ASSERT(fixed == 1);
9351
  int err;
9352
  if (!has_value())
9353
    return 0;
9354 9355
  if (value)
    return my_strntoll(value->charset(), value->ptr(),
9356
		       value->length(), 10, (char**) 0, &err);
9357 9358 9359
  else
    return (longlong)0;
}
unknown's avatar
unknown committed
9360

9361 9362 9363 9364

String* Item_cache_str::val_str(String *str)
{
  DBUG_ASSERT(fixed == 1);
9365
  if (!has_value())
9366
    return 0;
9367 9368 9369 9370
  return value;
}


unknown's avatar
unknown committed
9371 9372 9373
my_decimal *Item_cache_str::val_decimal(my_decimal *decimal_val)
{
  DBUG_ASSERT(fixed == 1);
9374
  if (!has_value())
9375
    return NULL;
unknown's avatar
unknown committed
9376 9377 9378 9379 9380 9381 9382
  if (value)
    string2my_decimal(E_DEC_FATAL_ERROR, value, decimal_val);
  else
    decimal_val= 0;
  return decimal_val;
}

9383

9384 9385
int Item_cache_str::save_in_field(Field *field, bool no_conversions)
{
9386
  if (!has_value())
Michael Widenius's avatar
Michael Widenius committed
9387
    return set_field_to_null_with_conversions(field, no_conversions);
9388 9389 9390 9391 9392 9393
  int res= Item_cache::save_in_field(field, no_conversions);
  return (is_varbinary && field->type() == MYSQL_TYPE_STRING &&
          value->length() < field->field_length) ? 1 : res;
}


unknown's avatar
unknown committed
9394 9395
bool Item_cache_row::allocate(uint num)
{
unknown's avatar
unknown committed
9396
  item_count= num;
unknown's avatar
unknown committed
9397
  THD *thd= current_thd;
unknown's avatar
unknown committed
9398 9399
  return (!(values= 
	    (Item_cache **) thd->calloc(sizeof(Item_cache *)*item_count)));
unknown's avatar
unknown committed
9400 9401
}

9402

unknown's avatar
unknown committed
9403 9404
bool Item_cache_row::setup(Item * item)
{
unknown's avatar
unknown committed
9405
  example= item;
unknown's avatar
unknown committed
9406 9407
  if (!values && allocate(item->cols()))
    return 1;
unknown's avatar
unknown committed
9408
  for (uint i= 0; i < item_count; i++)
unknown's avatar
unknown committed
9409
  {
9410
    Item *el= item->element_index(i);
unknown's avatar
unknown committed
9411
    Item_cache *tmp;
9412
    if (!(tmp= values[i]= Item_cache::get_cache(el)))
unknown's avatar
unknown committed
9413
      return 1;
unknown's avatar
unknown committed
9414
    tmp->setup(el);
unknown's avatar
unknown committed
9415 9416 9417 9418
  }
  return 0;
}

9419

unknown's avatar
unknown committed
9420 9421
void Item_cache_row::store(Item * item)
{
9422 9423 9424 9425 9426 9427
  example= item;
  if (!item)
  {
    null_value= TRUE;
    return;
  }
9428 9429 9430 9431 9432
  for (uint i= 0; i < item_count; i++)
    values[i]->store(item->element_index(i));
}


9433
bool Item_cache_row::cache_value()
9434
{
9435 9436
  if (!example)
    return FALSE;
9437
  value_cached= TRUE;
unknown's avatar
unknown committed
9438
  null_value= 0;
9439
  example->bring_value();
unknown's avatar
unknown committed
9440
  for (uint i= 0; i < item_count; i++)
unknown's avatar
unknown committed
9441
  {
9442
    values[i]->cache_value();
unknown's avatar
unknown committed
9443 9444
    null_value|= values[i]->null_value;
  }
9445
  return TRUE;
unknown's avatar
unknown committed
9446 9447
}

9448

unknown's avatar
unknown committed
9449 9450 9451 9452 9453
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
9454
  my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
unknown's avatar
unknown committed
9455 9456 9457
  DBUG_VOID_RETURN;
}

9458

unknown's avatar
unknown committed
9459 9460
bool Item_cache_row::check_cols(uint c)
{
unknown's avatar
unknown committed
9461
  if (c != item_count)
unknown's avatar
unknown committed
9462
  {
unknown's avatar
unknown committed
9463
    my_error(ER_OPERAND_COLUMNS, MYF(0), c);
unknown's avatar
unknown committed
9464 9465 9466 9467 9468
    return 1;
  }
  return 0;
}

9469

unknown's avatar
unknown committed
9470 9471
bool Item_cache_row::null_inside()
{
unknown's avatar
unknown committed
9472
  for (uint i= 0; i < item_count; i++)
unknown's avatar
unknown committed
9473 9474 9475 9476 9477 9478 9479 9480
  {
    if (values[i]->cols() > 1)
    {
      if (values[i]->null_inside())
	return 1;
    }
    else
    {
9481
      values[i]->update_null_value();
unknown's avatar
unknown committed
9482 9483 9484 9485 9486 9487 9488
      if (values[i]->null_value)
	return 1;
    }
  }
  return 0;
}

9489

unknown's avatar
unknown committed
9490 9491
void Item_cache_row::bring_value()
{
9492 9493 9494 9495
  if (!example)
    return;
  example->bring_value();
  null_value= example->null_value;
unknown's avatar
unknown committed
9496
  for (uint i= 0; i < item_count; i++)
unknown's avatar
unknown committed
9497 9498
    values[i]->bring_value();
}
unknown's avatar
unknown committed
9499

9500

unknown's avatar
unknown committed
9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514
/**
  Assign to this cache NULL value if it is possible
*/

void Item_cache_row::set_null()
{
  Item_cache::set_null();
  if (!values)
    return;
  for (uint i= 0; i < item_count; i++)
    values[i]->set_null();
};


9515 9516
Item_type_holder::Item_type_holder(THD *thd, Item *item)
  :Item(thd, item), enum_set_typelib(0), fld_type(get_real_type(item))
9517 9518
{
  DBUG_ASSERT(item->fixed);
9519
  maybe_null= item->maybe_null;
9520
  collation.set(item->collation);
9521
  get_full_info(item);
unknown's avatar
unknown committed
9522 9523 9524
  /* fix variable decimals which always is NOT_FIXED_DEC */
  if (Field::result_merge_type(fld_type) == INT_RESULT)
    decimals= 0;
unknown's avatar
unknown committed
9525
  prev_decimal_int_part= item->decimal_int_part();
9526
#ifdef HAVE_SPATIAL
9527
  if (item->field_type() == MYSQL_TYPE_GEOMETRY)
9528
    geometry_type= item->get_geometry_type();
9529
#endif /* HAVE_SPATIAL */
9530 9531 9532
}


unknown's avatar
unknown committed
9533 9534
/**
  Return expression type of Item_type_holder.
9535

unknown's avatar
unknown committed
9536 9537
  @return
    Item_result (type of internal MySQL expression result)
9538 9539
*/

9540
Item_result Item_type_holder::result_type() const
9541
{
9542
  return Field::result_merge_type(fld_type);
9543
}
9544

9545

unknown's avatar
unknown committed
9546 9547
/**
  Find real field type of item.
unknown's avatar
unknown committed
9548

unknown's avatar
unknown committed
9549
  @return
9550
    type of field which should be created to store item value
unknown's avatar
unknown committed
9551 9552
*/

9553
enum_field_types Item_type_holder::get_real_type(Item *item)
9554
{
9555 9556
  if (item->type() == REF_ITEM)
    item= item->real_item();
9557
  switch(item->type())
9558
  {
9559
  case FIELD_ITEM:
9560
  {
unknown's avatar
unknown committed
9561
    /*
9562
      Item_field::field_type ask Field_type() but sometimes field return
9563
      a different type, like for enum/set, so we need to ask real type.
unknown's avatar
unknown committed
9564
    */
9565 9566
    Field *field= ((Item_field *) item)->field;
    enum_field_types type= field->real_type();
9567 9568
    if (field->is_created_from_null_item)
      return MYSQL_TYPE_NULL;
9569 9570 9571 9572
    /* 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;
9573
  }
9574
  case SUM_FUNC_ITEM:
9575
  {
9576 9577 9578 9579
    /*
      Argument of aggregate function sometimes should be asked about field
      type
    */
9580 9581
    Item_sum *item_sum= (Item_sum *) item;
    if (item_sum->keep_field_type())
9582
      return get_real_type(item_sum->get_arg(0));
9583 9584 9585
    break;
  }
  case FUNC_ITEM:
unknown's avatar
unknown committed
9586
    if (((Item_func *) item)->functype() == Item_func::GUSERVAR_FUNC)
9587
    {
9588
      /*
9589 9590 9591 9592
        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.
9593
      */
unknown's avatar
unknown committed
9594
      switch (item->result_type()) {
9595 9596 9597 9598 9599 9600
      case STRING_RESULT:
        return MYSQL_TYPE_VAR_STRING;
      case INT_RESULT:
        return MYSQL_TYPE_LONGLONG;
      case REAL_RESULT:
        return MYSQL_TYPE_DOUBLE;
unknown's avatar
unknown committed
9601 9602
      case DECIMAL_RESULT:
        return MYSQL_TYPE_NEWDECIMAL;
9603
      case ROW_RESULT:
Sergei Golubchik's avatar
Sergei Golubchik committed
9604
      case TIME_RESULT:
Michael Widenius's avatar
Michael Widenius committed
9605
      case IMPOSSIBLE_RESULT:
9606 9607 9608
        DBUG_ASSERT(0);
        return MYSQL_TYPE_VAR_STRING;
      }
9609
    }
9610 9611 9612
    break;
  default:
    break;
9613
  }
9614
  return item->field_type();
9615 9616
}

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

unknown's avatar
unknown committed
9621 9622
  @param thd     thread handler
  @param item    given item to join its parameters with this item ones
9623

unknown's avatar
unknown committed
9624
  @retval
9625
    TRUE   error - types are incompatible
unknown's avatar
unknown committed
9626
  @retval
9627
    FALSE  OK
9628 9629
*/

9630
bool Item_type_holder::join_types(THD *thd, Item *item)
9631
{
unknown's avatar
unknown committed
9632 9633
  uint max_length_orig= max_length;
  uint decimals_orig= decimals;
unknown's avatar
unknown committed
9634 9635 9636 9637 9638 9639 9640
  DBUG_ENTER("Item_type_holder::join_types");
  DBUG_PRINT("info:", ("was type %d len %d, dec %d name %s",
                       fld_type, max_length, decimals,
                       (name ? name : "<NULL>")));
  DBUG_PRINT("info:", ("in type %d len %d, dec %d",
                       get_real_type(item),
                       item->max_length, item->decimals));
9641
  fld_type= Field::field_type_merge(fld_type, get_real_type(item));
9642
  {
9643
    uint item_decimals= item->decimals;
unknown's avatar
unknown committed
9644 9645 9646 9647
    /* fix variable decimals which always is NOT_FIXED_DEC */
    if (Field::result_merge_type(fld_type) == INT_RESULT)
      item_decimals= 0;
    decimals= max(decimals, item_decimals);
9648
  }
9649 9650 9651 9652 9653

  if (fld_type == FIELD_TYPE_GEOMETRY)
    geometry_type=
      Field_geom::geometry_type_merge(geometry_type, item->get_geometry_type());

unknown's avatar
unknown committed
9654
  if (Field::result_merge_type(fld_type) == DECIMAL_RESULT)
9655
  {
9656
    collation.set_numeric();
unknown's avatar
unknown committed
9657
    decimals= min(max(decimals, item->decimals), DECIMAL_MAX_SCALE);
9658 9659 9660
    int item_int_part= item->decimal_int_part();
    int item_prec = max(prev_decimal_int_part, item_int_part) + decimals;
    int precision= min(item_prec, DECIMAL_MAX_PRECISION);
unknown's avatar
unknown committed
9661
    unsigned_flag&= item->unsigned_flag;
9662 9663 9664
    max_length= my_decimal_precision_to_length_no_truncation(precision,
                                                             decimals,
                                                             unsigned_flag);
9665
  }
9666

unknown's avatar
unknown committed
9667 9668 9669
  switch (Field::result_merge_type(fld_type))
  {
  case STRING_RESULT:
9670
  {
9671
    const char *old_cs, *old_derivation;
9672
    uint32 old_max_chars= max_length / collation.collation->mbmaxlen;
9673 9674
    old_cs= collation.collation->name;
    old_derivation= collation.derivation_name();
9675
    if (collation.aggregate(item->collation, MY_COLL_ALLOW_CONV))
9676
    {
9677
      my_error(ER_CANT_AGGREGATE_2COLLATIONS, MYF(0),
9678 9679 9680 9681
	       old_cs, old_derivation,
	       item->collation.collation->name,
	       item->collation.derivation_name(),
	       "UNION");
unknown's avatar
unknown committed
9682
      DBUG_RETURN(TRUE);
9683
    }
9684 9685 9686 9687 9688
    /*
      To figure out max_length, we have to take into account possible
      expansion of the size of the values because of character set
      conversions.
     */
unknown's avatar
unknown committed
9689 9690 9691 9692 9693 9694 9695 9696 9697
    if (collation.collation != &my_charset_bin)
    {
      max_length= max(old_max_chars * collation.collation->mbmaxlen,
                      display_length(item) /
                      item->collation.collation->mbmaxlen *
                      collation.collation->mbmaxlen);
    }
    else
      set_if_bigger(max_length, display_length(item));
unknown's avatar
unknown committed
9698
    break;
9699
  }
unknown's avatar
unknown committed
9700 9701 9702 9703
  case REAL_RESULT:
  {
    if (decimals != NOT_FIXED_DEC)
    {
9704 9705 9706 9707 9708 9709
      /*
        For FLOAT(M,D)/DOUBLE(M,D) do not change precision
         if both fields have the same M and D
      */
      if (item->max_length != max_length_orig ||
          item->decimals != decimals_orig)
9710
      {
9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723
        int delta1= max_length_orig - decimals_orig;
        int delta2= item->max_length - item->decimals;
        max_length= max(delta1, delta2) + decimals;
        if (fld_type == MYSQL_TYPE_FLOAT && max_length > FLT_DIG + 2)
        {
          max_length= MAX_FLOAT_STR_LENGTH;
          decimals= NOT_FIXED_DEC;
        } 
        else if (fld_type == MYSQL_TYPE_DOUBLE && max_length > DBL_DIG + 2)
        {
          max_length= MAX_DOUBLE_STR_LENGTH;
          decimals= NOT_FIXED_DEC;
        }
9724
      }
unknown's avatar
unknown committed
9725 9726 9727 9728
    }
    else
      max_length= (fld_type == MYSQL_TYPE_FLOAT) ? FLT_DIG+6 : DBL_DIG+7;
    break;
9729
  }
9730 9731
  default:
    max_length= max(max_length, display_length(item));
unknown's avatar
unknown committed
9732
  };
9733 9734
  maybe_null|= item->maybe_null;
  get_full_info(item);
unknown's avatar
unknown committed
9735 9736 9737

  /* Remember decimal integer part to be used in DECIMAL_RESULT handleng */
  prev_decimal_int_part= decimal_int_part();
9738 9739
  DBUG_PRINT("info", ("become type: %d  len: %u  dec: %u",
                      (int) fld_type, max_length, (uint) decimals));
unknown's avatar
unknown committed
9740
  DBUG_RETURN(FALSE);
9741 9742
}

unknown's avatar
unknown committed
9743 9744
/**
  Calculate lenth for merging result for given Item type.
9745

unknown's avatar
unknown committed
9746
  @param item  Item for length detection
9747

unknown's avatar
unknown committed
9748
  @return
9749 9750
    length
*/
9751

9752
uint32 Item_type_holder::display_length(Item *item)
9753 9754
{
  if (item->type() == Item::FIELD_ITEM)
unknown's avatar
unknown committed
9755
    return ((Item_field *)item)->max_disp_length();
9756

9757
  switch (item->field_type())
9758
  {
9759 9760 9761 9762 9763 9764 9765
  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:
unknown's avatar
unknown committed
9766 9767 9768
  case MYSQL_TYPE_VARCHAR:
  case MYSQL_TYPE_BIT:
  case MYSQL_TYPE_NEWDECIMAL:
9769 9770 9771 9772 9773 9774 9775 9776 9777
  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:
9778
    return item->max_length;
9779 9780 9781 9782 9783
  case MYSQL_TYPE_TINY:
    return 4;
  case MYSQL_TYPE_SHORT:
    return 6;
  case MYSQL_TYPE_LONG:
9784
    return MY_INT32_NUM_DECIMAL_DIGITS;
9785 9786 9787
  case MYSQL_TYPE_FLOAT:
    return 25;
  case MYSQL_TYPE_DOUBLE:
9788
    return 53;
9789
  case MYSQL_TYPE_NULL:
9790
    return 0;
9791
  case MYSQL_TYPE_LONGLONG:
9792
    return 20;
9793 9794
  case MYSQL_TYPE_INT24:
    return 8;
9795 9796 9797 9798 9799
  default:
    DBUG_ASSERT(0); // we should never go there
    return 0;
  }
}
9800

9801

unknown's avatar
unknown committed
9802
/**
9803
  Make temporary table field according collected information about type
unknown's avatar
unknown committed
9804
  of UNION result.
9805

unknown's avatar
unknown committed
9806
  @param table  temporary table for which we create fields
9807

unknown's avatar
unknown committed
9808
  @return
9809 9810 9811 9812 9813
    created field
*/

Field *Item_type_holder::make_field_by_type(TABLE *table)
{
unknown's avatar
unknown committed
9814 9815 9816 9817
  /*
    The field functions defines a field to be not null if null_ptr is not 0
  */
  uchar *null_ptr= maybe_null ? (uchar*) "" : 0;
unknown's avatar
unknown committed
9818 9819 9820
  Field *field;

  switch (fld_type) {
unknown's avatar
unknown committed
9821
  case MYSQL_TYPE_ENUM:
9822
    DBUG_ASSERT(enum_set_typelib);
9823
    field= new Field_enum((uchar *) 0, max_length, null_ptr, 0,
unknown's avatar
unknown committed
9824
                          Field::NONE, name,
unknown's avatar
unknown committed
9825
                          get_enum_pack_length(enum_set_typelib->count),
unknown's avatar
unknown committed
9826
                          enum_set_typelib, collation.collation);
unknown's avatar
unknown committed
9827 9828 9829
    if (field)
      field->init(table);
    return field;
unknown's avatar
unknown committed
9830 9831
  case MYSQL_TYPE_SET:
    DBUG_ASSERT(enum_set_typelib);
9832
    field= new Field_set((uchar *) 0, max_length, null_ptr, 0,
unknown's avatar
unknown committed
9833
                         Field::NONE, name,
unknown's avatar
unknown committed
9834
                         get_set_pack_length(enum_set_typelib->count),
unknown's avatar
unknown committed
9835
                         enum_set_typelib, collation.collation);
unknown's avatar
unknown committed
9836 9837 9838
    if (field)
      field->init(table);
    return field;
9839 9840
  case MYSQL_TYPE_NULL:
    return make_string_field(table);
unknown's avatar
unknown committed
9841 9842
  default:
    break;
9843
  }
unknown's avatar
unknown committed
9844
  return tmp_table_field_from_field_type(table, 0);
9845 9846 9847
}


unknown's avatar
unknown committed
9848
/**
9849
  Get full information from Item about enum/set fields to be able to create
unknown's avatar
unknown committed
9850
  them later.
9851

unknown's avatar
unknown committed
9852
  @param item    Item for information collection
9853 9854 9855 9856 9857 9858
*/
void Item_type_holder::get_full_info(Item *item)
{
  if (fld_type == MYSQL_TYPE_ENUM ||
      fld_type == MYSQL_TYPE_SET)
  {
9859 9860 9861
    if (item->type() == Item::SUM_FUNC_ITEM &&
        (((Item_sum*)item)->sum_func() == Item_sum::MAX_FUNC ||
         ((Item_sum*)item)->sum_func() == Item_sum::MIN_FUNC))
9862
      item = ((Item_sum*)item)->get_arg(0);
9863
    /*
9864 9865
      We can have enum/set type after merging only if we have one enum|set
      field (or MIN|MAX(enum|set field)) and number of NULL fields
9866 9867 9868 9869
    */
    DBUG_ASSERT((enum_set_typelib &&
                 get_real_type(item) == MYSQL_TYPE_NULL) ||
                (!enum_set_typelib &&
unknown's avatar
unknown committed
9870 9871 9872 9873
                 item->real_item()->type() == Item::FIELD_ITEM &&
                 (get_real_type(item->real_item()) == MYSQL_TYPE_ENUM ||
                  get_real_type(item->real_item()) == MYSQL_TYPE_SET) &&
                 ((Field_enum*)((Item_field *) item->real_item())->field)->typelib));
9874 9875
    if (!enum_set_typelib)
    {
unknown's avatar
unknown committed
9876
      enum_set_typelib= ((Field_enum*)((Item_field *) item->real_item())->field)->typelib;
9877 9878 9879 9880 9881
    }
  }
}


9882
double Item_type_holder::val_real()
9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894
{
  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;
}

unknown's avatar
unknown committed
9895 9896 9897 9898 9899
my_decimal *Item_type_holder::val_decimal(my_decimal *)
{
  DBUG_ASSERT(0); // should never be called
  return 0;
}
9900 9901 9902 9903 9904 9905 9906

String *Item_type_holder::val_str(String*)
{
  DBUG_ASSERT(0); // should never be called
  return 0;
}

9907 9908 9909 9910 9911 9912 9913 9914
void Item_result_field::cleanup()
{
  DBUG_ENTER("Item_result_field::cleanup()");
  Item::cleanup();
  result_field= 0;
  DBUG_VOID_RETURN;
}

unknown's avatar
unknown committed
9915 9916
/**
  Dummy error processor used by default by Name_resolution_context.
9917

unknown's avatar
unknown committed
9918
  @note
9919 9920 9921 9922 9923 9924
    do nothing
*/

void dummy_error_processor(THD *thd, void *data)
{}

unknown's avatar
unknown committed
9925 9926 9927
/**
  Wrapper of hide_view_error call for Name_resolution_context error
  processor.
9928

unknown's avatar
unknown committed
9929
  @note
9930 9931 9932 9933 9934 9935 9936 9937
    hide view underlying tables details in error messages
*/

void view_error_processor(THD *thd, void *data)
{
  ((TABLE_LIST *)data)->hide_view_error(thd);
}

Igor Babaev's avatar
Igor Babaev committed
9938

Igor Babaev's avatar
Igor Babaev committed
9939
st_select_lex *Item_ident::get_depended_from() const
Igor Babaev's avatar
Igor Babaev committed
9940 9941 9942
{
  st_select_lex *dep;
  if ((dep= depended_from))
Igor Babaev's avatar
Igor Babaev committed
9943
    for ( ; dep->merged_into; dep= dep->merged_into) ;
Igor Babaev's avatar
Igor Babaev committed
9944 9945 9946 9947 9948 9949 9950 9951 9952 9953
  return dep;
}


table_map Item_ref::used_tables() const		
{
  return get_depended_from() ? OUTER_REF_TABLE_BIT : (*ref)->used_tables(); 
}


9954
void Item_ref::update_used_tables()
9955
{
Igor Babaev's avatar
Igor Babaev committed
9956
  if (!get_depended_from())
9957 9958
    (*ref)->update_used_tables();
}
Igor Babaev's avatar
Igor Babaev committed
9959

9960 9961 9962 9963 9964 9965 9966
void Item_direct_view_ref::update_used_tables()
{
  set_null_ref_table();
  Item_direct_ref::update_used_tables();
}


9967
table_map Item_direct_view_ref::used_tables() const
Igor Babaev's avatar
Igor Babaev committed
9968
{
9969
  DBUG_ASSERT(fixed);
9970 9971 9972 9973 9974

  if (get_depended_from())
    return OUTER_REF_TABLE_BIT;

  if (view->is_merged_derived() || view->merged || !view->table)
9975 9976 9977 9978
  {
    table_map used= (*ref)->used_tables();
    return (used ?
            used :
9979 9980 9981
            ((null_ref_table != NO_NULL_TABLE) ?
             null_ref_table->map :
             (table_map)0 ));
9982
  }
9983
  return view->table->map;
Igor Babaev's avatar
Igor Babaev committed
9984 9985
}

9986
table_map Item_direct_view_ref::not_null_tables() const
9987
{
9988
  return get_depended_from() ?
9989
         0 :
unknown's avatar
unknown committed
9990
         ((view->is_merged_derived() || view->merged || !view->table) ?
9991 9992
          (*ref)->not_null_tables() :
          view->table->map);
9993
}
Igor Babaev's avatar
Igor Babaev committed
9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005

/*
  we add RAND_TABLE_BIT to prevent moving this item from HAVING to WHERE
*/
table_map Item_ref_null_helper::used_tables() const
{
  return (get_depended_from() ?
          OUTER_REF_TABLE_BIT :
          (*ref)->used_tables() | RAND_TABLE_BIT);
}


Igor Babaev's avatar
Igor Babaev committed
10006 10007
#ifndef DBUG_OFF

10008 10009
/* Debugger help function */
static char dbug_item_print_buf[256];
Igor Babaev's avatar
Igor Babaev committed
10010

10011 10012 10013 10014 10015 10016 10017 10018
const char *dbug_print_item(Item *item)
{
  char *buf= dbug_item_print_buf;
  String str(buf, sizeof(dbug_item_print_buf), &my_charset_bin);
  str.length(0);
  if (!item)
    return "(Item*)NULL";
  item->print(&str ,QT_ORDINARY);
10019
  if (str.c_ptr_safe() == buf)
10020 10021 10022 10023
    return buf;
  else
    return "Couldn't fit into buffer";
}
Igor Babaev's avatar
Igor Babaev committed
10024 10025 10026

#endif /*DBUG_OFF*/

unknown's avatar
unknown committed
10027 10028 10029 10030
/*****************************************************************************
** Instantiate templates
*****************************************************************************/

10031
#ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATION
unknown's avatar
unknown committed
10032 10033
template class List<Item>;
template class List_iterator<Item>;
unknown's avatar
unknown committed
10034
template class List_iterator_fast<Item>;
10035
template class List_iterator_fast<Item_field>;
unknown's avatar
unknown committed
10036 10037
template class List<List_item>;
#endif