item_func.cc 124 KB
Newer Older
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1
/* Copyright (C) 2000-2003 MySQL AB
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


/* This file defines all numerical functions */

20
#ifdef USE_PRAGMA_IMPLEMENTATION
bk@work.mysql.com's avatar
bk@work.mysql.com committed
21 22 23 24
#pragma implementation				// gcc: Class implementation
#endif

#include "mysql_priv.h"
25
#include "slave.h"				// for wait_for_master_pos
bk@work.mysql.com's avatar
bk@work.mysql.com committed
26 27 28 29 30
#include <m_ctype.h>
#include <hash.h>
#include <time.h>
#include <ft_global.h>

31 32 33
#include "sp_head.h"
#include "sp_rcontext.h"
#include "sp.h"
34

monty@mysql.com's avatar
monty@mysql.com committed
35 36 37 38 39
#ifdef NO_EMBEDDED_ACCESS_CHECKS
#define sp_restore_security_context(A,B) while (0) {}
#endif


40 41 42 43 44 45 46 47 48 49
bool check_reserved_words(LEX_STRING *name)
{
  if (!my_strcasecmp(system_charset_info, name->str, "GLOBAL") ||
      !my_strcasecmp(system_charset_info, name->str, "LOCAL") ||
      !my_strcasecmp(system_charset_info, name->str, "SESSION"))
    return TRUE;
  return FALSE;
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
50 51 52 53 54 55 56 57
/* return TRUE if item is a constant */

bool
eval_const_cond(COND *cond)
{
  return ((Item_func*) cond)->val_int() ? TRUE : FALSE;
}

58

59
void Item_func::set_arguments(List<Item> &list)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
60
{
61
  allowed_arg_cols= 1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
62
  arg_count=list.elements;
monty@mysql.com's avatar
monty@mysql.com committed
63 64
  args= tmp_arg;                                // If 2 arguments
  if (arg_count <= 2 || (args=(Item**) sql_alloc(sizeof(Item*)*arg_count)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
65
  {
monty@tik.mysql.fi's avatar
monty@tik.mysql.fi committed
66
    List_iterator_fast<Item> li(list);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
67
    Item *item;
monty@mysql.com's avatar
monty@mysql.com committed
68
    Item **save_args= args;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
69 70 71

    while ((item=li++))
    {
monty@mysql.com's avatar
monty@mysql.com committed
72
      *(save_args++)= item;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
73 74 75 76 77 78
      with_sum_func|=item->with_sum_func;
    }
  }
  list.empty();					// Fields are used
}

79 80 81 82 83 84
Item_func::Item_func(List<Item> &list)
  :allowed_arg_cols(1)
{
  set_arguments(list);
}

85
Item_func::Item_func(THD *thd, Item_func *item)
86
  :Item_result_field(thd, item),
87 88 89 90 91
   allowed_arg_cols(item->allowed_arg_cols),
   arg_count(item->arg_count),
   used_tables_cache(item->used_tables_cache),
   not_null_tables_cache(item->not_null_tables_cache),
   const_item_cache(item->const_item_cache)
92 93 94 95 96 97 98 99 100 101
{
  if (arg_count)
  {
    if (arg_count <=2)
      args= tmp_arg;
    else
    {
      if (!(args=(Item**) thd->alloc(sizeof(Item*)*arg_count)))
	return;
    }
102
    memcpy((char*) args, (char*) item->args, sizeof(Item*)*arg_count);
103 104 105
  }
}

monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
106 107

/*
108
  Resolve references to table column for a function and its argument
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123

  SYNOPSIS:
  fix_fields()
  thd		Thread object
  ref		Pointer to where this object is used.  This reference
		is used if we want to replace this object with another
		one (for example in the summary functions).

  DESCRIPTION
    Call fix_fields() for all arguments to the function.  The main intention
    is to allow all Item_field() objects to setup pointers to the table fields.

    Sets as a side effect the following class variables:
      maybe_null	Set if any argument may return NULL
      with_sum_func	Set if any of the arguments contains a sum function
konstantin@mysql.com's avatar
konstantin@mysql.com committed
124
      used_tables_cache Set to union of the tables used by arguments
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
125 126 127

      str_value.charset If this is a string function, set this to the
			character set for the first argument.
128
			If any argument is binary, this is set to binary
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
129 130 131 132 133 134 135

   If for any item any of the defaults are wrong, then this can
   be fixed in the fix_length_and_dec() function that is called
   after this one or by writing a specialized fix_fields() for the
   item.

  RETURN VALUES
136 137
  FALSE	ok
  TRUE	Got error.  Stored with my_error().
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
138 139
*/

bk@work.mysql.com's avatar
bk@work.mysql.com committed
140
bool
141
Item_func::fix_fields(THD *thd, Item **ref)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
142
{
143
  DBUG_ASSERT(fixed == 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
144
  Item **arg,**arg_end;
145 146 147
#ifndef EMBEDDED_LIBRARY			// Avoid compiler warning
  char buff[STACK_BUFF_ALLOC];			// Max argument in function
#endif
148

149
  used_tables_cache= not_null_tables_cache= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
150 151
  const_item_cache=1;

152
  if (check_stack_overrun(thd, STACK_MIN_SIZE, buff))
153
    return TRUE;				// Fatal error if flag is set!
bk@work.mysql.com's avatar
bk@work.mysql.com committed
154 155 156 157
  if (arg_count)
  {						// Print purify happy
    for (arg=args, arg_end=args+arg_count; arg != arg_end ; arg++)
    {
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
158
      Item *item;
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
159 160 161 162
      /*
	We can't yet set item to *arg as fix_fields may change *arg
	We shouldn't call fix_fields() twice, so check 'fixed' field first
      */
163
      if ((!(*arg)->fixed && (*arg)->fix_fields(thd, arg)))
164
	return TRUE;				/* purecov: inspected */
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
165
      item= *arg;
166 167 168 169 170 171 172 173 174 175 176 177 178 179

      if (allowed_arg_cols)
      {
        if (item->check_cols(allowed_arg_cols))
          return 1;
      }
      else
      {
        /*  we have to fetch allowed_arg_cols from first argument */
        DBUG_ASSERT(arg == args); // it is first argument
        allowed_arg_cols= item->cols();
        DBUG_ASSERT(allowed_arg_cols); // Can't be 0 any more
      }

180
      if (item->maybe_null)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
181
	maybe_null=1;
182

183
      with_sum_func= with_sum_func || item->with_sum_func;
184 185 186
      used_tables_cache|=     item->used_tables();
      not_null_tables_cache|= item->not_null_tables();
      const_item_cache&=      item->const_item();
187
      with_subselect|=        item->with_subselect;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
188 189 190
    }
  }
  fix_length_and_dec();
191 192
  if (thd->net.report_error) // An error inside fix_length_and_dec occured
    return TRUE;
193
  fixed= 1;
194
  return FALSE;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
195 196
}

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
197 198 199 200 201 202 203 204 205 206 207 208 209
bool Item_func::walk (Item_processor processor, byte *argument)
{
  if (arg_count)
  {
    Item **arg,**arg_end;
    for (arg= args, arg_end= args+arg_count; arg != arg_end; arg++)
    {
      if ((*arg)->walk(processor, argument))
	return 1;
    }
  }
  return (this->*processor)(argument);
}
210

211 212
void Item_func::traverse_cond(Cond_traverser traverser,
                              void *argument, traverse_order order)
213 214 215 216
{
  if (arg_count)
  {
    Item **arg,**arg_end;
217 218 219

    switch (order) {
    case(PREFIX):
mskold@mysql.com's avatar
mskold@mysql.com committed
220
      (*traverser)(this, argument);
221 222 223 224 225 226 227 228 229 230
      for (arg= args, arg_end= args+arg_count; arg != arg_end; arg++)
      {
	(*arg)->traverse_cond(traverser, argument, order);
      }
      break;
    case (POSTFIX):
      for (arg= args, arg_end= args+arg_count; arg != arg_end; arg++)
      {
	(*arg)->traverse_cond(traverser, argument, order);
      }
mskold@mysql.com's avatar
mskold@mysql.com committed
231
      (*traverser)(this, argument);
232 233 234 235
    }
  }
}

igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
236 237 238 239 240 241

/*
  Transform an Item_func object with a transformer callback function
   
  SYNOPSIS
    transform()
242 243 244
      transformer   the transformer callback function to be applied to the nodes
                    of the tree of the object
      argument      parameter to be passed to the transformer
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
245 246
  
  DESCRIPTION
247 248 249
    The function recursively applies the transform method to each
    argument of the Item_func node.
    If the call of the method for an argument item returns a new item
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
250
    the old item is substituted for a new one.
251
    After this the transformer is applied to the root node
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
252 253 254 255 256 257 258
    of the Item_func object. 
     
  RETURN VALUES
    Item returned as the result of transformation of the root node 
*/

Item *Item_func::transform(Item_transformer transformer, byte *argument)
259
{
260 261
  DBUG_ASSERT(!current_thd->is_stmt_prepare());

262 263 264 265 266
  if (arg_count)
  {
    Item **arg,**arg_end;
    for (arg= args, arg_end= args+arg_count; arg != arg_end; arg++)
    {
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
267
      Item *new_item= (*arg)->transform(transformer, argument);
268 269
      if (!new_item)
	return 0;
270 271 272 273 274 275 276

      /*
        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.
      */
monty@mysql.com's avatar
monty@mysql.com committed
277 278
      if (*arg != new_item)
        current_thd->change_item_tree(arg, new_item);
279 280
    }
  }
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
281
  return (this->*transformer)(argument);
282 283 284
}


285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
/*
  Compile Item_func object with a processor and a transformer callback functions
   
  SYNOPSIS
    compile()
      analyzer      the analyzer callback function to be applied to the nodes
                    of the tree of the object
      arg_p         in/out parameter to be passed to the processor
      transformer   the transformer callback function to be applied to the nodes
                    of the tree of the object
      arg_t         parameter to be passed to the transformer
  
  DESCRIPTION
    First the function applies the analyzer to the root node of
    the Item_func object. Then if the analizer succeeeds (returns TRUE)
    the function recursively applies the compile method to each argument
    of the Item_func node.
    If the call of the method for an argument item returns a new item
    the old item is substituted for a new one.
    After this the transformer is applied to the root node
    of the Item_func object. 
     
  RETURN VALUES
    Item returned as the result of transformation of the root node 
*/

Item *Item_func::compile(Item_analyzer analyzer, byte **arg_p,
                         Item_transformer transformer, byte *arg_t)
{
  if (!(this->*analyzer)(arg_p))
    return 0;
  if (arg_count)
  {
    Item **arg,**arg_end;
    for (arg= args, arg_end= args+arg_count; arg != arg_end; arg++)
    {
      /* 
        The same parameter value of arg_p must be passed
        to analyze any argument of the condition formula.
      */   
325
      byte *arg_v= *arg_p;
326 327 328 329 330 331 332 333
      Item *new_item= (*arg)->compile(analyzer, &arg_v, transformer, arg_t);
      if (new_item && *arg != new_item)
        current_thd->change_item_tree(arg, new_item);
    }
  }
  return (this->*transformer)(arg_t);
}

334 335
/* See comments in Item_cmp_func::split_sum_func() */

336 337
void Item_func::split_sum_func(THD *thd, Item **ref_pointer_array,
                               List<Item> &fields)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
338
{
339 340
  Item **arg, **arg_end;
  for (arg= args, arg_end= args+arg_count; arg != arg_end ; arg++)
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
341
    (*arg)->split_sum_func2(thd, ref_pointer_array, fields, arg, TRUE);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
}


void Item_func::update_used_tables()
{
  used_tables_cache=0;
  const_item_cache=1;
  for (uint i=0 ; i < arg_count ; i++)
  {
    args[i]->update_used_tables();
    used_tables_cache|=args[i]->used_tables();
    const_item_cache&=args[i]->const_item();
  }
}


table_map Item_func::used_tables() const
{
  return used_tables_cache;
}

363 364 365 366 367 368 369

table_map Item_func::not_null_tables() const
{
  return not_null_tables_cache;
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
370 371 372 373
void Item_func::print(String *str)
{
  str->append(func_name());
  str->append('(');
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
374
  print_args(str, 0);
375 376 377 378
  str->append(')');
}


bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
379
void Item_func::print_args(String *str, uint from)
380
{
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
381
  for (uint i=from ; i < arg_count ; i++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
382
  {
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
383
    if (i != from)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
      str->append(',');
    args[i]->print(str);
  }
}


void Item_func::print_op(String *str)
{
  str->append('(');
  for (uint i=0 ; i < arg_count-1 ; i++)
  {
    args[i]->print(str);
    str->append(' ');
    str->append(func_name());
    str->append(' ');
  }
  args[arg_count-1]->print(str);
  str->append(')');
}

monty@mysql.com's avatar
monty@mysql.com committed
404

405
bool Item_func::eq(const Item *item, bool binary_cmp) const
bk@work.mysql.com's avatar
bk@work.mysql.com committed
406 407 408 409 410 411 412 413 414 415 416
{
  /* Assume we don't have rtti */
  if (this == item)
    return 1;
  if (item->type() != FUNC_ITEM)
    return 0;
  Item_func *item_func=(Item_func*) item;
  if (arg_count != item_func->arg_count ||
      func_name() != item_func->func_name())
    return 0;
  for (uint i=0; i < arg_count ; i++)
417
    if (!args[i]->eq(item_func->args[i], binary_cmp))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
418 419 420 421
      return 0;
  return 1;
}

422

423 424 425 426 427
Field *Item_func::tmp_table_field(TABLE *t_arg)
{
  Field *res;
  LINT_INIT(res);

428
  switch (result_type()) {
429 430 431 432 433 434 435 436 437 438 439 440
  case INT_RESULT:
    if (max_length > 11)
      res= new Field_longlong(max_length, maybe_null, name, t_arg,
			      unsigned_flag);
    else
      res= new Field_long(max_length, maybe_null, name, t_arg,
			  unsigned_flag);
    break;
  case REAL_RESULT:
    res= new Field_double(max_length, maybe_null, name, t_arg, decimals);
    break;
  case STRING_RESULT:
441
    res= make_string_field(t_arg);
442
    break;
443
  case DECIMAL_RESULT:
444 445 446 447
    res= new Field_new_decimal(my_decimal_precision_to_length(decimal_precision(),
                                                              decimals,
                                                              unsigned_flag),
                               maybe_null, name, t_arg, decimals, unsigned_flag);
448
    break;
449
  case ROW_RESULT:
450
  default:
451
    // This case should never be chosen
452 453
    DBUG_ASSERT(0);
    break;
454 455 456 457
  }
  return res;
}

458

459
bool Item_func::is_expensive_processor(byte *arg)
460
{
461
  return is_expensive();
462 463 464
}


465 466 467 468 469 470 471
my_decimal *Item_func::val_decimal(my_decimal *decimal_value)
{
  DBUG_ASSERT(fixed);
  int2my_decimal(E_DEC_FATAL_ERROR, val_int(), unsigned_flag, decimal_value);
  return decimal_value;
}

472

bk@work.mysql.com's avatar
bk@work.mysql.com committed
473 474
String *Item_real_func::val_str(String *str)
{
475
  DBUG_ASSERT(fixed == 1);
476
  double nr= val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
477 478
  if (null_value)
    return 0; /* purecov: inspected */
monty@mysql.com's avatar
monty@mysql.com committed
479
  str->set(nr,decimals, &my_charset_bin);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
480 481 482 483
  return str;
}


484 485 486 487 488 489 490 491 492 493 494
my_decimal *Item_real_func::val_decimal(my_decimal *decimal_value)
{
  DBUG_ASSERT(fixed);
  double nr= val_real();
  if (null_value)
    return 0; /* purecov: inspected */
  double2my_decimal(E_DEC_FATAL_ERROR, nr, decimal_value);
  return decimal_value;
}


495
void Item_func::fix_num_length_and_dec()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
496
{
497
  uint fl_length= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
498
  decimals=0;
499
  for (uint i=0 ; i < arg_count ; i++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
500 501
  {
    set_if_bigger(decimals,args[i]->decimals);
502 503
    set_if_bigger(fl_length, args[i]->max_length);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
504
  max_length=float_length(decimals);
505 506 507 508
  if (fl_length > max_length)
  {
    decimals= NOT_FIXED_DEC;
    max_length= float_length(NOT_FIXED_DEC);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
509
  }
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
}


void Item_func_numhybrid::fix_num_length_and_dec()
{}


/*
  Set max_length/decimals of function if function is fixed point and
  result length/precision depends on argument ones

  SYNOPSIS
    Item_func::count_decimal_length()
*/

void Item_func::count_decimal_length()
{
527
  int max_int_part= 0;
528
  decimals= 0;
529
  unsigned_flag= 1;
530
  for (uint i=0 ; i < arg_count ; i++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
531
  {
532
    set_if_bigger(decimals, args[i]->decimals);
533 534
    set_if_bigger(max_int_part, args[i]->decimal_int_part());
    set_if_smaller(unsigned_flag, args[i]->unsigned_flag);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
535
  }
536 537 538
  int precision= min(max_int_part + decimals, DECIMAL_MAX_PRECISION);
  max_length= my_decimal_precision_to_length(precision, decimals,
                                             unsigned_flag);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
539 540 541
}


542 543 544 545 546 547 548 549
/*
  Set max_length of if it is maximum length of its arguments

  SYNOPSIS
    Item_func::count_only_length()
*/

void Item_func::count_only_length()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
550
{
551
  max_length= 0;
552
  unsigned_flag= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
553
  for (uint i=0 ; i < arg_count ; i++)
554
  {
555
    set_if_bigger(max_length, args[i]->max_length);
556 557
    set_if_bigger(unsigned_flag, args[i]->unsigned_flag);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
558 559
}

560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595

/*
  Set max_length/decimals of function if function is floating point and
  result length/precision depends on argument ones

  SYNOPSIS
    Item_func::count_real_length()
*/

void Item_func::count_real_length()
{
  uint32 length= 0;
  decimals= 0;
  max_length= 0;
  for (uint i=0 ; i < arg_count ; i++)
  {
    if (decimals != NOT_FIXED_DEC)
    {
      set_if_bigger(decimals, args[i]->decimals);
      set_if_bigger(length, (args[i]->max_length - args[i]->decimals));
    }
    set_if_bigger(max_length, args[i]->max_length);
  }
  if (decimals != NOT_FIXED_DEC)
  {
    max_length= length;
    length+= decimals;
    if (length < max_length)  // If previous operation gave overflow
      max_length= UINT_MAX32;
    else
      max_length= length;
  }
}



596 597 598 599 600 601 602 603 604 605
void Item_func::signal_divide_by_null()
{
  THD *thd= current_thd;
  if (thd->variables.sql_mode & MODE_ERROR_FOR_DIVISION_BY_ZERO)
    push_warning(thd, MYSQL_ERROR::WARN_LEVEL_ERROR, ER_DIVISION_BY_ZERO,
                 ER(ER_DIVISION_BY_ZERO));
  null_value= 1;
}


606
Item *Item_func::get_tmp_table_item(THD *thd)
607
{
608
  if (!with_sum_func && !const_item() && functype() != SUSERVAR_FUNC)
609
    return new Item_field(result_field);
610
  return copy_or_same(thd);
611 612
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
613 614
String *Item_int_func::val_str(String *str)
{
615
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
616 617 618
  longlong nr=val_int();
  if (null_value)
    return 0;
619
  if (!unsigned_flag)
monty@mysql.com's avatar
monty@mysql.com committed
620
    str->set(nr,&my_charset_bin);
621
  else
monty@mysql.com's avatar
monty@mysql.com committed
622
    str->set((ulonglong) nr,&my_charset_bin);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
623 624 625
  return str;
}

626

627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
void Item_func_connection_id::fix_length_and_dec()
{
  Item_int_func::fix_length_and_dec();
  max_length= 10;
}


bool Item_func_connection_id::fix_fields(THD *thd, Item **ref)
{
  if (Item_int_func::fix_fields(thd, ref))
    return TRUE;

  /*
    To replicate CONNECTION_ID() properly we should use
    pseudo_thread_id on slave, which contains the value of thread_id
    on master.
  */
  value= ((thd->slave_thread) ?
          thd->variables.pseudo_thread_id :
          thd->thread_id);

  return FALSE;
}


652
/*
653 654
  Check arguments here to determine result's type for a numeric
  function of two arguments.
655 656 657

  SYNOPSIS
    Item_num_op::find_num_type()
658
*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
659 660 661

void Item_num_op::find_num_type(void)
{
662 663 664 665 666 667 668 669
  DBUG_ENTER("Item_num_op::find_num_type");
  DBUG_PRINT("info", ("name %s", func_name()));
  DBUG_ASSERT(arg_count == 2);
  Item_result r0= args[0]->result_type();
  Item_result r1= args[1]->result_type();

  if (r0 == REAL_RESULT || r1 == REAL_RESULT ||
      r0 == STRING_RESULT || r1 ==STRING_RESULT)
670
  {
671 672 673 674 675 676 677 678 679
    count_real_length();
    max_length= float_length(decimals);
    hybrid_type= REAL_RESULT;
  }
  else if (r0 == DECIMAL_RESULT || r1 == DECIMAL_RESULT)
  {
    hybrid_type= DECIMAL_RESULT;
    result_precision();
  }
680
  else
681
  {
682
    DBUG_ASSERT(r0 == INT_RESULT && r1 == INT_RESULT);
683
    decimals= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
684
    hybrid_type=INT_RESULT;
685
    result_precision();
686
  }
687 688 689 690 691 692
  DBUG_PRINT("info", ("Type: %s",
             (hybrid_type == REAL_RESULT ? "REAL_RESULT" :
              hybrid_type == DECIMAL_RESULT ? "DECIMAL_RESULT" :
              hybrid_type == INT_RESULT ? "INT_RESULT" :
              "--ILLEGAL!!!--")));
  DBUG_VOID_RETURN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
693 694
}

695 696

/*
697 698 699
  Set result type for a numeric function of one argument
  (can be also used by a numeric function of many arguments, if the result
  type depends only on the first argument)
700 701 702 703

  SYNOPSIS
    Item_func_num1::find_num_type()
*/
704

705 706 707 708
void Item_func_num1::find_num_type()
{
  DBUG_ENTER("Item_func_num1::find_num_type");
  DBUG_PRINT("info", ("name %s", func_name()));
709
  switch (hybrid_type= args[0]->result_type()) {
710
  case INT_RESULT:
711
    unsigned_flag= args[0]->unsigned_flag;
712 713 714 715 716 717 718 719 720 721
    break;
  case STRING_RESULT:
  case REAL_RESULT:
    hybrid_type= REAL_RESULT;
    max_length= float_length(decimals);
    break;
  case DECIMAL_RESULT:
    break;
  default:
    DBUG_ASSERT(0);
722
  }
723 724 725 726 727 728
  DBUG_PRINT("info", ("Type: %s",
                      (hybrid_type == REAL_RESULT ? "REAL_RESULT" :
                       hybrid_type == DECIMAL_RESULT ? "DECIMAL_RESULT" :
                       hybrid_type == INT_RESULT ? "INT_RESULT" :
                       "--ILLEGAL!!!--")));
  DBUG_VOID_RETURN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
729 730
}

731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746

void Item_func_num1::fix_num_length_and_dec()
{
  decimals= args[0]->decimals;
  max_length= args[0]->max_length;
}


void Item_func_numhybrid::fix_length_and_dec()
{
  fix_num_length_and_dec();
  find_num_type();
}


String *Item_func_numhybrid::val_str(String *str)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
747
{
748
  DBUG_ASSERT(fixed == 1);
749
  switch (hybrid_type) {
750 751 752 753
  case DECIMAL_RESULT:
  {
    my_decimal decimal_value, *val;
    if (!(val= decimal_op(&decimal_value)))
754
      return 0;                                 // null is set
755 756 757 758 759 760 761
    my_decimal_round(E_DEC_FATAL_ERROR, val, decimals, FALSE, val);
    my_decimal2string(E_DEC_FATAL_ERROR, val, 0, 0, 0, str);
    break;
  }
  case INT_RESULT:
  {
    longlong nr= int_op();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
762 763
    if (null_value)
      return 0; /* purecov: inspected */
764
    if (!unsigned_flag)
monty@mysql.com's avatar
monty@mysql.com committed
765
      str->set(nr,&my_charset_bin);
766
    else
monty@mysql.com's avatar
monty@mysql.com committed
767
      str->set((ulonglong) nr,&my_charset_bin);
768
    break;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
769
  }
770
  case REAL_RESULT:
bk@work.mysql.com's avatar
bk@work.mysql.com committed
771
  {
772
    double nr= real_op();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
773 774
    if (null_value)
      return 0; /* purecov: inspected */
monty@mysql.com's avatar
monty@mysql.com committed
775
    str->set(nr,decimals,&my_charset_bin);
776 777
    break;
  }
778 779
  case STRING_RESULT:
    return str_op(&str_value);
780 781
  default:
    DBUG_ASSERT(0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
782 783 784 785 786
  }
  return str;
}


787 788 789
double Item_func_numhybrid::val_real()
{
  DBUG_ASSERT(fixed == 1);
790
  switch (hybrid_type) {
791 792 793 794
  case DECIMAL_RESULT:
  {
    my_decimal decimal_value, *val;
    double result;
795 796
    if (!(val= decimal_op(&decimal_value)))
      return 0.0;                               // null is set
797 798 799 800 801 802 803
    my_decimal2double(E_DEC_FATAL_ERROR, val, &result);
    return result;
  }
  case INT_RESULT:
    return (double)int_op();
  case REAL_RESULT:
    return real_op();
804 805 806 807 808 809 810 811
  case STRING_RESULT:
  {
    char *end_not_used;
    int err_not_used;
    String *res= str_op(&str_value);
    return (res ? my_strntod(res->charset(), (char*) res->ptr(), res->length(),
			     &end_not_used, &err_not_used) : 0.0);
  }
812 813 814 815 816 817 818 819 820 821
  default:
    DBUG_ASSERT(0);
  }
  return 0.0;
}


longlong Item_func_numhybrid::val_int()
{
  DBUG_ASSERT(fixed == 1);
822
  switch (hybrid_type) {
823 824 825 826
  case DECIMAL_RESULT:
  {
    my_decimal decimal_value, *val;
    if (!(val= decimal_op(&decimal_value)))
827
      return 0;                                 // null is set
828 829 830 831 832 833 834
    longlong result;
    my_decimal2int(E_DEC_FATAL_ERROR, val, unsigned_flag, &result);
    return result;
  }
  case INT_RESULT:
    return int_op();
  case REAL_RESULT:
835
    return (longlong) rint(real_op());
836 837 838
  case STRING_RESULT:
  {
    int err_not_used;
andrey@lmy004's avatar
andrey@lmy004 committed
839 840 841 842
    String *res;
    if (!(res= str_op(&str_value)))
      return 0;

843
    char *end= (char*) res->ptr() + res->length();
844
    CHARSET_INFO *cs= str_value.charset();
andrey@lmy004's avatar
andrey@lmy004 committed
845
    return (*(cs->cset->strtoll10))(cs, res->ptr(), &end, &err_not_used);
846
  }
847 848 849 850 851 852 853 854 855 856 857
  default:
    DBUG_ASSERT(0);
  }
  return 0;
}


my_decimal *Item_func_numhybrid::val_decimal(my_decimal *decimal_value)
{
  my_decimal *val= decimal_value;
  DBUG_ASSERT(fixed == 1);
858
  switch (hybrid_type) {
859 860 861 862 863 864 865 866 867 868 869
  case DECIMAL_RESULT:
    val= decimal_op(decimal_value);
    break;
  case INT_RESULT:
  {
    longlong result= int_op();
    int2my_decimal(E_DEC_FATAL_ERROR, result, unsigned_flag, decimal_value);
    break;
  }
  case REAL_RESULT:
  {
870
    double result= (double)real_op();
871 872 873 874
    double2my_decimal(E_DEC_FATAL_ERROR, result, decimal_value);
    break;
  }
  case STRING_RESULT:
875
  {
andrey@lmy004's avatar
andrey@lmy004 committed
876 877 878 879
    String *res;
    if (!(res= str_op(&str_value)))
      return NULL;

880 881 882 883
    str2my_decimal(E_DEC_FATAL_ERROR, (char*) res->ptr(),
                   res->length(), res->charset(), decimal_value);
    break;
  }  
884 885 886 887 888 889 890 891
  case ROW_RESULT:
  default:
    DBUG_ASSERT(0);
  }
  return val;
}


892 893
void Item_func_signed::print(String *str)
{
894
  str->append(STRING_WITH_LEN("cast("));
895
  args[0]->print(str);
896
  str->append(STRING_WITH_LEN(" as signed)"));
897 898 899 900

}


901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
longlong Item_func_signed::val_int_from_str(int *error)
{
  char buff[MAX_FIELD_WIDTH], *end;
  String tmp(buff,sizeof(buff), &my_charset_bin), *res;
  longlong value;

  /*
    For a string result, we must first get the string and then convert it
    to a longlong
  */

  if (!(res= args[0]->val_str(&tmp)))
  {
    null_value= 1;
    *error= 0;
    return 0;
  }
  null_value= 0;
  end= (char*) res->ptr()+ res->length();
  value= my_strtoll10(res->ptr(), &end, error);
  if (*error > 0 || end != res->ptr()+ res->length())
    push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
                        ER_TRUNCATED_WRONG_VALUE,
                        ER(ER_TRUNCATED_WRONG_VALUE), "INTEGER",
                        res->c_ptr());
  return value;
}


longlong Item_func_signed::val_int()
{
  longlong value;
  int error;

  if (args[0]->cast_to_int_type() != STRING_RESULT)
  {
    value= args[0]->val_int();
    null_value= args[0]->null_value; 
    return value;
  }

  value= val_int_from_str(&error);
  if (value < 0 && error == 0)
  {
    push_warning(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN, ER_UNKNOWN_ERROR,
                 "Cast to signed converted positive out-of-range integer to "
                 "it's negative complement");
  }
  return value;
}


953 954
void Item_func_unsigned::print(String *str)
{
955
  str->append(STRING_WITH_LEN("cast("));
956
  args[0]->print(str);
957
  str->append(STRING_WITH_LEN(" as unsigned)"));
958 959 960 961

}


962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982
longlong Item_func_unsigned::val_int()
{
  longlong value;
  int error;

  if (args[0]->cast_to_int_type() != STRING_RESULT)
  {
    value= args[0]->val_int();
    null_value= args[0]->null_value; 
    return value;
  }

  value= val_int_from_str(&error);
  if (error < 0)
    push_warning(current_thd, MYSQL_ERROR::WARN_LEVEL_WARN, ER_UNKNOWN_ERROR,
                 "Cast to unsigned converted negative integer to it's "
                 "positive complement");
  return value;
}


983 984 985
String *Item_decimal_typecast::val_str(String *str)
{
  my_decimal tmp_buf, *tmp= val_decimal(&tmp_buf);
986 987
  if (null_value)
    return NULL;
988
  my_decimal2string(E_DEC_FATAL_ERROR, tmp, 0, 0, 0, str);
989 990 991 992 993 994 995 996
  return str;
}


double Item_decimal_typecast::val_real()
{
  my_decimal tmp_buf, *tmp= val_decimal(&tmp_buf);
  double res;
997 998
  if (null_value)
    return 0.0;
999 1000 1001 1002 1003 1004 1005 1006 1007
  my_decimal2double(E_DEC_FATAL_ERROR, tmp, &res);
  return res;
}


longlong Item_decimal_typecast::val_int()
{
  my_decimal tmp_buf, *tmp= val_decimal(&tmp_buf);
  longlong res;
1008 1009
  if (null_value)
    return 0;
1010 1011 1012 1013 1014 1015 1016 1017
  my_decimal2int(E_DEC_FATAL_ERROR, tmp, unsigned_flag, &res);
  return res;
}


my_decimal *Item_decimal_typecast::val_decimal(my_decimal *dec)
{
  my_decimal tmp_buf, *tmp= args[0]->val_decimal(&tmp_buf);
1018 1019
  if ((null_value= args[0]->null_value))
    return NULL;
1020 1021 1022 1023 1024
  my_decimal_round(E_DEC_FATAL_ERROR, tmp, decimals, FALSE, dec);
  return dec;
}


1025 1026
void Item_decimal_typecast::print(String *str)
{
1027
  str->append(STRING_WITH_LEN("cast("));
1028
  args[0]->print(str);
1029
  str->append(STRING_WITH_LEN(" as decimal)"));
1030 1031 1032
}


1033
double Item_func_plus::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1034
{
1035
  double value= args[0]->val_real() + args[1]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1036 1037 1038 1039 1040
  if ((null_value=args[0]->null_value || args[1]->null_value))
    return 0.0;
  return value;
}

1041 1042

longlong Item_func_plus::int_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1043
{
1044 1045 1046 1047 1048 1049 1050
  longlong value=args[0]->val_int()+args[1]->val_int();
  if ((null_value=args[0]->null_value || args[1]->null_value))
    return 0;
  return value;
}


1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062
/*
  Calculate plus of two decimail's

  SYNOPSIS
    decimal_op()
    decimal_value	Buffer that can be used to store result

  RETURN
   0	Value was NULL;  In this case null_value is set
   #	Value of operation as a decimal
*/

1063 1064
my_decimal *Item_func_plus::decimal_op(my_decimal *decimal_value)
{
1065 1066 1067
  my_decimal value1, *val1;
  my_decimal value2, *val2;
  val1= args[0]->val_decimal(&value1);
1068 1069
  if ((null_value= args[0]->null_value))
    return 0;
1070
  val2= args[1]->val_decimal(&value2);
1071
  if (!(null_value= (args[1]->null_value ||
1072 1073
                     (my_decimal_add(E_DEC_FATAL_ERROR, decimal_value, val1,
                                     val2) > 3))))
1074 1075
    return decimal_value;
  return 0;
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
}

/*
  Set precision of results for additive operations (+ and -)

  SYNOPSIS
    Item_func_additive_op::result_precision()
*/
void Item_func_additive_op::result_precision()
{
  decimals= max(args[0]->decimals, args[1]->decimals);
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097
  int max_int_part= max(args[0]->decimal_precision() - args[0]->decimals,
                        args[1]->decimal_precision() - args[1]->decimals);
  int precision= min(max_int_part + 1 + decimals, DECIMAL_MAX_PRECISION);

  /* Integer operations keep unsigned_flag if one of arguments is unsigned */
  if (result_type() == INT_RESULT)
    unsigned_flag= args[0]->unsigned_flag | args[1]->unsigned_flag;
  else
    unsigned_flag= args[0]->unsigned_flag & args[1]->unsigned_flag;
  max_length= my_decimal_precision_to_length(precision, decimals,
                                             unsigned_flag);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1098 1099
}

1100 1101 1102 1103 1104 1105 1106 1107 1108 1109

/*
  The following function is here to allow the user to force
  subtraction of UNSIGNED BIGINT to return negative values.
*/

void Item_func_minus::fix_length_and_dec()
{
  Item_num_op::fix_length_and_dec();
  if (unsigned_flag &&
1110
      (current_thd->variables.sql_mode & MODE_NO_UNSIGNED_SUBTRACTION))
1111 1112 1113 1114
    unsigned_flag=0;
}


1115
double Item_func_minus::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1116
{
1117
  double value= args[0]->val_real() - args[1]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1118 1119 1120 1121 1122
  if ((null_value=args[0]->null_value || args[1]->null_value))
    return 0.0;
  return value;
}

1123 1124

longlong Item_func_minus::int_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1125
{
1126 1127 1128 1129
  longlong value=args[0]->val_int() - args[1]->val_int();
  if ((null_value=args[0]->null_value || args[1]->null_value))
    return 0;
  return value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1130 1131
}

1132

1133 1134
/* See Item_func_plus::decimal_op for comments */

1135 1136
my_decimal *Item_func_minus::decimal_op(my_decimal *decimal_value)
{
1137 1138 1139 1140
  my_decimal value1, *val1;
  my_decimal value2, *val2= 

  val1= args[0]->val_decimal(&value1);
1141 1142
  if ((null_value= args[0]->null_value))
    return 0;
1143
  val2= args[1]->val_decimal(&value2);
1144
  if (!(null_value= (args[1]->null_value ||
1145 1146
                     (my_decimal_sub(E_DEC_FATAL_ERROR, decimal_value, val1,
                                     val2) > 3))))
1147 1148
    return decimal_value;
  return 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1149 1150
}

1151

1152
double Item_func_mul::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1153
{
1154
  DBUG_ASSERT(fixed == 1);
1155
  double value= args[0]->val_real() * args[1]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1156
  if ((null_value=args[0]->null_value || args[1]->null_value))
1157
    return 0.0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1158 1159 1160
  return value;
}

1161 1162

longlong Item_func_mul::int_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1163
{
1164
  DBUG_ASSERT(fixed == 1);
1165 1166 1167 1168
  longlong value=args[0]->val_int()*args[1]->val_int();
  if ((null_value=args[0]->null_value || args[1]->null_value))
    return 0;
  return value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1169 1170 1171
}


1172 1173
/* See Item_func_plus::decimal_op for comments */

1174 1175
my_decimal *Item_func_mul::decimal_op(my_decimal *decimal_value)
{
1176 1177 1178
  my_decimal value1, *val1;
  my_decimal value2, *val2;
  val1= args[0]->val_decimal(&value1);
1179 1180
  if ((null_value= args[0]->null_value))
    return 0;
1181
  val2= args[1]->val_decimal(&value2);
1182
  if (!(null_value= (args[1]->null_value ||
1183 1184
                     (my_decimal_mul(E_DEC_FATAL_ERROR, decimal_value, val1,
                                    val2) > 3))))
1185 1186
    return decimal_value;
  return 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1187 1188 1189
}


1190 1191
void Item_func_mul::result_precision()
{
1192 1193 1194 1195 1196 1197 1198 1199 1200
  /* Integer operations keep unsigned_flag if one of arguments is unsigned */
  if (result_type() == INT_RESULT)
    unsigned_flag= args[0]->unsigned_flag | args[1]->unsigned_flag;
  else
    unsigned_flag= args[0]->unsigned_flag & args[1]->unsigned_flag;
  decimals= min(args[0]->decimals + args[1]->decimals, DECIMAL_MAX_SCALE);
  int precision= min(args[0]->decimal_precision() + args[1]->decimal_precision(),
                     DECIMAL_MAX_PRECISION);
  max_length= my_decimal_precision_to_length(precision, decimals,unsigned_flag);
1201 1202 1203 1204
}


double Item_func_div::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1205
{
1206
  DBUG_ASSERT(fixed == 1);
1207 1208
  double value= args[0]->val_real();
  double val2= args[1]->val_real();
1209 1210 1211 1212 1213
  if ((null_value= args[0]->null_value || args[1]->null_value))
    return 0.0;
  if (val2 == 0.0)
  {
    signal_divide_by_null();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1214
    return 0.0;
1215
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1216 1217 1218
  return value/val2;
}

1219

1220
my_decimal *Item_func_div::decimal_op(my_decimal *decimal_value)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1221
{
1222 1223
  my_decimal value1, *val1;
  my_decimal value2, *val2;
1224
  int err;
1225 1226

  val1= args[0]->val_decimal(&value1);
1227 1228
  if ((null_value= args[0]->null_value))
    return 0;
1229
  val2= args[1]->val_decimal(&value2);
1230 1231
  if ((null_value= args[1]->null_value))
    return 0;
1232 1233 1234 1235 1236 1237
  if ((err= my_decimal_div(E_DEC_FATAL_ERROR & ~E_DEC_DIV_ZERO, decimal_value,
                           val1, val2, prec_increment)) > 3)
  {
    if (err == E_DEC_DIV_ZERO)
      signal_divide_by_null();
    null_value= 1;
1238
    return 0;
1239
  }
1240
  return decimal_value;
1241 1242 1243 1244 1245
}


void Item_func_div::result_precision()
{
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
  uint precision=min(args[0]->decimal_precision() + prec_increment,
                     DECIMAL_MAX_PRECISION);
  /* Integer operations keep unsigned_flag if one of arguments is unsigned */
  if (result_type() == INT_RESULT)
    unsigned_flag= args[0]->unsigned_flag | args[1]->unsigned_flag;
  else
    unsigned_flag= args[0]->unsigned_flag & args[1]->unsigned_flag;
  decimals= min(args[0]->decimals + prec_increment, DECIMAL_MAX_SCALE);
  max_length= my_decimal_precision_to_length(precision, decimals,
                                             unsigned_flag);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1256 1257
}

1258

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1259 1260
void Item_func_div::fix_length_and_dec()
{
1261
  DBUG_ENTER("Item_func_div::fix_length_and_dec");
1262
  prec_increment= current_thd->variables.div_precincrement;
1263
  Item_num_op::fix_length_and_dec();
1264
  switch(hybrid_type) {
1265 1266
  case REAL_RESULT:
  {
1267
    decimals=max(args[0]->decimals,args[1]->decimals)+prec_increment;
1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286
    set_if_smaller(decimals, NOT_FIXED_DEC);
    max_length=args[0]->max_length - args[0]->decimals + decimals;
    uint tmp=float_length(decimals);
    set_if_smaller(max_length,tmp);
    break;
  }
  case INT_RESULT:
    hybrid_type= DECIMAL_RESULT;
    DBUG_PRINT("info", ("Type changed: DECIMAL_RESULT"));
    result_precision();
    break;
  case DECIMAL_RESULT:
    result_precision();
    break;
  default:
    DBUG_ASSERT(0);
  }
  maybe_null= 1; // devision by zero
  DBUG_VOID_RETURN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1287 1288
}

1289 1290 1291 1292

/* Integer division */
longlong Item_func_int_div::val_int()
{
1293
  DBUG_ASSERT(fixed == 1);
1294 1295
  longlong value=args[0]->val_int();
  longlong val2=args[1]->val_int();
1296
  if ((null_value= (args[0]->null_value || args[1]->null_value)))
1297 1298 1299 1300
    return 0;
  if (val2 == 0)
  {
    signal_divide_by_null();
1301
    return 0;
1302
  }
1303 1304 1305
  return (unsigned_flag ?
	  (ulonglong) value / (ulonglong) val2 :
	  value / val2);
1306 1307 1308 1309 1310 1311 1312
}


void Item_func_int_div::fix_length_and_dec()
{
  max_length=args[0]->max_length - args[0]->decimals;
  maybe_null=1;
1313
  unsigned_flag=args[0]->unsigned_flag | args[1]->unsigned_flag;
1314 1315 1316
}


1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
longlong Item_func_mod::int_op()
{
  DBUG_ASSERT(fixed == 1);
  longlong value=  args[0]->val_int();
  longlong val2= args[1]->val_int();
  if ((null_value= args[0]->null_value || args[1]->null_value))
    return 0; /* purecov: inspected */
  if (val2 == 0)
  {
    signal_divide_by_null();
    return 0;
  }
  return value % val2;
}

double Item_func_mod::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1333
{
1334
  DBUG_ASSERT(fixed == 1);
1335 1336
  double value= args[0]->val_real();
  double val2=  args[1]->val_real();
1337
  if ((null_value= args[0]->null_value || args[1]->null_value))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1338
    return 0.0; /* purecov: inspected */
1339 1340 1341 1342 1343
  if (val2 == 0.0)
  {
    signal_divide_by_null();
    return 0.0;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1344 1345 1346
  return fmod(value,val2);
}

1347 1348

my_decimal *Item_func_mod::decimal_op(my_decimal *decimal_value)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1349
{
1350 1351 1352 1353
  my_decimal value1, *val1;
  my_decimal value2, *val2;

  val1= args[0]->val_decimal(&value1);
1354 1355
  if ((null_value= args[0]->null_value))
    return 0;
1356
  val2= args[1]->val_decimal(&value2);
1357 1358 1359
  if ((null_value= args[1]->null_value))
    return 0;
  switch (my_decimal_mod(E_DEC_FATAL_ERROR & ~E_DEC_DIV_ZERO, decimal_value,
1360
                         val1, val2)) {
1361 1362 1363 1364
  case E_DEC_TRUNCATED:
  case E_DEC_OK:
    return decimal_value;
  case E_DEC_DIV_ZERO:
1365
    signal_divide_by_null();
1366
  default:
1367
    null_value= 1;
1368 1369
    return 0;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1370 1371
}

1372 1373

void Item_func_mod::result_precision()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1374
{
1375 1376
  decimals= max(args[0]->decimals, args[1]->decimals);
  max_length= max(args[0]->max_length, args[1]->max_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1377 1378 1379 1380 1381
}


void Item_func_mod::fix_length_and_dec()
{
1382
  Item_num_op::fix_length_and_dec();
1383
  maybe_null= 1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1384 1385 1386
}


1387
double Item_func_neg::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1388
{
1389
  double value= args[0]->val_real();
1390
  null_value= args[0]->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1391 1392 1393
  return -value;
}

1394

1395
longlong Item_func_neg::int_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1396
{
1397 1398
  longlong value= args[0]->val_int();
  null_value= args[0]->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1399 1400 1401
  return -value;
}

1402

1403
my_decimal *Item_func_neg::decimal_op(my_decimal *decimal_value)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1404
{
1405 1406 1407 1408 1409
  my_decimal val, *value= args[0]->val_decimal(&val);
  if (!(null_value= args[0]->null_value))
  {
    my_decimal2decimal(value, decimal_value);
    my_decimal_neg(decimal_value);
1410
    return decimal_value;
1411
  }
1412
  return 0;
1413 1414
}

1415

1416
void Item_func_neg::fix_num_length_and_dec()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1417
{
1418 1419 1420
  decimals= args[0]->decimals;
  /* 1 add because sign can appear */
  max_length= args[0]->max_length + 1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1421 1422
}

1423

1424
void Item_func_neg::fix_length_and_dec()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1425
{
1426
  DBUG_ENTER("Item_func_neg::fix_length_and_dec");
1427
  Item_func_num1::fix_length_and_dec();
1428 1429 1430 1431

  /*
    If this is in integer context keep the context as integer if possible
    (This is how multiplication and other integer functions works)
1432 1433
    Use val() to get value as arg_type doesn't mean that item is
    Item_int or Item_real due to existence of Item_param.
1434
  */
1435 1436
  if (hybrid_type == INT_RESULT &&
      args[0]->type() == INT_ITEM &&
1437
      ((ulonglong) args[0]->val_int() >= (ulonglong) LONGLONG_MIN))
1438 1439
  {
    /*
1440 1441
      Ensure that result is converted to DECIMAL, as longlong can't hold
      the negated number
1442
    */
1443 1444
    hybrid_type= DECIMAL_RESULT;
    DBUG_PRINT("info", ("Type changed: DECIMAL_RESULT"));
1445
  }
1446
  unsigned_flag= 0;
1447
  DBUG_VOID_RETURN;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1448 1449
}

1450

1451
double Item_func_abs::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1452
{
1453
  double value= args[0]->val_real();
1454
  null_value= args[0]->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1455 1456 1457
  return fabs(value);
}

1458

1459
longlong Item_func_abs::int_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1460
{
1461 1462
  longlong value= args[0]->val_int();
  null_value= args[0]->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1463 1464 1465
  return value >= 0 ? value : -value;
}

1466

1467
my_decimal *Item_func_abs::decimal_op(my_decimal *decimal_value)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1468
{
1469 1470
  my_decimal val, *value= args[0]->val_decimal(&val);
  if (!(null_value= args[0]->null_value))
1471
  {
1472 1473 1474
    my_decimal2decimal(value, decimal_value);
    if (decimal_value->sign())
      my_decimal_neg(decimal_value);
1475
    return decimal_value;
1476
  }
1477
  return 0;
1478 1479 1480 1481 1482 1483
}


void Item_func_abs::fix_length_and_dec()
{
  Item_func_num1::fix_length_and_dec();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1484 1485
}

1486

1487
/* Gateway to natural LOG function */
1488
double Item_func_ln::val_real()
1489
{
1490
  DBUG_ASSERT(fixed == 1);
1491
  double value= args[0]->val_real();
1492
  if ((null_value= args[0]->null_value))
1493
    return 0.0;
1494
  if (value <= 0.0)
1495 1496
  {
    signal_divide_by_null();
1497
    return 0.0;
1498
  }
1499 1500 1501 1502 1503 1504 1505 1506
  return log(value);
}

/* 
 Extended but so slower LOG function
 We have to check if all values are > zero and first one is not one
 as these are the cases then result is not a number.
*/ 
1507
double Item_func_log::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1508
{
1509
  DBUG_ASSERT(fixed == 1);
1510
  double value= args[0]->val_real();
1511
  if ((null_value= args[0]->null_value))
1512
    return 0.0;
1513
  if (value <= 0.0)
1514 1515 1516 1517
  {
    signal_divide_by_null();
    return 0.0;
  }
1518 1519
  if (arg_count == 2)
  {
1520
    double value2= args[1]->val_real();
1521
    if ((null_value= args[1]->null_value))
1522
      return 0.0;
1523
    if (value2 <= 0.0 || value == 1.0)
1524 1525 1526 1527
    {
      signal_divide_by_null();
      return 0.0;
    }
1528 1529
    return log(value2) / log(value);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1530 1531 1532
  return log(value);
}

1533
double Item_func_log2::val_real()
1534
{
1535
  DBUG_ASSERT(fixed == 1);
1536
  double value= args[0]->val_real();
1537 1538

  if ((null_value=args[0]->null_value))
1539
    return 0.0;
1540
  if (value <= 0.0)
1541 1542 1543 1544
  {
    signal_divide_by_null();
    return 0.0;
  }
1545
  return log(value) / M_LN2;
1546 1547
}

1548
double Item_func_log10::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1549
{
1550
  DBUG_ASSERT(fixed == 1);
1551
  double value= args[0]->val_real();
1552
  if ((null_value= args[0]->null_value))
1553
    return 0.0;
1554
  if (value <= 0.0)
1555 1556 1557 1558
  {
    signal_divide_by_null();
    return 0.0;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1559 1560 1561
  return log10(value);
}

1562
double Item_func_exp::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1563
{
1564
  DBUG_ASSERT(fixed == 1);
1565
  double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1566 1567 1568 1569 1570
  if ((null_value=args[0]->null_value))
    return 0.0; /* purecov: inspected */
  return exp(value);
}

1571
double Item_func_sqrt::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1572
{
1573
  DBUG_ASSERT(fixed == 1);
1574
  double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1575 1576 1577 1578 1579
  if ((null_value=(args[0]->null_value || value < 0)))
    return 0.0; /* purecov: inspected */
  return sqrt(value);
}

1580
double Item_func_pow::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1581
{
1582
  DBUG_ASSERT(fixed == 1);
1583 1584
  double value= args[0]->val_real();
  double val2= args[1]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1585 1586 1587 1588 1589 1590 1591
  if ((null_value=(args[0]->null_value || args[1]->null_value)))
    return 0.0; /* purecov: inspected */
  return pow(value,val2);
}

// Trigonometric functions

1592
double Item_func_acos::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1593
{
1594
  DBUG_ASSERT(fixed == 1);
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1595
  // the volatile's for BUG #2338 to calm optimizer down (because of gcc's bug)
1596
  volatile double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1597 1598 1599 1600 1601
  if ((null_value=(args[0]->null_value || (value < -1.0 || value > 1.0))))
    return 0.0;
  return fix_result(acos(value));
}

1602
double Item_func_asin::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1603
{
1604
  DBUG_ASSERT(fixed == 1);
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
1605
  // the volatile's for BUG #2338 to calm optimizer down (because of gcc's bug)
1606
  volatile double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1607 1608 1609 1610 1611
  if ((null_value=(args[0]->null_value || (value < -1.0 || value > 1.0))))
    return 0.0;
  return fix_result(asin(value));
}

1612
double Item_func_atan::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1613
{
1614
  DBUG_ASSERT(fixed == 1);
1615
  double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1616 1617 1618 1619
  if ((null_value=args[0]->null_value))
    return 0.0;
  if (arg_count == 2)
  {
1620
    double val2= args[1]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1621 1622 1623 1624 1625 1626 1627
    if ((null_value=args[1]->null_value))
      return 0.0;
    return fix_result(atan2(value,val2));
  }
  return fix_result(atan(value));
}

1628
double Item_func_cos::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1629
{
1630
  DBUG_ASSERT(fixed == 1);
1631
  double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1632 1633 1634 1635 1636
  if ((null_value=args[0]->null_value))
    return 0.0;
  return fix_result(cos(value));
}

1637
double Item_func_sin::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1638
{
1639
  DBUG_ASSERT(fixed == 1);
1640
  double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1641 1642 1643 1644 1645
  if ((null_value=args[0]->null_value))
    return 0.0;
  return fix_result(sin(value));
}

1646
double Item_func_tan::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1647
{
1648
  DBUG_ASSERT(fixed == 1);
1649
  double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
  if ((null_value=args[0]->null_value))
    return 0.0;
  return fix_result(tan(value));
}


// Shift-functions, same as << and >> in C/C++


longlong Item_func_shift_left::val_int()
{
1661
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
  uint shift;
  ulonglong res= ((ulonglong) args[0]->val_int() <<
		  (shift=(uint) args[1]->val_int()));
  if (args[0]->null_value || args[1]->null_value)
  {
    null_value=1;
    return 0;
  }
  null_value=0;
  return (shift < sizeof(longlong)*8 ? (longlong) res : LL(0));
}

longlong Item_func_shift_right::val_int()
{
1676
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691
  uint shift;
  ulonglong res= (ulonglong) args[0]->val_int() >>
    (shift=(uint) args[1]->val_int());
  if (args[0]->null_value || args[1]->null_value)
  {
    null_value=1;
    return 0;
  }
  null_value=0;
  return (shift < sizeof(longlong)*8 ? (longlong) res : LL(0));
}


longlong Item_func_bit_neg::val_int()
{
1692
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709
  ulonglong res= (ulonglong) args[0]->val_int();
  if ((null_value=args[0]->null_value))
    return 0;
  return ~res;
}


// Conversion functions

void Item_func_integer::fix_length_and_dec()
{
  max_length=args[0]->max_length - args[0]->decimals+1;
  uint tmp=float_length(decimals);
  set_if_smaller(max_length,tmp);
  decimals=0;
}

1710
void Item_func_int_val::fix_num_length_and_dec()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1711
{
1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763
  max_length= args[0]->max_length - (args[0]->decimals ?
                                     args[0]->decimals + 1 :
                                     0) + 2;
  uint tmp= float_length(decimals);
  set_if_smaller(max_length,tmp);
  decimals= 0;
}


void Item_func_int_val::find_num_type()
{
  DBUG_ENTER("Item_func_int_val::find_num_type");
  DBUG_PRINT("info", ("name %s", func_name()));
  switch(hybrid_type= args[0]->result_type())
  {
  case STRING_RESULT:
  case REAL_RESULT:
    hybrid_type= REAL_RESULT;
    max_length= float_length(decimals);
    break;
  case INT_RESULT:
  case DECIMAL_RESULT:
    /*
      -2 because in most high position can't be used any digit for longlong
      and one position for increasing value during operation
    */
    if ((args[0]->max_length - args[0]->decimals) >=
        (DECIMAL_LONGLONG_DIGITS - 2))
    {
      hybrid_type= DECIMAL_RESULT;
    }
    else
    {
      unsigned_flag= args[0]->unsigned_flag;
      hybrid_type= INT_RESULT;
    }
    break;
  default:
    DBUG_ASSERT(0);
  }
  DBUG_PRINT("info", ("Type: %s",
                      (hybrid_type == REAL_RESULT ? "REAL_RESULT" :
                       hybrid_type == DECIMAL_RESULT ? "DECIMAL_RESULT" :
                       hybrid_type == INT_RESULT ? "INT_RESULT" :
                       "--ILLEGAL!!!--")));

  DBUG_VOID_RETURN;
}


longlong Item_func_ceiling::int_op()
{
1764 1765 1766 1767 1768 1769 1770 1771 1772
  longlong result;
  switch (args[0]->result_type()) {
  case INT_RESULT:
    result= args[0]->val_int();
    null_value= args[0]->null_value;
    break;
  case DECIMAL_RESULT:
  {
    my_decimal dec_buf, *dec;
1773
    if ((dec= Item_func_ceiling::decimal_op(&dec_buf)))
1774 1775 1776 1777 1778 1779
      my_decimal2int(E_DEC_FATAL_ERROR, dec, unsigned_flag, &result);
    else
      result= 0;
    break;
  }
  default:
1780
    result= (longlong)Item_func_ceiling::real_op();
1781 1782
  };
  return result;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1783 1784
}

1785 1786

double Item_func_ceiling::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1787
{
1788 1789 1790 1791
  /*
    the volatile's for BUG #3051 to calm optimizer down (because of gcc's
    bug)
  */
1792
  volatile double value= args[0]->val_real();
1793 1794 1795 1796 1797 1798
  null_value= args[0]->null_value;
  return ceil(value);
}


my_decimal *Item_func_ceiling::decimal_op(my_decimal *decimal_value)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1799
{
1800
  my_decimal val, *value= args[0]->val_decimal(&val);
1801 1802 1803 1804 1805
  if (!(null_value= (args[0]->null_value ||
                     my_decimal_ceiling(E_DEC_FATAL_ERROR, value,
                                        decimal_value) > 1)))
    return decimal_value;
  return 0;
1806 1807 1808 1809 1810
}


longlong Item_func_floor::int_op()
{
1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829
  longlong result;
  switch (args[0]->result_type()) {
  case INT_RESULT:
    result= args[0]->val_int();
    null_value= args[0]->null_value;
    break;
  case DECIMAL_RESULT:
  {
    my_decimal dec_buf, *dec;
    if ((dec= Item_func_floor::decimal_op(&dec_buf)))
      my_decimal2int(E_DEC_FATAL_ERROR, dec, unsigned_flag, &result);
    else
      result= 0;
    break;
  }
  default:
    result= (longlong)Item_func_floor::real_op();
  };
  return result;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1830 1831
}

1832 1833

double Item_func_floor::real_op()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1834
{
1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847
  /*
    the volatile's for BUG #3051 to calm optimizer down (because of gcc's
    bug)
  */
  volatile double value= args[0]->val_real();
  null_value= args[0]->null_value;
  return floor(value);
}


my_decimal *Item_func_floor::decimal_op(my_decimal *decimal_value)
{
  my_decimal val, *value= args[0]->val_decimal(&val);
1848 1849 1850 1851 1852
  if (!(null_value= (args[0]->null_value ||
                     my_decimal_floor(E_DEC_FATAL_ERROR, value,
                                      decimal_value) > 1)))
    return decimal_value;
  return 0;
1853 1854 1855
}


1856
void Item_func_round::fix_length_and_dec()
1857
{
1858 1859
  unsigned_flag= args[0]->unsigned_flag;
  if (!args[1]->const_item())
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1860
  {
1861 1862 1863 1864 1865 1866
    max_length= args[0]->max_length;
    decimals= args[0]->decimals;
    hybrid_type= REAL_RESULT;
    return;
  }
  
1867
  int decimals_to_set= max((int)args[1]->val_int(), 0);
1868 1869 1870 1871 1872 1873 1874 1875
  if (args[0]->decimals == NOT_FIXED_DEC)
  {
    max_length= args[0]->max_length;
    decimals= min(decimals_to_set, NOT_FIXED_DEC);
    hybrid_type= REAL_RESULT;
    return;
  }
  
1876
  switch (args[0]->result_type()) {
1877 1878 1879 1880 1881 1882 1883
  case REAL_RESULT:
  case STRING_RESULT:
    hybrid_type= REAL_RESULT;
    decimals= min(decimals_to_set, NOT_FIXED_DEC);
    max_length= float_length(decimals);
    break;
  case INT_RESULT:
1884
    if (!decimals_to_set &&
1885
        (truncate || (args[0]->decimal_precision() < DECIMAL_LONGLONG_DIGITS)))
1886
    {
1887 1888
      int length_can_increase= test(!truncate && (args[1]->val_int() < 0));
      max_length= args[0]->max_length + length_can_increase;
1889 1890 1891 1892 1893
      /* Here we can keep INT_RESULT */
      hybrid_type= INT_RESULT;
      decimals= 0;
      break;
    }
1894
    /* fall through */
1895 1896 1897 1898 1899
  case DECIMAL_RESULT:
  {
    hybrid_type= DECIMAL_RESULT;
    int decimals_delta= args[0]->decimals - decimals_to_set;
    int precision= args[0]->decimal_precision();
1900 1901 1902 1903
    int length_increase= ((decimals_delta <= 0) || truncate) ? 0:1;

    precision-= decimals_delta - length_increase;
    decimals= decimals_to_set;
1904
    max_length= my_decimal_precision_to_length(precision, decimals,
1905
                                               unsigned_flag);
1906 1907 1908 1909
    break;
  }
  default:
    DBUG_ASSERT(0); /* This result type isn't handled */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1910 1911 1912
  }
}

1913
double my_double_round(double value, int dec, bool truncate)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1914
{
1915
  double tmp;
1916
  uint abs_dec= abs(dec);
1917 1918 1919 1920 1921
  /*
    tmp2 is here to avoid return the value with 80 bit precision
    This will fix that the test round(0.1,1) = round(0.1,1) is true
  */
  volatile double tmp2;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1922

1923 1924
  tmp=(abs_dec < array_elements(log_10) ?
       log_10[abs_dec] : pow(10.0,(double) abs_dec));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1925 1926

  if (truncate)
1927 1928
  {
    if (value >= 0)
1929
      tmp2= dec < 0 ? floor(value/tmp)*tmp : floor(value*tmp)/tmp;
1930
    else
1931
      tmp2= dec < 0 ? ceil(value/tmp)*tmp : ceil(value*tmp)/tmp;
1932
  }
1933 1934 1935
  else
    tmp2=dec < 0 ? rint(value/tmp)*tmp : rint(value*tmp)/tmp;
  return tmp2;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1936 1937 1938
}


1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950
double Item_func_round::real_op()
{
  double value= args[0]->val_real();
  int dec= (int) args[1]->val_int();

  if (!(null_value= args[0]->null_value || args[1]->null_value))
    return my_double_round(value, dec, truncate);

  return 0.0;
}


1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962
longlong Item_func_round::int_op()
{
  longlong value= args[0]->val_int();
  int dec=(int) args[1]->val_int();
  decimals= 0;
  uint abs_dec;
  if ((null_value= args[0]->null_value || args[1]->null_value))
    return 0;
  if (dec >= 0)
    return value; // integer have not digits after point

  abs_dec= -dec;
gunnar@mysql.com's avatar
gunnar@mysql.com committed
1963 1964 1965 1966 1967 1968 1969
  longlong tmp;
  
  if(abs_dec >= array_elements(log_10_int))
    return 0;
  
  tmp= log_10_int[abs_dec];
  
1970 1971 1972
  if (truncate)
  {
    if (unsigned_flag)
gunnar@mysql.com's avatar
gunnar@mysql.com committed
1973
      value= (ulonglong(value)/tmp)*tmp;
1974
    else
gunnar@mysql.com's avatar
gunnar@mysql.com committed
1975
      value= (value/tmp)*tmp;
1976 1977
  }
  else
gunnar@mysql.com's avatar
gunnar@mysql.com committed
1978 1979 1980 1981 1982 1983 1984 1985 1986
  {
    if (unsigned_flag)
      value= ((ulonglong(value)+(tmp>>1))/tmp)*tmp;
    else if ( value >= 0)
      value= ((value+(tmp>>1))/tmp)*tmp;
    else
      value= ((value-(tmp>>1))/tmp)*tmp;
  }
  return value;
1987 1988 1989 1990 1991 1992 1993 1994
}


my_decimal *Item_func_round::decimal_op(my_decimal *decimal_value)
{
  my_decimal val, *value= args[0]->val_decimal(&val);
  int dec=(int) args[1]->val_int();
  if (dec > 0)
1995 1996 1997
  {
    decimals= min(dec, DECIMAL_MAX_SCALE); // to get correct output
  }
1998 1999 2000 2001 2002
  if (!(null_value= (args[0]->null_value || args[1]->null_value ||
                     my_decimal_round(E_DEC_FATAL_ERROR, value, dec, truncate,
                                      decimal_value) > 1)))
    return decimal_value;
  return 0;
2003 2004 2005
}


2006
bool Item_func_rand::fix_fields(THD *thd,Item **ref)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2007
{
2008
  if (Item_real_func::fix_fields(thd, ref))
2009
    return TRUE;
2010
  used_tables_cache|= RAND_TABLE_BIT;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2011 2012
  if (arg_count)
  {					// Only use argument once in query
2013 2014 2015 2016 2017
    if (!args[0]->const_during_execution())
    {
      my_error(ER_WRONG_ARGUMENTS, MYF(0), "RAND");
      return TRUE;
    }
2018
    /*
konstantin@mysql.com's avatar
konstantin@mysql.com committed
2019
      Allocate rand structure once: we must use thd->stmt_arena
2020 2021
      to create rand in proper mem_root if it's a prepared statement or
      stored procedure.
2022 2023 2024

      No need to send a Rand log event if seed was given eg: RAND(seed),
      as it will be replicated in the query as such.
2025 2026
    */
    if (!rand && !(rand= (struct rand_struct*)
konstantin@mysql.com's avatar
konstantin@mysql.com committed
2027
                   thd->stmt_arena->alloc(sizeof(*rand))))
2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042
      return TRUE;
    /*
      PARAM_ITEM is returned if we're in statement prepare and consequently
      no placeholder value is set yet.
    */
    if (args[0]->type() != PARAM_ITEM)
    {
      /*
        TODO: do not do reinit 'rand' for every execute of PS/SP if
        args[0] is a constant.
      */
      uint32 tmp= (uint32) args[0]->val_int();
      randominit(rand, (uint32) (tmp*0x10001L+55555555L),
                 (uint32) (tmp*0x10000001L));
    }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2043
  }
2044
  else
nick@mysql.com's avatar
nick@mysql.com committed
2045
  {
2046 2047 2048 2049 2050
    /*
      Save the seed only the first time RAND() is used in the query
      Once events are forwarded rather than recreated,
      the following can be skipped if inside the slave thread
    */
2051 2052 2053 2054 2055 2056
    if (!thd->rand_used)
    {
      thd->rand_used= 1;
      thd->rand_saved_seed1= thd->rand.seed1;
      thd->rand_saved_seed2= thd->rand.seed2;
    }
2057
    rand= &thd->rand;
nick@mysql.com's avatar
nick@mysql.com committed
2058
  }
2059
  return FALSE;
2060 2061
}

2062 2063 2064 2065 2066 2067
void Item_func_rand::update_used_tables()
{
  Item_real_func::update_used_tables();
  used_tables_cache|= RAND_TABLE_BIT;
}

2068

2069
double Item_func_rand::val_real()
2070
{
2071
  DBUG_ASSERT(fixed == 1);
2072
  return my_rnd(rand);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2073 2074 2075 2076
}

longlong Item_func_sign::val_int()
{
2077
  DBUG_ASSERT(fixed == 1);
2078
  double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2079 2080 2081 2082 2083
  null_value=args[0]->null_value;
  return value < 0.0 ? -1 : (value > 0 ? 1 : 0);
}


2084
double Item_func_units::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2085
{
2086
  DBUG_ASSERT(fixed == 1);
2087
  double value= args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2088 2089 2090 2091 2092 2093 2094 2095
  if ((null_value=args[0]->null_value))
    return 0;
  return value*mul+add;
}


void Item_func_min_max::fix_length_and_dec()
{
2096
  int max_int_part=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2097 2098
  decimals=0;
  max_length=0;
2099
  maybe_null=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2100
  cmp_type=args[0]->result_type();
2101

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2102 2103
  for (uint i=0 ; i < arg_count ; i++)
  {
2104 2105
    set_if_bigger(max_length, args[i]->max_length);
    set_if_bigger(decimals, args[i]->decimals);
2106
    set_if_bigger(max_int_part, args[i]->decimal_int_part());
2107 2108
    if (args[i]->maybe_null)
      maybe_null=1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2109 2110
    cmp_type=item_cmp_type(cmp_type,args[i]->result_type());
  }
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
2111
  if (cmp_type == STRING_RESULT)
2112
    agg_arg_charsets(collation, args, arg_count, MY_COLL_CMP_CONV, 1);
2113 2114 2115
  else if ((cmp_type == DECIMAL_RESULT) || (cmp_type == INT_RESULT))
    max_length= my_decimal_precision_to_length(max_int_part+decimals, decimals,
                                            unsigned_flag);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2116 2117 2118 2119 2120
}


String *Item_func_min_max::val_str(String *str)
{
2121
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2122 2123 2124 2125 2126 2127
  switch (cmp_type) {
  case INT_RESULT:
  {
    longlong nr=val_int();
    if (null_value)
      return 0;
2128
    if (!unsigned_flag)
monty@mysql.com's avatar
monty@mysql.com committed
2129
      str->set(nr,&my_charset_bin);
2130
    else
monty@mysql.com's avatar
monty@mysql.com committed
2131
      str->set((ulonglong) nr,&my_charset_bin);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2132 2133
    return str;
  }
2134 2135 2136 2137 2138 2139 2140 2141
  case DECIMAL_RESULT:
  {
    my_decimal dec_buf, *dec_val= val_decimal(&dec_buf);
    if (null_value)
      return 0;
    my_decimal2string(E_DEC_FATAL_ERROR, dec_val, 0, 0, 0, str);
    return str;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2142 2143
  case REAL_RESULT:
  {
2144
    double nr= val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2145 2146
    if (null_value)
      return 0; /* purecov: inspected */
monty@mysql.com's avatar
monty@mysql.com committed
2147
    str->set(nr,decimals,&my_charset_bin);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2148 2149 2150 2151 2152 2153 2154 2155
    return str;
  }
  case STRING_RESULT:
  {
    String *res;
    LINT_INIT(res);
    for (uint i=0; i < arg_count ; i++)
    {
2156
      if (i == 0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2157 2158 2159 2160 2161 2162 2163
	res=args[i]->val_str(str);
      else
      {
	String *res2;
	res2= args[i]->val_str(res == str ? &tmp_value : str);
	if (res2)
	{
2164
	  int cmp= sortcmp(res,res2,collation.collation);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2165 2166 2167 2168
	  if ((cmp_sign < 0 ? cmp : -cmp) < 0)
	    res=res2;
	}
      }
2169
      if ((null_value= args[i]->null_value))
2170
        return 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2171
    }
2172
    res->set_charset(collation.collation);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2173 2174
    return res;
  }
2175
  case ROW_RESULT:
2176
  default:
2177
    // This case should never be chosen
2178 2179
    DBUG_ASSERT(0);
    return 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2180 2181 2182 2183 2184
  }
  return 0;					// Keep compiler happy
}


2185
double Item_func_min_max::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2186
{
2187
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2188 2189 2190
  double value=0.0;
  for (uint i=0; i < arg_count ; i++)
  {
2191
    if (i == 0)
2192
      value= args[i]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2193 2194
    else
    {
2195
      double tmp= args[i]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2196 2197 2198
      if (!args[i]->null_value && (tmp < value ? cmp_sign : -cmp_sign) > 0)
	value=tmp;
    }
2199 2200
    if ((null_value= args[i]->null_value))
      break;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2201 2202 2203 2204 2205 2206 2207
  }
  return value;
}


longlong Item_func_min_max::val_int()
{
2208
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2209 2210 2211
  longlong value=0;
  for (uint i=0; i < arg_count ; i++)
  {
2212
    if (i == 0)
2213
      value=args[i]->val_int();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2214 2215
    else
    {
2216 2217 2218
      longlong tmp=args[i]->val_int();
      if (!args[i]->null_value && (tmp < value ? cmp_sign : -cmp_sign) > 0)
	value=tmp;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2219
    }
2220 2221
    if ((null_value= args[i]->null_value))
      break;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2222 2223 2224 2225
  }
  return value;
}

2226 2227 2228 2229

my_decimal *Item_func_min_max::val_decimal(my_decimal *dec)
{
  DBUG_ASSERT(fixed == 1);
2230 2231 2232
  my_decimal tmp_buf, *tmp, *res;
  LINT_INIT(res);

2233 2234
  for (uint i=0; i < arg_count ; i++)
  {
2235
    if (i == 0)
2236 2237 2238
      res= args[i]->val_decimal(dec);
    else
    {
2239 2240
      tmp= args[i]->val_decimal(&tmp_buf);      // Zero if NULL
      if (tmp && (my_decimal_cmp(tmp, res) * cmp_sign) < 0)
2241 2242 2243
      {
        if (tmp == &tmp_buf)
        {
2244
          /* Move value out of tmp_buf as this will be reused on next loop */
2245 2246 2247 2248 2249 2250 2251
          my_decimal2decimal(tmp, dec);
          res= dec;
        }
        else
          res= tmp;
      }
    }
2252
    if ((null_value= args[i]->null_value))
2253 2254
    {
      res= 0;
2255
      break;
2256
    }
2257 2258 2259 2260 2261
  }
  return res;
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
2262 2263
longlong Item_func_length::val_int()
{
2264
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274
  String *res=args[0]->val_str(&value);
  if (!res)
  {
    null_value=1;
    return 0; /* purecov: inspected */
  }
  null_value=0;
  return (longlong) res->length();
}

2275

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2276 2277
longlong Item_func_char_length::val_int()
{
2278
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2279 2280 2281 2282 2283 2284 2285
  String *res=args[0]->val_str(&value);
  if (!res)
  {
    null_value=1;
    return 0; /* purecov: inspected */
  }
  null_value=0;
2286
  return (longlong) res->numchars();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2287 2288
}

2289

bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
2290 2291
longlong Item_func_coercibility::val_int()
{
2292
  DBUG_ASSERT(fixed == 1);
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
2293
  null_value= 0;
2294
  return (longlong) args[0]->collation.derivation;
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
2295
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2296

2297

2298 2299 2300
void Item_func_locate::fix_length_and_dec()
{
  maybe_null=0; max_length=11;
2301
  agg_arg_charsets(cmp_collation, args, 2, MY_COLL_CMP_CONV, 1);
2302 2303
}

2304

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2305 2306
longlong Item_func_locate::val_int()
{
2307
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2308 2309 2310 2311 2312 2313 2314 2315
  String *a=args[0]->val_str(&value1);
  String *b=args[1]->val_str(&value2);
  if (!a || !b)
  {
    null_value=1;
    return 0; /* purecov: inspected */
  }
  null_value=0;
2316 2317
  uint start=0;
  uint start0=0;
2318
  my_match_t match;
2319

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2320 2321
  if (arg_count == 3)
  {
2322 2323 2324
    start0= start =(uint) args[2]->val_int()-1;
    start=a->charpos(start);
    
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2325 2326 2327
    if (start > a->length() || start+b->length() > a->length())
      return 0;
  }
2328

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2329 2330
  if (!b->length())				// Found empty string at start
    return (longlong) (start+1);
2331
  
2332
  if (!cmp_collation.collation->coll->instr(cmp_collation.collation,
2333
                                            a->ptr()+start, a->length()-start,
2334 2335 2336 2337
                                            b->ptr(), b->length(),
                                            &match, 1))
    return 0;
  return (longlong) match.mblen + start0 + 1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2338 2339 2340
}


2341 2342
void Item_func_locate::print(String *str)
{
2343
  str->append(STRING_WITH_LEN("locate("));
2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355
  args[1]->print(str);
  str->append(',');
  args[0]->print(str);
  if (arg_count == 3)
  {
    str->append(',');
    args[2]->print(str);
  }
  str->append(')');
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
2356 2357
longlong Item_func_field::val_int()
{
2358
  DBUG_ASSERT(fixed == 1);
2359

2360 2361 2362
  if (cmp_type == STRING_RESULT)
  {
    String *field;
2363 2364
    if (!(field= args[0]->val_str(&value)))
      return 0;
2365
    for (uint i=1 ; i < arg_count ; i++)
2366 2367
    {
      String *tmp_value=args[i]->val_str(&tmp);
bar@bar.mysql.r18.ru's avatar
Fix:  
bar@bar.mysql.r18.ru committed
2368
      if (tmp_value && !sortcmp(field,tmp_value,cmp_collation.collation))
2369
        return (longlong) (i);
2370 2371 2372 2373
    }
  }
  else if (cmp_type == INT_RESULT)
  {
2374
    longlong val= args[0]->val_int();
serg@serg.mylan's avatar
serg@serg.mylan committed
2375 2376
    if (args[0]->null_value)
      return 0;
2377
    for (uint i=1; i < arg_count ; i++)
2378
    {
2379
      if (val == args[i]->val_int() && !args[i]->null_value)
2380
        return (longlong) (i);
2381 2382
    }
  }
2383 2384 2385 2386
  else if (cmp_type == DECIMAL_RESULT)
  {
    my_decimal dec_arg_buf, *dec_arg,
               dec_buf, *dec= args[0]->val_decimal(&dec_buf);
serg@serg.mylan's avatar
serg@serg.mylan committed
2387 2388
    if (args[0]->null_value)
      return 0;
2389 2390 2391
    for (uint i=1; i < arg_count; i++)
    {
      dec_arg= args[i]->val_decimal(&dec_arg_buf);
monty@mysql.com's avatar
monty@mysql.com committed
2392
      if (!args[i]->null_value && !my_decimal_cmp(dec_arg, dec))
2393 2394 2395
        return (longlong) (i);
    }
  }
2396
  else
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2397
  {
2398
    double val= args[0]->val_real();
serg@serg.mylan's avatar
serg@serg.mylan committed
2399 2400
    if (args[0]->null_value)
      return 0;
2401
    for (uint i=1; i < arg_count ; i++)
2402
    {
monty@mysql.com's avatar
monty@mysql.com committed
2403
      if (val == args[i]->val_real() && !args[i]->null_value)
2404
        return (longlong) (i);
2405
    }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2406 2407 2408 2409
  }
  return 0;
}

2410

2411 2412 2413
void Item_func_field::fix_length_and_dec()
{
  maybe_null=0; max_length=3;
2414 2415
  cmp_type= args[0]->result_type();
  for (uint i=1; i < arg_count ; i++)
2416 2417
    cmp_type= item_cmp_type(cmp_type, args[i]->result_type());
  if (cmp_type == STRING_RESULT)
2418
    agg_arg_charsets(cmp_collation, args, arg_count, MY_COLL_CMP_CONV, 1);
2419
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2420

2421

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2422 2423
longlong Item_func_ascii::val_int()
{
2424
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436
  String *res=args[0]->val_str(&value);
  if (!res)
  {
    null_value=1;
    return 0;
  }
  null_value=0;
  return (longlong) (res->length() ? (uchar) (*res)[0] : (uchar) 0);
}

longlong Item_func_ord::val_int()
{
2437
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2438 2439 2440 2441 2442 2443 2444 2445 2446
  String *res=args[0]->val_str(&value);
  if (!res)
  {
    null_value=1;
    return 0;
  }
  null_value=0;
  if (!res->length()) return 0;
#ifdef USE_MB
2447
  if (use_mb(res->charset()))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2448 2449
  {
    register const char *str=res->ptr();
2450
    register uint32 n=0, l=my_ismbchar(res->charset(),str,str+res->length());
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
2451 2452
    if (!l)
      return (longlong)((uchar) *str);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476
    while (l--)
      n=(n<<8)|(uint32)((uchar) *str++);
    return (longlong) n;
  }
#endif
  return (longlong) ((uchar) (*res)[0]);
}

	/* Search after a string in a string of strings separated by ',' */
	/* Returns number of found type >= 1 or 0 if not found */
	/* This optimizes searching in enums to bit testing! */

void Item_func_find_in_set::fix_length_and_dec()
{
  decimals=0;
  max_length=3;					// 1-999
  if (args[0]->const_item() && args[1]->type() == FIELD_ITEM)
  {
    Field *field= ((Item_field*) args[1])->field;
    if (field->real_type() == FIELD_TYPE_SET)
    {
      String *find=args[0]->val_str(&value);
      if (find)
      {
2477 2478
	enum_value= find_type(((Field_enum*) field)->typelib,find->ptr(),
			      find->length(), 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2479 2480 2481 2482 2483 2484
	enum_bit=0;
	if (enum_value)
	  enum_bit=LL(1) << (enum_value-1);
      }
    }
  }
2485
  agg_arg_charsets(cmp_collation, args, 2, MY_COLL_CMP_CONV, 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2486 2487 2488 2489 2490 2491
}

static const char separator=',';

longlong Item_func_find_in_set::val_int()
{
2492
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515
  if (enum_value)
  {
    ulonglong tmp=(ulonglong) args[1]->val_int();
    if (!(null_value=args[1]->null_value || args[0]->null_value))
    {
      if (tmp & enum_bit)
	return enum_value;
    }
    return 0L;
  }

  String *find=args[0]->val_str(&value);
  String *buffer=args[1]->val_str(&value2);
  if (!find || !buffer)
  {
    null_value=1;
    return 0; /* purecov: inspected */
  }
  null_value=0;

  int diff;
  if ((diff=buffer->length() - find->length()) >= 0)
  {
2516 2517 2518 2519 2520 2521 2522 2523 2524
    my_wc_t wc;
    CHARSET_INFO *cs= cmp_collation.collation;
    const char *str_begin= buffer->ptr();
    const char *str_end= buffer->ptr();
    const char *real_end= str_end+buffer->length();
    const uchar *find_str= (const uchar *) find->ptr();
    uint find_str_len= find->length();
    int position= 0;
    while (1)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2525
    {
2526 2527 2528
      int symbol_len;
      if ((symbol_len= cs->cset->mb_wc(cs, &wc, (uchar*) str_end, 
                                       (uchar*) real_end)) > 0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2529
      {
2530 2531
        const char *substr_end= str_end + symbol_len;
        bool is_last_item= (substr_end == real_end);
2532 2533
        bool is_separator= (wc == (my_wc_t) separator);
        if (is_separator || is_last_item)
2534 2535
        {
          position++;
2536
          if (is_last_item && !is_separator)
2537 2538 2539 2540 2541 2542 2543 2544 2545
            str_end= substr_end;
          if (!my_strnncoll(cs, (const uchar *) str_begin,
                            str_end - str_begin,
                            find_str, find_str_len))
            return (longlong) position;
          else
            str_begin= substr_end;
        }
        str_end= substr_end;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2546
      }
serg@serg.mylan's avatar
serg@serg.mylan committed
2547 2548
      else if (str_end - str_begin == 0 &&
               find_str_len == 0 &&
2549 2550 2551
               wc == (my_wc_t) separator)
        return (longlong) ++position;
      else
serg@serg.mylan's avatar
serg@serg.mylan committed
2552
        return LL(0);
2553
    }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2554 2555 2556 2557 2558 2559
  }
  return 0;
}

longlong Item_func_bit_count::val_int()
{
2560
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2561
  ulonglong value= (ulonglong) args[0]->val_int();
2562
  if ((null_value= args[0]->null_value))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2563
    return 0; /* purecov: inspected */
2564
  return (longlong) my_count_bits(value);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2565 2566 2567 2568 2569 2570
}


/****************************************************************************
** Functions to handle dynamic loadable functions
** Original source by: Alexis Mikhailov <root@medinf.chuvashia.su>
2571
** Rewritten by monty.
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2572 2573 2574 2575
****************************************************************************/

#ifdef HAVE_DLOPEN

2576
void udf_handler::cleanup()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2577
{
2578
  if (!not_original)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2579
  {
2580
    if (initialized)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2581
    {
2582 2583
      if (u_d->func_deinit != NULL)
      {
2584
        Udf_func_deinit deinit= u_d->func_deinit;
2585 2586 2587
        (*deinit)(&initid);
      }
      free_udf(u_d);
2588
      initialized= FALSE;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2589
    }
2590 2591
    if (buffers)				// Because of bug in ecc
      delete [] buffers;
2592
    buffers= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2593 2594 2595 2596 2597
  }
}


bool
2598
udf_handler::fix_fields(THD *thd, Item_result_field *func,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2599 2600
			uint arg_count, Item **arguments)
{
2601 2602 2603
#ifndef EMBEDDED_LIBRARY			// Avoid compiler warning
  char buff[STACK_BUFF_ALLOC];			// Max argument in function
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2604 2605
  DBUG_ENTER("Item_udf_func::fix_fields");

2606
  if (check_stack_overrun(thd, STACK_MIN_SIZE, buff))
2607
    DBUG_RETURN(TRUE);				// Fatal error flag is set!
2608

2609
  udf_func *tmp_udf=find_udf(u_d->name.str,(uint) u_d->name.length,1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2610 2611 2612

  if (!tmp_udf)
  {
2613
    my_error(ER_CANT_FIND_UDF, MYF(0), u_d->name.str, errno);
2614
    DBUG_RETURN(TRUE);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2615 2616 2617 2618 2619
  }
  u_d=tmp_udf;
  args=arguments;

  /* Fix all arguments */
2620
  func->maybe_null=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2621 2622 2623 2624 2625 2626 2627 2628 2629 2630
  used_tables_cache=0;
  const_item_cache=1;

  if ((f_args.arg_count=arg_count))
  {
    if (!(f_args.arg_type= (Item_result*)
	  sql_alloc(f_args.arg_count*sizeof(Item_result))))

    {
      free_udf(u_d);
2631
      DBUG_RETURN(TRUE);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2632 2633 2634 2635 2636 2637 2638
    }
    uint i;
    Item **arg,**arg_end;
    for (i=0, arg=arguments, arg_end=arguments+arg_count;
	 arg != arg_end ;
	 arg++,i++)
    {
2639
      if (!(*arg)->fixed &&
2640
          (*arg)->fix_fields(thd, arg))
2641
	DBUG_RETURN(1);
2642
      // we can't assign 'item' before, because fix_fields() can change arg
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
2643
      Item *item= *arg;
2644
      if (item->check_cols(1))
2645
	DBUG_RETURN(TRUE);
2646 2647 2648 2649 2650 2651 2652 2653 2654
      /*
	TODO: We should think about this. It is not always
	right way just to set an UDF result to return my_charset_bin
	if one argument has binary sorting order.
	The result collation should be calculated according to arguments
	derivations in some cases and should not in other cases.
	Moreover, some arguments can represent a numeric input
	which doesn't effect the result character set and collation.
	There is no a general rule for UDF. Everything depends on
2655
        the particular user defined function.
2656
      */
2657 2658
      if (item->collation.collation->state & MY_CS_BINSORT)
	func->collation.set(&my_charset_bin);
2659
      if (item->maybe_null)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2660
	func->maybe_null=1;
2661 2662 2663 2664
      func->with_sum_func= func->with_sum_func || item->with_sum_func;
      used_tables_cache|=item->used_tables();
      const_item_cache&=item->const_item();
      f_args.arg_type[i]=item->result_type();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2665
    }
2666
    //TODO: why all following memory is not allocated with 1 call of sql_alloc?
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2667 2668
    if (!(buffers=new String[arg_count]) ||
	!(f_args.args= (char**) sql_alloc(arg_count * sizeof(char *))) ||
2669 2670 2671 2672 2673 2674 2675
	!(f_args.lengths= (ulong*) sql_alloc(arg_count * sizeof(long))) ||
	!(f_args.maybe_null= (char*) sql_alloc(arg_count * sizeof(char))) ||
	!(num_buffer= (char*) sql_alloc(arg_count *
					ALIGN_SIZE(sizeof(double)))) ||
	!(f_args.attributes= (char**) sql_alloc(arg_count * sizeof(char *))) ||
	!(f_args.attribute_lengths= (ulong*) sql_alloc(arg_count *
						       sizeof(long))))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2676 2677
    {
      free_udf(u_d);
2678
      DBUG_RETURN(TRUE);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693
    }
  }
  func->fix_length_and_dec();
  initid.max_length=func->max_length;
  initid.maybe_null=func->maybe_null;
  initid.const_item=const_item_cache;
  initid.decimals=func->decimals;
  initid.ptr=0;

  if (u_d->func_init)
  {
    char *to=num_buffer;
    for (uint i=0; i < arg_count; i++)
    {
      f_args.args[i]=0;
2694 2695 2696 2697
      f_args.lengths[i]= arguments[i]->max_length;
      f_args.maybe_null[i]= (char) arguments[i]->maybe_null;
      f_args.attributes[i]= arguments[i]->name;
      f_args.attribute_lengths[i]= arguments[i]->name_length;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2698 2699 2700 2701

      switch(arguments[i]->type()) {
      case Item::STRING_ITEM:			// Constant string !
      {
2702
	String *res=arguments[i]->val_str(&buffers[i]);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716
	if (arguments[i]->null_value)
	  continue;
	f_args.args[i]=    (char*) res->ptr();
	break;
      }
      case Item::INT_ITEM:
	*((longlong*) to) = arguments[i]->val_int();
	if (!arguments[i]->null_value)
	{
	  f_args.args[i]=to;
	  to+= ALIGN_SIZE(sizeof(longlong));
	}
	break;
      case Item::REAL_ITEM:
2717
	*((double*) to)= arguments[i]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2718 2719 2720 2721 2722 2723 2724 2725 2726 2727
	if (!arguments[i]->null_value)
	{
	  f_args.args[i]=to;
	  to+= ALIGN_SIZE(sizeof(double));
	}
	break;
      default:					// Skip these
	break;
      }
    }
2728
    thd->net.last_error[0]=0;
2729
    Udf_func_init init= u_d->func_init;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2730 2731
    if ((error=(uchar) init(&initid, &f_args, thd->net.last_error)))
    {
2732 2733
      my_error(ER_CANT_INITIALIZE_UDF, MYF(0),
               u_d->name.str, thd->net.last_error);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2734
      free_udf(u_d);
2735
      DBUG_RETURN(TRUE);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2736 2737 2738 2739
    }
    func->max_length=min(initid.max_length,MAX_BLOB_WIDTH);
    func->maybe_null=initid.maybe_null;
    const_item_cache=initid.const_item;
2740
    func->decimals=min(initid.decimals,NOT_FIXED_DEC);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2741 2742 2743 2744
  }
  initialized=1;
  if (error)
  {
2745 2746
    my_error(ER_CANT_INITIALIZE_UDF, MYF(0),
             u_d->name.str, ER(ER_UNKNOWN_ERROR));
2747
    DBUG_RETURN(TRUE);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2748
  }
2749
  DBUG_RETURN(FALSE);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763
}


bool udf_handler::get_arguments()
{
  if (error)
    return 1;					// Got an error earlier
  char *to= num_buffer;
  uint str_count=0;
  for (uint i=0; i < f_args.arg_count; i++)
  {
    f_args.args[i]=0;
    switch (f_args.arg_type[i]) {
    case STRING_RESULT:
2764
    case DECIMAL_RESULT:
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782
      {
	String *res=args[i]->val_str(&buffers[str_count++]);
	if (!(args[i]->null_value))
	{
	  f_args.args[i]=    (char*) res->ptr();
	  f_args.lengths[i]= res->length();
	  break;
	}
      }
    case INT_RESULT:
      *((longlong*) to) = args[i]->val_int();
      if (!args[i]->null_value)
      {
	f_args.args[i]=to;
	to+= ALIGN_SIZE(sizeof(longlong));
      }
      break;
    case REAL_RESULT:
2783
      *((double*) to)= args[i]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2784 2785 2786 2787 2788 2789
      if (!args[i]->null_value)
      {
	f_args.args[i]=to;
	to+= ALIGN_SIZE(sizeof(double));
      }
      break;
2790
    case ROW_RESULT:
2791
    default:
2792
      // This case should never be chosen
2793
      DBUG_ASSERT(0);
2794
      break;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2795 2796 2797 2798 2799 2800 2801 2802 2803
    }
  }
  return 0;
}

/* This returns (String*) 0 in case of NULL values */

String *udf_handler::val_str(String *str,String *save_str)
{
2804
  uchar is_null_tmp=0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2805
  ulong res_length;
2806
  DBUG_ENTER("udf_handler::val_str");
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2807 2808

  if (get_arguments())
2809
    DBUG_RETURN(0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2810 2811 2812 2813 2814 2815 2816 2817 2818
  char * (*func)(UDF_INIT *, UDF_ARGS *, char *, ulong *, uchar *, uchar *)=
    (char* (*)(UDF_INIT *, UDF_ARGS *, char *, ulong *, uchar *, uchar *))
    u_d->func;

  if ((res_length=str->alloced_length()) < MAX_FIELD_WIDTH)
  {						// This happens VERY seldom
    if (str->alloc(MAX_FIELD_WIDTH))
    {
      error=1;
2819
      DBUG_RETURN(0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2820 2821
    }
  }
2822 2823
  char *res=func(&initid, &f_args, (char*) str->ptr(), &res_length,
		 &is_null_tmp, &error);
2824
  DBUG_PRINT("info", ("udf func returned, res_length: %lu", res_length));
2825
  if (is_null_tmp || !res || error)		// The !res is for safety
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2826
  {
2827 2828
    DBUG_PRINT("info", ("Null or error"));
    DBUG_RETURN(0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2829 2830 2831 2832
  }
  if (res == str->ptr())
  {
    str->length(res_length);
2833 2834
    DBUG_PRINT("exit", ("str: %s", str->ptr()));
    DBUG_RETURN(str);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2835
  }
2836
  save_str->set(res, res_length, str->charset());
2837 2838
  DBUG_PRINT("exit", ("save_str: %s", save_str->ptr()));
  DBUG_RETURN(save_str);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2839 2840 2841
}


2842 2843 2844 2845
/*
  For the moment, UDF functions are returning DECIMAL values as strings
*/

2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865
my_decimal *udf_handler::val_decimal(my_bool *null_value, my_decimal *dec_buf)
{
  char buf[DECIMAL_MAX_STR_LENGTH+1], *end;
  ulong res_length= DECIMAL_MAX_STR_LENGTH;

  if (get_arguments())
  {
    *null_value=1;
    return 0;
  }
  char *(*func)(UDF_INIT *, UDF_ARGS *, char *, ulong *, uchar *, uchar *)=
    (char* (*)(UDF_INIT *, UDF_ARGS *, char *, ulong *, uchar *, uchar *))
    u_d->func;

  char *res= func(&initid, &f_args, buf, &res_length, &is_null, &error);
  if (is_null || error)
  {
    *null_value= 1;
    return 0;
  }
2866 2867
  end= res+ res_length;
  str2my_decimal(E_DEC_FATAL_ERROR, res, dec_buf, &end);
2868 2869 2870
  return dec_buf;
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2871

2872 2873 2874 2875 2876 2877
void Item_udf_func::cleanup()
{
  udf.cleanup();
  Item_func::cleanup();
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2878

2879
double Item_func_udf_float::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2880
{
2881
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2882 2883 2884 2885 2886 2887 2888 2889 2890
  DBUG_ENTER("Item_func_udf_float::val");
  DBUG_PRINT("info",("result_type: %d  arg_count: %d",
		     args[0]->result_type(), arg_count));
  DBUG_RETURN(udf.val(&null_value));
}


String *Item_func_udf_float::val_str(String *str)
{
2891
  DBUG_ASSERT(fixed == 1);
2892
  double nr= val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2893 2894
  if (null_value)
    return 0;					/* purecov: inspected */
monty@mysql.com's avatar
monty@mysql.com committed
2895
  str->set(nr,decimals,&my_charset_bin);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2896 2897 2898 2899 2900 2901
  return str;
}


longlong Item_func_udf_int::val_int()
{
2902
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2903 2904 2905 2906 2907 2908 2909
  DBUG_ENTER("Item_func_udf_int::val_int");
  DBUG_RETURN(udf.val_int(&null_value));
}


String *Item_func_udf_int::val_str(String *str)
{
2910
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2911 2912 2913
  longlong nr=val_int();
  if (null_value)
    return 0;
2914
  if (!unsigned_flag)
monty@mysql.com's avatar
monty@mysql.com committed
2915
    str->set(nr,&my_charset_bin);
2916
  else
monty@mysql.com's avatar
monty@mysql.com committed
2917
    str->set((ulonglong) nr,&my_charset_bin);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2918 2919 2920
  return str;
}

2921 2922 2923 2924

longlong Item_func_udf_decimal::val_int()
{
  my_decimal dec_buf, *dec= udf.val_decimal(&null_value, &dec_buf);
2925
  longlong result;
2926 2927 2928 2929 2930 2931 2932 2933 2934 2935
  if (null_value)
    return 0;
  my_decimal2int(E_DEC_FATAL_ERROR, dec, unsigned_flag, &result);
  return result;
}


double Item_func_udf_decimal::val_real()
{
  my_decimal dec_buf, *dec= udf.val_decimal(&null_value, &dec_buf);
2936
  double result;
2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973
  if (null_value)
    return 0.0;
  my_decimal2double(E_DEC_FATAL_ERROR, dec, &result);
  return result;
}


my_decimal *Item_func_udf_decimal::val_decimal(my_decimal *dec_buf)
{
  DBUG_ASSERT(fixed == 1);
  DBUG_ENTER("Item_func_udf_decimal::val_decimal");
  DBUG_PRINT("info",("result_type: %d  arg_count: %d",
                     args[0]->result_type(), arg_count));

  DBUG_RETURN(udf.val_decimal(&null_value, dec_buf));
}


String *Item_func_udf_decimal::val_str(String *str)
{
  my_decimal dec_buf, *dec= udf.val_decimal(&null_value, &dec_buf);
  if (null_value)
    return 0;
  if (str->length() < DECIMAL_MAX_STR_LENGTH)
    str->length(DECIMAL_MAX_STR_LENGTH);
  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;
}


void Item_func_udf_decimal::fix_length_and_dec()
{
  fix_num_length_and_dec();
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986
/* Default max_length is max argument length */

void Item_func_udf_str::fix_length_and_dec()
{
  DBUG_ENTER("Item_func_udf_str::fix_length_and_dec");
  max_length=0;
  for (uint i = 0; i < arg_count; i++)
    set_if_bigger(max_length,args[i]->max_length);
  DBUG_VOID_RETURN;
}

String *Item_func_udf_str::val_str(String *str)
{
2987
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2988 2989 2990 2991 2992
  String *res=udf.val_str(str,&str_value);
  null_value = !res;
  return res;
}

2993 2994

/*
2995 2996
   This has to come last in the udf_handler methods, or C for AIX
   version 6.0.0.0 fails to compile with debugging enabled. (Yes, really.)
2997 2998 2999 3000
 */

udf_handler::~udf_handler()
{
3001 3002
  /* Everything should be properly cleaned up by this moment. */
  DBUG_ASSERT(not_original || !(initialized || buffers));
3003 3004
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015
#else
bool udf_handler::get_arguments() { return 0; }
#endif /* HAVE_DLOPEN */

/*
** User level locks
*/

pthread_mutex_t LOCK_user_locks;
static HASH hash_user_locks;

3016
class User_level_lock
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3017 3018 3019 3020 3021 3022 3023 3024 3025
{
  char *key;
  uint key_length;

public:
  int count;
  bool locked;
  pthread_cond_t cond;
  pthread_t thread;
hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
3026
  ulong thread_id;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3027

3028
  User_level_lock(const char *key_arg,uint length, ulong id) 
hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
3029
    :key_length(length),count(1),locked(1), thread_id(id)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3030 3031 3032 3033 3034
  {
    key=(char*) my_memdup((byte*) key_arg,length,MYF(0));
    pthread_cond_init(&cond,NULL);
    if (key)
    {
hf@deer.(none)'s avatar
SCRUM  
hf@deer.(none) committed
3035
      if (my_hash_insert(&hash_user_locks,(byte*) this))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3036 3037 3038 3039 3040 3041
      {
	my_free((gptr) key,MYF(0));
	key=0;
      }
    }
  }
3042
  ~User_level_lock()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3043 3044 3045 3046 3047 3048 3049 3050 3051
  {
    if (key)
    {
      hash_delete(&hash_user_locks,(byte*) this);
      my_free((gptr) key,MYF(0));
    }
    pthread_cond_destroy(&cond);
  }
  inline bool initialized() { return key != 0; }
3052 3053 3054
  friend void item_user_lock_release(User_level_lock *ull);
  friend char *ull_get_key(const User_level_lock *ull, uint *length,
                           my_bool not_used);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3055 3056
};

3057
char *ull_get_key(const User_level_lock *ull, uint *length,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3058 3059 3060 3061 3062 3063
		  my_bool not_used __attribute__((unused)))
{
  *length=(uint) ull->key_length;
  return (char*) ull->key;
}

3064 3065 3066

static bool item_user_lock_inited= 0;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3067 3068
void item_user_lock_init(void)
{
3069
  pthread_mutex_init(&LOCK_user_locks,MY_MUTEX_INIT_SLOW);
3070 3071
  hash_init(&hash_user_locks,system_charset_info,
	    16,0,0,(hash_get_key) ull_get_key,NULL,0);
3072
  item_user_lock_inited= 1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3073 3074 3075 3076
}

void item_user_lock_free(void)
{
3077 3078 3079 3080 3081 3082
  if (item_user_lock_inited)
  {
    item_user_lock_inited= 0;
    hash_free(&hash_user_locks);
    pthread_mutex_destroy(&LOCK_user_locks);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3083 3084
}

3085
void item_user_lock_release(User_level_lock *ull)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3086 3087
{
  ull->locked=0;
3088
  ull->thread_id= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3089 3090 3091 3092 3093 3094
  if (--ull->count)
    pthread_cond_signal(&ull->cond);
  else
    delete ull;
}

3095 3096 3097 3098 3099 3100 3101
/*
   Wait until we are at or past the given position in the master binlog
   on the slave
 */

longlong Item_master_pos_wait::val_int()
{
3102
  DBUG_ASSERT(fixed == 1);
3103 3104
  THD* thd = current_thd;
  String *log_name = args[0]->val_str(&value);
3105
  int event_count= 0;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
3106

monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
3107 3108 3109 3110 3111 3112
  null_value=0;
  if (thd->slave_thread || !log_name || !log_name->length())
  {
    null_value = 1;
    return 0;
  }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
3113
  longlong pos = (ulong)args[1]->val_int();
3114
  longlong timeout = (arg_count==3) ? args[2]->val_int() : 0 ;
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
3115
#ifdef HAVE_REPLICATION
3116
  if ((event_count = active_mi->rli.wait_for_pos(thd, log_name, pos, timeout)) == -2)
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
3117 3118 3119 3120
  {
    null_value = 1;
    event_count=0;
  }
3121
#endif
3122 3123 3124
  return event_count;
}

3125 3126 3127 3128
#ifdef EXTRA_DEBUG
void debug_sync_point(const char* lock_name, uint lock_timeout)
{
  THD* thd=current_thd;
3129
  User_level_lock* ull;
3130
  struct timespec abstime;
3131
  int lock_name_len;
3132 3133 3134 3135 3136 3137 3138 3139 3140
  lock_name_len=strlen(lock_name);
  pthread_mutex_lock(&LOCK_user_locks);

  if (thd->ull)
  {
    item_user_lock_release(thd->ull);
    thd->ull=0;
  }

3141 3142 3143 3144 3145
  /*
    If the lock has not been aquired by some client, we do not want to
    create an entry for it, since we immediately release the lock. In
    this case, we will not be waiting, but rather, just waste CPU and
    memory on the whole deal
3146
  */
3147
  if (!(ull= ((User_level_lock*) hash_search(&hash_user_locks, lock_name,
3148 3149 3150 3151 3152 3153 3154
				 lock_name_len))))
  {
    pthread_mutex_unlock(&LOCK_user_locks);
    return;
  }
  ull->count++;

3155 3156 3157 3158
  /*
    Structure is now initialized.  Try to get the lock.
    Set up control struct to allow others to abort locks
  */
3159 3160 3161 3162
  thd->proc_info="User lock";
  thd->mysys_var->current_mutex= &LOCK_user_locks;
  thd->mysys_var->current_cond=  &ull->cond;

3163
  set_timespec(abstime,lock_timeout);
monty@mysql.com's avatar
monty@mysql.com committed
3164 3165 3166 3167 3168 3169 3170
  while (ull->locked && !thd->killed)
  {
    int error= pthread_cond_timedwait(&ull->cond, &LOCK_user_locks, &abstime);
    if (error == ETIMEDOUT || error == ETIME)
      break;
  }

3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198
  if (ull->locked)
  {
    if (!--ull->count)
      delete ull;				// Should never happen
  }
  else
  {
    ull->locked=1;
    ull->thread=thd->real_id;
    thd->ull=ull;
  }
  pthread_mutex_unlock(&LOCK_user_locks);
  pthread_mutex_lock(&thd->mysys_var->mutex);
  thd->proc_info=0;
  thd->mysys_var->current_mutex= 0;
  thd->mysys_var->current_cond=  0;
  pthread_mutex_unlock(&thd->mysys_var->mutex);
  pthread_mutex_lock(&LOCK_user_locks);
  if (thd->ull)
  {
    item_user_lock_release(thd->ull);
    thd->ull=0;
  }
  pthread_mutex_unlock(&LOCK_user_locks);
}

#endif

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3199 3200 3201 3202 3203 3204 3205 3206 3207
/*
  Get a user level lock. If the thread has an old lock this is first released.
  Returns 1:  Got lock
  Returns 0:  Timeout
  Returns NULL: Error
*/

longlong Item_func_get_lock::val_int()
{
3208
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3209 3210 3211 3212
  String *res=args[0]->val_str(&value);
  longlong timeout=args[1]->val_int();
  struct timespec abstime;
  THD *thd=current_thd;
3213
  User_level_lock *ull;
monty@mysql.com's avatar
monty@mysql.com committed
3214
  int error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3215

3216 3217 3218 3219 3220 3221 3222 3223 3224 3225
  /*
    In slave thread no need to get locks, everything is serialized. Anyway
    there is no way to make GET_LOCK() work on slave like it did on master
    (i.e. make it return exactly the same value) because we don't have the
    same other concurrent threads environment. No matter what we return here,
    it's not guaranteed to be same as on master.
  */
  if (thd->slave_thread)
    return 1;

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241
  pthread_mutex_lock(&LOCK_user_locks);

  if (!res || !res->length())
  {
    pthread_mutex_unlock(&LOCK_user_locks);
    null_value=1;
    return 0;
  }
  null_value=0;

  if (thd->ull)
  {
    item_user_lock_release(thd->ull);
    thd->ull=0;
  }

3242 3243 3244
  if (!(ull= ((User_level_lock *) hash_search(&hash_user_locks,
                                              (byte*) res->ptr(),
                                              res->length()))))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3245
  {
3246
    ull=new User_level_lock(res->ptr(),res->length(), thd->thread_id);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260
    if (!ull || !ull->initialized())
    {
      delete ull;
      pthread_mutex_unlock(&LOCK_user_locks);
      null_value=1;				// Probably out of memory
      return 0;
    }
    ull->thread=thd->real_id;
    thd->ull=ull;
    pthread_mutex_unlock(&LOCK_user_locks);
    return 1;					// Got new lock
  }
  ull->count++;

3261 3262 3263 3264
  /*
    Structure is now initialized.  Try to get the lock.
    Set up control struct to allow others to abort locks.
  */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3265 3266 3267 3268
  thd->proc_info="User lock";
  thd->mysys_var->current_mutex= &LOCK_user_locks;
  thd->mysys_var->current_cond=  &ull->cond;

3269
  set_timespec(abstime,timeout);
monty@mysql.com's avatar
monty@mysql.com committed
3270 3271 3272 3273 3274 3275 3276 3277 3278
  error= 0;
  while (ull->locked && !thd->killed)
  {
    error= pthread_cond_timedwait(&ull->cond,&LOCK_user_locks,&abstime);
    if (error == ETIMEDOUT || error == ETIME)
      break;
    error= 0;
  }

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3279 3280 3281
  if (ull->locked)
  {
    if (!--ull->count)
monty@mysql.com's avatar
monty@mysql.com committed
3282 3283
    {
      DBUG_ASSERT(0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3284
      delete ull;				// Should never happen
monty@mysql.com's avatar
monty@mysql.com committed
3285 3286
    }
    if (!error)                                 // Killed (thd->killed != 0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3287 3288 3289 3290 3291
    {
      error=1;
      null_value=1;				// Return NULL
    }
  }
monty@mysql.com's avatar
monty@mysql.com committed
3292
  else                                          // We got the lock
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3293 3294 3295
  {
    ull->locked=1;
    ull->thread=thd->real_id;
3296
    ull->thread_id= thd->thread_id;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312
    thd->ull=ull;
    error=0;
  }
  pthread_mutex_unlock(&LOCK_user_locks);

  pthread_mutex_lock(&thd->mysys_var->mutex);
  thd->proc_info=0;
  thd->mysys_var->current_mutex= 0;
  thd->mysys_var->current_cond=  0;
  pthread_mutex_unlock(&thd->mysys_var->mutex);

  return !error ? 1 : 0;
}


/*
3313 3314 3315 3316 3317
  Release a user level lock.
  Return:
    1 if lock released
    0 if lock wasn't held
    (SQL) NULL if no such lock
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3318 3319 3320 3321
*/

longlong Item_func_release_lock::val_int()
{
3322
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3323
  String *res=args[0]->val_str(&value);
3324
  User_level_lock *ull;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3325 3326 3327 3328 3329 3330 3331 3332 3333 3334
  longlong result;
  if (!res || !res->length())
  {
    null_value=1;
    return 0;
  }
  null_value=0;

  result=0;
  pthread_mutex_lock(&LOCK_user_locks);
3335 3336 3337
  if (!(ull= ((User_level_lock*) hash_search(&hash_user_locks,
                                             (const byte*) res->ptr(),
                                             res->length()))))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354
  {
    null_value=1;
  }
  else
  {
    if (ull->locked && pthread_equal(pthread_self(),ull->thread))
    {
      result=1;					// Release is ok
      item_user_lock_release(ull);
      current_thd->ull=0;
    }
  }
  pthread_mutex_unlock(&LOCK_user_locks);
  return result;
}


3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371
bool Item_func_last_insert_id::fix_fields(THD *thd, Item **ref)
{
  DBUG_ASSERT(fixed == 0);

  if (Item_int_func::fix_fields(thd, ref))
    return TRUE;

  if (arg_count == 0)
  {
    if (!thd->last_insert_id_used)
    {
      /*
        As this statement calls LAST_INSERT_ID(), set
        THD::last_insert_id_used and remember first generated insert
        id of the previous statement in THD::current_insert_id.
      */
      thd->last_insert_id_used= TRUE;
3372
      thd->last_insert_id_used_bin_log= TRUE;
3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383
      thd->current_insert_id= thd->last_insert_id;
    }
    null_value= FALSE;
  }

  thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);

  return FALSE;
}


3384
longlong Item_func_last_insert_id::val_int()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3385
{
3386
  THD *thd= current_thd;
3387
  DBUG_ASSERT(fixed == 1);
3388 3389
  if (arg_count)
  {
3390 3391 3392
    longlong value= args[0]->val_int();
    thd->insert_id(value);
    null_value= args[0]->null_value;
3393
    return value;
3394
  }
3395 3396

  return thd->current_insert_id;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3397 3398
}

3399

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3400 3401 3402 3403
/* This function is just used to test speed of different functions */

longlong Item_func_benchmark::val_int()
{
3404
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3405
  char buff[MAX_FIELD_WIDTH];
3406
  String tmp(buff,sizeof(buff), &my_charset_bin);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3407 3408 3409 3410 3411 3412
  THD *thd=current_thd;

  for (ulong loop=0 ; loop < loop_count && !thd->killed; loop++)
  {
    switch (args[0]->result_type()) {
    case REAL_RESULT:
3413
      (void) args[0]->val_real();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3414 3415 3416 3417 3418 3419 3420
      break;
    case INT_RESULT:
      (void) args[0]->val_int();
      break;
    case STRING_RESULT:
      (void) args[0]->val_str(&tmp);
      break;
3421
    case ROW_RESULT:
3422
    default:
3423
      // This case should never be chosen
3424 3425
      DBUG_ASSERT(0);
      return 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3426 3427 3428 3429 3430
    }
  }
  return 0;
}

3431

3432 3433
void Item_func_benchmark::print(String *str)
{
3434
  str->append(STRING_WITH_LEN("benchmark("));
3435
  char buffer[20];
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
3436 3437 3438
  // my_charset_bin is good enough for numbers
  String st(buffer, sizeof(buffer), &my_charset_bin);
  st.set((ulonglong)loop_count, &my_charset_bin);
3439 3440 3441 3442 3443 3444
  str->append(st);
  str->append(',');
  args[0]->print(str);
  str->append(')');
}

monty@mysql.com's avatar
monty@mysql.com committed
3445

3446 3447 3448 3449
/* This function is just used to create tests with time gaps */

longlong Item_func_sleep::val_int()
{
3450 3451 3452
  THD *thd= current_thd;
  struct timespec abstime;
  pthread_cond_t cond;
3453
  int error;
3454

3455
  DBUG_ASSERT(fixed == 1);
3456

3457
  double time= args[0]->val_real();
3458 3459 3460 3461 3462 3463 3464 3465
  set_timespec_nsec(abstime, (ulonglong)(time * ULL(1000000000)));

  pthread_cond_init(&cond, NULL);
  pthread_mutex_lock(&LOCK_user_locks);

  thd->mysys_var->current_mutex= &LOCK_user_locks;
  thd->mysys_var->current_cond=  &cond;

monty@mysql.com's avatar
monty@mysql.com committed
3466 3467 3468 3469 3470 3471 3472 3473
  error= 0;
  while (!thd->killed)
  {
    error= pthread_cond_timedwait(&cond, &LOCK_user_locks, &abstime);
    if (error == ETIMEDOUT || error == ETIME)
      break;
    error= 0;
  }
3474 3475 3476 3477 3478 3479 3480 3481 3482

  pthread_mutex_lock(&thd->mysys_var->mutex);
  thd->mysys_var->current_mutex= 0;
  thd->mysys_var->current_cond=  0;
  pthread_mutex_unlock(&thd->mysys_var->mutex);

  pthread_mutex_unlock(&LOCK_user_locks);
  pthread_cond_destroy(&cond);

monty@mysql.com's avatar
monty@mysql.com committed
3483
  return test(!error); 		// Return 1 killed
3484 3485 3486
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507
#define extra_size sizeof(double)

static user_var_entry *get_variable(HASH *hash, LEX_STRING &name,
				    bool create_if_not_exists)
{
  user_var_entry *entry;

  if (!(entry = (user_var_entry*) hash_search(hash, (byte*) name.str,
					      name.length)) &&
      create_if_not_exists)
  {
    uint size=ALIGN_SIZE(sizeof(user_var_entry))+name.length+1+extra_size;
    if (!hash_inited(hash))
      return 0;
    if (!(entry = (user_var_entry*) my_malloc(size,MYF(MY_WME))))
      return 0;
    entry->name.str=(char*) entry+ ALIGN_SIZE(sizeof(user_var_entry))+
      extra_size;
    entry->name.length=name.length;
    entry->value=0;
    entry->length=0;
3508
    entry->update_query_id=0;
3509
    entry->collation.set(NULL, DERIVATION_IMPLICIT);
kaa@polly.local's avatar
kaa@polly.local committed
3510
    entry->unsigned_flag= 0;
3511 3512 3513 3514 3515 3516 3517 3518 3519 3520
    /*
      If we are here, we were called from a SET or a query which sets a
      variable. Imagine it is this:
      INSERT INTO t SELECT @a:=10, @a:=@a+1.
      Then when we have a Item_func_get_user_var (because of the @a+1) so we
      think we have to write the value of @a to the binlog. But before that,
      we have a Item_func_set_user_var to create @a (@a:=10), in this we mark
      the variable as "already logged" (line below) so that it won't be logged
      by Item_func_get_user_var (because that's not necessary).
    */
3521
    entry->used_query_id=current_thd->query_id;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3522 3523
    entry->type=STRING_RESULT;
    memcpy(entry->name.str, name.str, name.length+1);
hf@deer.(none)'s avatar
SCRUM  
hf@deer.(none) committed
3524
    if (my_hash_insert(hash,(byte*) entry))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3525 3526 3527 3528 3529 3530 3531 3532
    {
      my_free((char*) entry,MYF(0));
      return 0;
    }
  }
  return entry;
}

3533
/*
3534 3535
  When a user variable is updated (in a SET command or a query like
  SELECT @a:= ).
3536
*/
3537

3538
bool Item_func_set_user_var::fix_fields(THD *thd, Item **ref)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3539
{
3540
  DBUG_ASSERT(fixed == 0);
3541
  /* fix_fields will call Item_func_set_user_var::fix_length_and_dec */
3542
  if (Item_func::fix_fields(thd, ref) ||
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3543
      !(entry= get_variable(&thd->user_vars, name, 1)))
3544
    return TRUE;
3545 3546 3547 3548 3549
  /* 
     Remember the last query which updated it, this way a query can later know
     if this variable is a constant item in the query (it is if update_query_id
     is different from query_id).
  */
3550
  entry->update_query_id= thd->query_id;
3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565
  /*
    As it is wrong and confusing to associate any 
    character set with NULL, @a should be latin2
    after this query sequence:

      SET @a=_latin2'string';
      SET @a=NULL;

    I.e. the second query should not change the charset
    to the current default value, but should keep the 
    original value assigned during the first query.
    In order to do it, we don't copy charset
    from the argument if the argument is NULL
    and the variable has previously been initialized.
  */
3566 3567
  null_item= (args[0]->type() == NULL_ITEM);
  if (!entry->collation.collation || !null_item)
3568 3569
    entry->collation.set(args[0]->collation.collation, DERIVATION_IMPLICIT);
  collation.set(entry->collation.collation, DERIVATION_IMPLICIT);
3570
  cached_result_type= args[0]->result_type();
3571
  return FALSE;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3572 3573 3574 3575 3576 3577 3578 3579 3580
}


void
Item_func_set_user_var::fix_length_and_dec()
{
  maybe_null=args[0]->maybe_null;
  max_length=args[0]->max_length;
  decimals=args[0]->decimals;
3581
  collation.set(args[0]->collation.collation, DERIVATION_IMPLICIT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3582 3583
}

3584

3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596
/*
  Set value to user variable.

  SYNOPSYS
    update_hash()
    entry    - pointer to structure representing variable
    set_null - should we set NULL value ?
    ptr      - pointer to buffer with new value
    length   - length of new value
    type     - type of new value
    cs       - charset info for new value
    dv       - derivation for new value
3597
    unsigned_arg - indiates if a value of type INT_RESULT is unsigned
3598 3599 3600 3601 3602 3603 3604

  RETURN VALUE
    False - success, True - failure
*/

static bool
update_hash(user_var_entry *entry, bool set_null, void *ptr, uint length,
3605 3606
            Item_result type, CHARSET_INFO *cs, Derivation dv,
            bool unsigned_arg)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3607
{
3608
  if (set_null)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3609 3610 3611 3612
  {
    char *pos= (char*) entry+ ALIGN_SIZE(sizeof(user_var_entry));
    if (entry->value && entry->value != pos)
      my_free(entry->value,MYF(0));
3613 3614
    entry->value= 0;
    entry->length= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3615 3616 3617
  }
  else
  {
3618 3619
    if (type == STRING_RESULT)
      length++;					// Store strings with end \0
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640
    if (length <= extra_size)
    {
      /* Save value in value struct */
      char *pos= (char*) entry+ ALIGN_SIZE(sizeof(user_var_entry));
      if (entry->value != pos)
      {
	if (entry->value)
	  my_free(entry->value,MYF(0));
	entry->value=pos;
      }
    }
    else
    {
      /* Allocate variable */
      if (entry->length != length)
      {
	char *pos= (char*) entry+ ALIGN_SIZE(sizeof(user_var_entry));
	if (entry->value == pos)
	  entry->value=0;
	if (!(entry->value=(char*) my_realloc(entry->value, length,
					      MYF(MY_ALLOW_ZERO_PTR))))
3641
	  return 1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3642 3643
      }
    }
3644 3645 3646 3647 3648
    if (type == STRING_RESULT)
    {
      length--;					// Fix length change above
      entry->value[length]= 0;			// Store end \0
    }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3649
    memcpy(entry->value,ptr,length);
3650 3651
    if (type == DECIMAL_RESULT)
      ((my_decimal*)entry->value)->fix_buffer_pointer();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3652
    entry->length= length;
3653
    entry->collation.set(cs, dv);
kaa@polly.local's avatar
kaa@polly.local committed
3654
    entry->unsigned_flag= unsigned_arg;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3655
  }
3656
  entry->type=type;
3657
  return 0;
3658
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3659

3660 3661 3662

bool
Item_func_set_user_var::update_hash(void *ptr, uint length, Item_result type,
3663 3664
                                    CHARSET_INFO *cs, Derivation dv,
                                    bool unsigned_arg)
3665
{
3666 3667 3668 3669 3670 3671
  /*
    If we set a variable explicitely to NULL then keep the old
    result type of the variable
  */
  if ((null_value= args[0]->null_value) && null_item)
    type= entry->type;                          // Don't change type of item
3672
  if (::update_hash(entry, (null_value= args[0]->null_value),
3673
                    ptr, length, type, cs, dv, unsigned_arg))
3674 3675 3676 3677 3678 3679
  {
    current_thd->fatal_error();     // Probably end of memory
    null_value= 1;
    return 1;
  }
  return 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3680 3681 3682
}


3683 3684
/* Get the value of a variable as a double */

3685
double user_var_entry::val_real(my_bool *null_value)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3686
{
3687 3688 3689 3690 3691 3692 3693 3694
  if ((*null_value= (value == 0)))
    return 0.0;

  switch (type) {
  case REAL_RESULT:
    return *(double*) value;
  case INT_RESULT:
    return (double) *(longlong*) value;
3695 3696 3697 3698 3699 3700
  case DECIMAL_RESULT:
  {
    double result;
    my_decimal2double(E_DEC_FATAL_ERROR, (my_decimal *)value, &result);
    return result;
  }
3701
  case STRING_RESULT:
serg@serg.mylan's avatar
serg@serg.mylan committed
3702
    return my_atof(value);                      // This is null terminated
3703 3704 3705
  case ROW_RESULT:
    DBUG_ASSERT(1);				// Impossible
    break;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
3706
  }
3707
  return 0.0;					// Impossible
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3708 3709 3710
}


3711 3712 3713
/* Get the value of a variable as an integer */

longlong user_var_entry::val_int(my_bool *null_value)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3714
{
3715 3716 3717 3718 3719 3720 3721 3722
  if ((*null_value= (value == 0)))
    return LL(0);

  switch (type) {
  case REAL_RESULT:
    return (longlong) *(double*) value;
  case INT_RESULT:
    return *(longlong*) value;
3723 3724 3725
  case DECIMAL_RESULT:
  {
    longlong result;
3726
    my_decimal2int(E_DEC_FATAL_ERROR, (my_decimal *)value, 0, &result);
3727 3728
    return result;
  }
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
3729
  case STRING_RESULT:
monty@mysql.com's avatar
monty@mysql.com committed
3730 3731 3732 3733
  {
    int error;
    return my_strtoll10(value, (char**) 0, &error);// String is null terminated
  }
3734 3735 3736
  case ROW_RESULT:
    DBUG_ASSERT(1);				// Impossible
    break;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
3737
  }
3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751
  return LL(0);					// Impossible
}


/* Get the value of a variable as a string */

String *user_var_entry::val_str(my_bool *null_value, String *str,
				uint decimals)
{
  if ((*null_value= (value == 0)))
    return (String*) 0;

  switch (type) {
  case REAL_RESULT:
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
3752
    str->set(*(double*) value, decimals, &my_charset_bin);
3753 3754
    break;
  case INT_RESULT:
3755 3756 3757 3758
    if (!unsigned_flag)
      str->set(*(longlong*) value, &my_charset_bin);
    else
      str->set(*(ulonglong*) value, &my_charset_bin);
3759
    break;
3760 3761 3762
  case DECIMAL_RESULT:
    my_decimal2string(E_DEC_FATAL_ERROR, (my_decimal *)value, 0, 0, 0, str);
    break;
3763
  case STRING_RESULT:
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
3764
    if (str->copy(value, length, collation.collation))
3765
      str= 0;					// EOM error
3766 3767 3768
  case ROW_RESULT:
    DBUG_ASSERT(1);				// Impossible
    break;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
3769
  }
3770
  return(str);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3771 3772
}

3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799
/* Get the value of a variable as a decimal */

my_decimal *user_var_entry::val_decimal(my_bool *null_value, my_decimal *val)
{
  if ((*null_value= (value == 0)))
    return 0;

  switch (type) {
  case REAL_RESULT:
    double2my_decimal(E_DEC_FATAL_ERROR, *(double*) value, val);
    break;
  case INT_RESULT:
    int2my_decimal(E_DEC_FATAL_ERROR, *(longlong*) value, 0, val);
    break;
  case DECIMAL_RESULT:
    val= (my_decimal *)value;
    break;
  case STRING_RESULT:
    str2my_decimal(E_DEC_FATAL_ERROR, value, length, collation.collation, val);
    break;
  case ROW_RESULT:
    DBUG_ASSERT(1);				// Impossible
    break;
  }
  return(val);
}

3800 3801
/*
  This functions is invoked on SET @variable or @variable:= expression.
3802
  Evaluate (and check expression), store results.
3803 3804 3805 3806 3807

  SYNOPSYS
    Item_func_set_user_var::check()

  NOTES
3808 3809
    For now it always return OK. All problem with value evaluating
    will be caught by thd->net.report_error check in sql_set_variables().
3810 3811

  RETURN
3812
    FALSE OK.
3813 3814 3815
*/

bool
3816
Item_func_set_user_var::check(bool use_result_field)
3817 3818
{
  DBUG_ENTER("Item_func_set_user_var::check");
3819 3820
  if (use_result_field)
    DBUG_ASSERT(result_field);
3821 3822 3823 3824

  switch (cached_result_type) {
  case REAL_RESULT:
  {
3825 3826
    save_result.vreal= use_result_field ? result_field->val_real() :
                        args[0]->val_real();
3827 3828 3829 3830
    break;
  }
  case INT_RESULT:
  {
3831 3832 3833 3834
    save_result.vint= use_result_field ? result_field->val_int() :
                       args[0]->val_int();
    unsigned_flag= use_result_field ? ((Field_num*)result_field)->unsigned_flag:
                    args[0]->unsigned_flag;
3835 3836 3837 3838
    break;
  }
  case STRING_RESULT:
  {
3839 3840
    save_result.vstr= use_result_field ? result_field->val_str(&value) :
                       args[0]->val_str(&value);
3841 3842
    break;
  }
3843 3844
  case DECIMAL_RESULT:
  {
3845 3846 3847
    save_result.vdec= use_result_field ?
                       result_field->val_decimal(&decimal_buff) :
                       args[0]->val_decimal(&decimal_buff);
3848 3849
    break;
  }
3850 3851
  case ROW_RESULT:
  default:
3852
    // This case should never be chosen
3853 3854 3855
    DBUG_ASSERT(0);
    break;
  }
3856
  DBUG_RETURN(FALSE);
3857 3858
}

3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870

/*
  This functions is invoked on SET @variable or @variable:= expression.

  SYNOPSIS
    Item_func_set_user_var::update()

  NOTES
    We have to store the expression as such in the variable, independent of
    the value method used by the user

  RETURN
3871
    0	OK
3872 3873 3874 3875
    1	EOM Error

*/

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3876 3877 3878
bool
Item_func_set_user_var::update()
{
3879 3880 3881 3882
  bool res;
  DBUG_ENTER("Item_func_set_user_var::update");
  LINT_INIT(res);

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3883 3884
  switch (cached_result_type) {
  case REAL_RESULT:
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
3885
  {
3886
    res= update_hash((void*) &save_result.vreal,sizeof(save_result.vreal),
kaa@polly.local's avatar
kaa@polly.local committed
3887
		     REAL_RESULT, &my_charset_bin, DERIVATION_IMPLICIT, 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3888
    break;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
3889
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3890
  case INT_RESULT:
3891
  {
3892
    res= update_hash((void*) &save_result.vint, sizeof(save_result.vint),
3893
                     INT_RESULT, &my_charset_bin, DERIVATION_IMPLICIT,
3894
                     unsigned_flag);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3895
    break;
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
3896
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3897
  case STRING_RESULT:
3898
  {
3899
    if (!save_result.vstr)					// Null value
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
3900
      res= update_hash((void*) 0, 0, STRING_RESULT, &my_charset_bin,
kaa@polly.local's avatar
kaa@polly.local committed
3901
		       DERIVATION_IMPLICIT, 0);
3902
    else
3903 3904 3905
      res= update_hash((void*) save_result.vstr->ptr(),
		       save_result.vstr->length(), STRING_RESULT,
		       save_result.vstr->charset(),
kaa@polly.local's avatar
kaa@polly.local committed
3906
		       DERIVATION_IMPLICIT, 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3907 3908
    break;
  }
3909 3910 3911 3912
  case DECIMAL_RESULT:
  {
    if (!save_result.vdec)					// Null value
      res= update_hash((void*) 0, 0, DECIMAL_RESULT, &my_charset_bin,
kaa@polly.local's avatar
kaa@polly.local committed
3913
                       DERIVATION_IMPLICIT, 0);
3914 3915 3916
    else
      res= update_hash((void*) save_result.vdec,
                       sizeof(my_decimal), DECIMAL_RESULT,
kaa@polly.local's avatar
kaa@polly.local committed
3917
                       &my_charset_bin, DERIVATION_IMPLICIT, 0);
3918 3919
    break;
  }
3920
  case ROW_RESULT:
3921
  default:
3922
    // This case should never be chosen
3923 3924 3925
    DBUG_ASSERT(0);
    break;
  }
3926
  DBUG_RETURN(res);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3927 3928 3929
}


3930
double Item_func_set_user_var::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3931
{
3932
  DBUG_ASSERT(fixed == 1);
3933
  check(0);
3934
  update();					// Store expression
3935
  return entry->val_real(&null_value);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3936 3937
}

3938
longlong Item_func_set_user_var::val_int()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3939
{
3940
  DBUG_ASSERT(fixed == 1);
3941
  check(0);
3942 3943
  update();					// Store expression
  return entry->val_int(&null_value);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3944 3945
}

3946
String *Item_func_set_user_var::val_str(String *str)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3947
{
3948
  DBUG_ASSERT(fixed == 1);
3949
  check(0);
3950 3951
  update();					// Store expression
  return entry->val_str(&null_value, str, decimals);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
3952 3953 3954
}


3955 3956 3957
my_decimal *Item_func_set_user_var::val_decimal(my_decimal *val)
{
  DBUG_ASSERT(fixed == 1);
3958
  check(0);
3959 3960 3961 3962 3963
  update();					// Store expression
  return entry->val_decimal(&null_value, val);
}


3964 3965
void Item_func_set_user_var::print(String *str)
{
3966
  str->append(STRING_WITH_LEN("(@"));
3967
  str->append(name.str, name.length);
3968
  str->append(STRING_WITH_LEN(":="));
3969 3970 3971 3972 3973
  args[0]->print(str);
  str->append(')');
}


3974 3975
void Item_func_set_user_var::print_as_stmt(String *str)
{
3976
  str->append(STRING_WITH_LEN("set @"));
3977
  str->append(name.str, name.length);
3978
  str->append(STRING_WITH_LEN(":="));
3979 3980 3981 3982
  args[0]->print(str);
  str->append(')');
}

3983 3984 3985 3986 3987 3988 3989 3990 3991 3992
bool Item_func_set_user_var::send(Protocol *protocol, String *str_arg)
{
  if (result_field)
  {
    check(1);
    update();
    return protocol->store(result_field);
  }
  return Item::send(protocol, str_arg);
}
3993

3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006
void Item_func_set_user_var::make_field(Send_field *tmp_field)
{
  if (result_field)
  {
    result_field->make_field(tmp_field);
    DBUG_ASSERT(tmp_field->table_name != 0);
    if (Item::name)
      tmp_field->col_name=Item::name;               // Use user supplied name
  }
  else
    Item::make_field(tmp_field);
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
4007 4008 4009
String *
Item_func_get_user_var::val_str(String *str)
{
4010
  DBUG_ASSERT(fixed == 1);
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
4011
  DBUG_ENTER("Item_func_get_user_var::val_str");
4012
  if (!var_entry)
4013
    DBUG_RETURN((String*) 0);			// No such variable
4014
  DBUG_RETURN(var_entry->val_str(&null_value, str, decimals));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4015 4016 4017
}


4018
double Item_func_get_user_var::val_real()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4019
{
4020
  DBUG_ASSERT(fixed == 1);
4021 4022
  if (!var_entry)
    return 0.0;					// No such variable
4023 4024 4025 4026 4027 4028 4029 4030 4031 4032
  return (var_entry->val_real(&null_value));
}


my_decimal *Item_func_get_user_var::val_decimal(my_decimal *dec)
{
  DBUG_ASSERT(fixed == 1);
  if (!var_entry)
    return 0;
  return var_entry->val_decimal(&null_value, dec);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4033 4034 4035 4036 4037
}


longlong Item_func_get_user_var::val_int()
{
4038
  DBUG_ASSERT(fixed == 1);
4039 4040 4041
  if (!var_entry)
    return LL(0);				// No such variable
  return (var_entry->val_int(&null_value));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4042 4043 4044
}


4045
/*
4046 4047 4048 4049 4050 4051 4052 4053 4054 4055
  Get variable by name and, if necessary, put the record of variable 
  use into the binary log.
  
  SYNOPSIS
    get_var_with_binlog()
      thd        Current thread
      name       Variable name 
      out_entry  [out] variable structure or NULL. The pointer is set 
                 regardless of whether function succeeded or not.

4056 4057 4058 4059
  When a user variable is invoked from an update query (INSERT, UPDATE etc),
  stores this variable and its value in thd->user_var_events, so that it can be
  written to the binlog (will be written just before the query is written, see
  log.cc).
4060

4061
  RETURN
4062
    0  OK
4063
    1  Failed to put appropriate record into binary log
4064

4065 4066
*/

4067 4068
int get_var_with_binlog(THD *thd, enum_sql_command sql_command,
                        LEX_STRING &name, user_var_entry **out_entry)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4069
{
4070
  BINLOG_USER_VAR_EVENT *user_var_event;
4071 4072
  user_var_entry *var_entry;
  var_entry= get_variable(&thd->user_vars, name, 0);
4073 4074

  if (!(opt_bin_log && is_update_query(sql_command)))
4075 4076 4077 4078
  {
    *out_entry= var_entry;
    return 0;
  }
4079 4080

  if (!var_entry)
4081
  {
4082
    /*
4083 4084 4085 4086
      If the variable does not exist, it's NULL, but we want to create it so
      that it gets into the binlog (if it didn't, the slave could be
      influenced by a variable of the same name previously set by another
      thread).
4087 4088
      We create it like if it had been explicitly set with SET before.
      The 'new' mimics what sql_yacc.yy does when 'SET @a=10;'.
4089 4090 4091
      sql_set_variables() is what is called from 'case SQLCOM_SET_OPTION'
      in dispatch_command()). Instead of building a one-element list to pass to
      sql_set_variables(), we could instead manually call check() and update();
4092 4093
      this would save memory and time; but calling sql_set_variables() makes
      one unique place to maintain (sql_set_variables()). 
4094 4095 4096

      Manipulation with lex is necessary since free_underlaid_joins
      is going to release memory belonging to the main query.
4097 4098 4099
    */

    List<set_var_base> tmp_var_list;
4100 4101 4102
    LEX *sav_lex= thd->lex, lex_tmp;
    thd->lex= &lex_tmp;
    lex_start(thd, NULL, 0);
4103 4104
    tmp_var_list.push_back(new set_var_user(new Item_func_set_user_var(name,
                                                                       new Item_null())));
4105 4106
    /* Create the variable */
    if (sql_set_variables(thd, &tmp_var_list))
4107 4108
    {
      thd->lex= sav_lex;
4109
      goto err;
4110 4111
    }
    thd->lex= sav_lex;
4112 4113 4114
    if (!(var_entry= get_variable(&thd->user_vars, name, 0)))
      goto err;
  }
4115 4116
  else if (var_entry->used_query_id == thd->query_id ||
           mysql_bin_log.is_query_in_union(thd, var_entry->used_query_id))
4117 4118 4119 4120 4121 4122 4123 4124 4125
  {
    /* 
       If this variable was already stored in user_var_events by this query
       (because it's used in more than one place in the query), don't store
       it.
    */
    *out_entry= var_entry;
    return 0;
  }
4126 4127 4128 4129

  uint size;
  /*
    First we need to store value of var_entry, when the next situation
4130
    appears:
4131 4132
    > set @a:=1;
    > insert into t1 values (@a), (@a:=@a+1), (@a:=@a+1);
4133 4134 4135 4136 4137 4138
    We have to write to binlog value @a= 1.
    
    We allocate the user_var_event on user_var_events_alloc pool, not on
    the this-statement-execution pool because in SPs user_var_event objects 
    may need to be valid after current [SP] statement execution pool is
    destroyed.
4139
  */
4140 4141 4142
  size= ALIGN_SIZE(sizeof(BINLOG_USER_VAR_EVENT)) + var_entry->length;
  if (!(user_var_event= (BINLOG_USER_VAR_EVENT *)
        alloc_root(thd->user_var_events_alloc, size)))
4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154
    goto err;
  
  user_var_event->value= (char*) user_var_event +
    ALIGN_SIZE(sizeof(BINLOG_USER_VAR_EVENT));
  user_var_event->user_var_event= var_entry;
  user_var_event->type= var_entry->type;
  user_var_event->charset_number= var_entry->collation.collation->number;
  if (!var_entry->value)
  {
    /* NULL value*/
    user_var_event->length= 0;
    user_var_event->value= 0;
4155
  }
4156 4157 4158 4159 4160 4161 4162 4163 4164 4165
  else
  {
    user_var_event->length= var_entry->length;
    memcpy(user_var_event->value, var_entry->value,
           var_entry->length);
  }
  /* Mark that this variable has been used by this query */
  var_entry->used_query_id= thd->query_id;
  if (insert_dynamic(&thd->user_var_events, (gptr) &user_var_event))
    goto err;
4166 4167 4168
  
  *out_entry= var_entry;
  return 0;
4169

4170
err:
4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182
  *out_entry= var_entry;
  return 1;
}


void Item_func_get_user_var::fix_length_and_dec()
{
  THD *thd=current_thd;
  int error;
  maybe_null=1;
  decimals=NOT_FIXED_DEC;
  max_length=MAX_BLOB_WIDTH;
4183

4184
  error= get_var_with_binlog(thd, thd->lex->sql_command, name, &var_entry);
4185 4186

  if (var_entry)
4187
  {
4188
    collation.set(var_entry->collation);
4189 4190 4191
    switch (var_entry->type) {
    case REAL_RESULT:
      max_length= DBL_DIG + 8;
4192
      break;
4193 4194
    case INT_RESULT:
      max_length= MAX_BIGINT_WIDTH;
4195
      decimals=0;
4196 4197 4198 4199
      break;
    case STRING_RESULT:
      max_length= MAX_BLOB_WIDTH;
      break;
4200
    case DECIMAL_RESULT:
4201 4202
      max_length= DECIMAL_MAX_STR_LENGTH;
      decimals= DECIMAL_MAX_SCALE;
4203
      break;
monty@mysql.com's avatar
monty@mysql.com committed
4204
    case ROW_RESULT:                            // Keep compiler happy
4205 4206
    default:
      DBUG_ASSERT(0);
monty@mysql.com's avatar
monty@mysql.com committed
4207
      break;
4208 4209
    }
  }
4210
  else
4211 4212
  {
    collation.set(&my_charset_bin, DERIVATION_IMPLICIT);
4213
    null_value= 1;
4214
  }
4215

4216 4217
  if (error)
    thd->fatal_error();
4218

4219
  return;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4220 4221 4222
}


4223
bool Item_func_get_user_var::const_item() const
4224
{
4225
  return (!var_entry || current_thd->query_id != var_entry->update_query_id);
4226
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238


enum Item_result Item_func_get_user_var::result_type() const
{
  user_var_entry *entry;
  if (!(entry = (user_var_entry*) hash_search(&current_thd->user_vars,
					      (byte*) name.str,
					      name.length)))
    return STRING_RESULT;
  return entry->type;
}

4239 4240 4241

void Item_func_get_user_var::print(String *str)
{
4242
  str->append(STRING_WITH_LEN("(@"));
4243 4244 4245 4246
  str->append(name.str,name.length);
  str->append(')');
}

4247

4248
bool Item_func_get_user_var::eq(const Item *item, bool binary_cmp) const
4249 4250 4251 4252 4253 4254
{
  /* Assume we don't have rtti */
  if (this == item)
    return 1;					// Same item is same.
  /* Check if other type is also a get_user_var() object */
  if (item->type() != FUNC_ITEM ||
4255
      ((Item_func*) item)->functype() != functype())
4256 4257 4258 4259 4260 4261 4262
    return 0;
  Item_func_get_user_var *other=(Item_func_get_user_var*) item;
  return (name.length == other->name.length &&
	  !memcmp(name.str, other->name.str, name.length));
}


4263
bool Item_func_get_user_var::set_value(THD *thd,
4264
                                       sp_rcontext */*ctx*/, Item **it)
4265
{
4266
  Item_func_set_user_var *suv= new Item_func_set_user_var(get_name(), *it);
4267 4268 4269 4270
  /*
    Item_func_set_user_var is not fixed after construction, call
    fix_fields().
  */
4271
  return (!suv || suv->fix_fields(thd, it) || suv->check(0) || suv->update());
4272 4273 4274
}


4275
bool Item_user_var_as_out_param::fix_fields(THD *thd, Item **ref)
4276 4277
{
  DBUG_ASSERT(fixed == 0);
4278
  if (Item::fix_fields(thd, ref) ||
4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295
      !(entry= get_variable(&thd->user_vars, name, 1)))
    return TRUE;
  entry->type= STRING_RESULT;
  /*
    Let us set the same collation which is used for loading
    of fields in LOAD DATA INFILE.
    (Since Item_user_var_as_out_param is used only there).
  */
  entry->collation.set(thd->variables.collation_database);
  entry->update_query_id= thd->query_id;
  return FALSE;
}


void Item_user_var_as_out_param::set_null_value(CHARSET_INFO* cs)
{
  if (::update_hash(entry, TRUE, 0, 0, STRING_RESULT, cs,
4296
                    DERIVATION_IMPLICIT, 0 /* unsigned_arg */))
4297 4298 4299 4300 4301 4302 4303 4304
    current_thd->fatal_error();			// Probably end of memory
}


void Item_user_var_as_out_param::set_value(const char *str, uint length,
                                           CHARSET_INFO* cs)
{
  if (::update_hash(entry, FALSE, (void*)str, length, STRING_RESULT, cs,
4305
                    DERIVATION_IMPLICIT, 0 /* unsigned_arg */))
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
    current_thd->fatal_error();			// Probably end of memory
}


double Item_user_var_as_out_param::val_real()
{
  DBUG_ASSERT(0);
  return 0.0;
}


longlong Item_user_var_as_out_param::val_int()
{
  DBUG_ASSERT(0);
  return 0;
}


String* Item_user_var_as_out_param::val_str(String *str)
{
  DBUG_ASSERT(0);
  return 0;
}


my_decimal* Item_user_var_as_out_param::val_decimal(my_decimal *decimal_buffer)
{
  DBUG_ASSERT(0);
  return 0;
}


void Item_user_var_as_out_param::print(String *str)
{
  str->append('@');
  str->append(name.str,name.length);
}


4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356
Item_func_get_system_var::
Item_func_get_system_var(sys_var *var_arg, enum_var_type var_type_arg,
                       LEX_STRING *component_arg, const char *name_arg,
                       size_t name_len_arg)
  :var(var_arg), var_type(var_type_arg), component(*component_arg)
{
  /* set_name() will allocate the name */
  set_name(name_arg, name_len_arg, system_charset_info);
}


bool
4357
Item_func_get_system_var::fix_fields(THD *thd, Item **ref)
4358
{
4359
  Item *item;
4360
  DBUG_ENTER("Item_func_get_system_var::fix_fields");
4361

4362 4363 4364 4365 4366
  /*
    Evaluate the system variable and substitute the result (a basic constant)
    instead of this item. If the variable can not be evaluated,
    the error is reported in sys_var::item().
  */
4367
  if (!(item= var->item(thd, var_type, &component)))
4368 4369 4370 4371 4372 4373 4374 4375
    DBUG_RETURN(1);                             // Impossible
  item->set_name(name, 0, system_charset_info); // don't allocate a new name
  thd->change_item_tree(ref, item);

  DBUG_RETURN(0);
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
4376 4377
longlong Item_func_inet_aton::val_int()
{
4378
  DBUG_ASSERT(fixed == 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4379 4380 4381 4382 4383
  uint byte_result = 0;
  ulonglong result = 0;			// We are ready for 64 bit addresses
  const char *p,* end;
  char c = '.'; // we mark c to indicate invalid IP in case length is 0
  char buff[36];
4384
  int dot_count= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4385

4386
  String *s,tmp(buff,sizeof(buff),&my_charset_bin);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402
  if (!(s = args[0]->val_str(&tmp)))		// If null value
    goto err;
  null_value=0;

  end= (p = s->ptr()) + s->length();
  while (p < end)
  {
    c = *p++;
    int digit = (int) (c - '0');		// Assume ascii
    if (digit >= 0 && digit <= 9)
    {
      if ((byte_result = byte_result * 10 + digit) > 255)
	goto err;				// Wrong address
    }
    else if (c == '.')
    {
4403
      dot_count++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4404 4405 4406 4407 4408 4409 4410
      result= (result << 8) + (ulonglong) byte_result;
      byte_result = 0;
    }
    else
      goto err;					// Invalid character
  }
  if (c != '.')					// IP number can't end on '.'
4411
  {
4412 4413 4414 4415 4416 4417
    /*
      Handle short-forms addresses according to standard. Examples:
      127		-> 0.0.0.127
      127.1		-> 127.0.0.1
      127.2.1		-> 127.2.0.1
    */
4418
    switch (dot_count) {
4419 4420
    case 1: result<<= 8; /* Fall through */
    case 2: result<<= 8; /* Fall through */
4421
    }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4422
    return (result << 8) + (ulonglong) byte_result;
4423
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4424 4425 4426 4427 4428 4429

err:
  null_value=1;
  return 0;
}

4430

4431
void Item_func_match::init_search(bool no_order)
4432
{
4433
  DBUG_ENTER("Item_func_match::init_search");
4434 4435

  /* Check if init_search() has been called before */
4436
  if (ft_handler)
4437
    DBUG_VOID_RETURN;
4438

4439
  if (key == NO_SUCH_KEY)
4440 4441
  {
    List<Item> fields;
4442
    fields.push_back(new Item_string(" ",1, cmp_collation.collation));
4443 4444
    for (uint i=1; i < arg_count; i++)
      fields.push_back(args[i]);
4445
    concat=new Item_func_concat_ws(fields);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
4446 4447 4448
    /*
      Above function used only to get value and do not need fix_fields for it:
      Item_string - basic constant
monty@mysql.com's avatar
monty@mysql.com committed
4449 4450
      fields - fix_fields() was already called for this arguments
      Item_func_concat_ws - do not need fix_fields() to produce value
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
4451 4452
    */
    concat->quick_fix_field();
4453
  }
4454

4455 4456
  if (master)
  {
4457 4458
    join_key=master->join_key=join_key|master->join_key;
    master->init_search(no_order);
4459 4460
    ft_handler=master->ft_handler;
    join_key=master->join_key;
4461
    DBUG_VOID_RETURN;
4462 4463
  }

monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
4464
  String *ft_tmp= 0;
4465

4466
  // MATCH ... AGAINST (NULL) is meaningless, but possible
4467
  if (!(ft_tmp=key_item()->val_str(&value)))
4468
  {
4469 4470
    ft_tmp= &value;
    value.set("",0,cmp_collation.collation);
4471 4472
  }

4473 4474
  if (ft_tmp->charset() != cmp_collation.collation)
  {
4475
    uint dummy_errors;
4476
    search_value.copy(ft_tmp->ptr(), ft_tmp->length(), ft_tmp->charset(),
4477
                      cmp_collation.collation, &dummy_errors);
4478
    ft_tmp= &search_value;
4479 4480
  }

4481 4482
  if (join_key && !no_order)
    flags|=FT_SORTED;
4483
  ft_handler=table->file->ft_init_ext(flags, key, ft_tmp);
4484 4485 4486

  if (join_key)
    table->file->ft_handler=ft_handler;
4487 4488

  DBUG_VOID_RETURN;
4489 4490
}

4491

4492
bool Item_func_match::fix_fields(THD *thd, Item **ref)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4493
{
4494
  DBUG_ASSERT(fixed == 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4495
  Item *item;
4496
  LINT_INIT(item);				// Safe as arg_count is > 1
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4497

4498 4499 4500
  maybe_null=1;
  join_key=0;

4501 4502 4503 4504 4505
  /*
    const_item is assumed in quite a bit of places, so it would be difficult
    to remove;  If it would ever to be removed, this should include
    modifications to find_best and auto_close as complement to auto_init code
    above.
4506
   */
4507
  if (Item_func::fix_fields(thd, ref) ||
4508
      !args[0]->const_during_execution())
4509 4510
  {
    my_error(ER_WRONG_ARGUMENTS,MYF(0),"AGAINST");
4511
    return TRUE;
4512
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4513

4514 4515
  const_item_cache=0;
  for (uint i=1 ; i < arg_count ; i++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4516
  {
4517
    item=args[i];
serg@serg.mysql.com's avatar
serg@serg.mysql.com committed
4518
    if (item->type() == Item::REF_ITEM)
4519 4520
      args[i]= item= *((Item_ref *)item)->ref;
    if (item->type() != Item::FIELD_ITEM)
4521
      key=NO_SUCH_KEY;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4522
  }
4523 4524
  /*
    Check that all columns come from the same table.
4525
    We've already checked that columns in MATCH are fields so
4526 4527 4528
    PARAM_TABLE_BIT can only appear from AGAINST argument.
  */
  if ((used_tables_cache & ~PARAM_TABLE_BIT) != item->used_tables())
4529
    key=NO_SUCH_KEY;
4530

4531
  if (key == NO_SUCH_KEY && !(flags & FT_BOOL))
4532 4533
  {
    my_error(ER_WRONG_ARGUMENTS,MYF(0),"MATCH");
4534
    return TRUE;
4535
  }
4536
  table=((Item_field *)item)->field->table;
monty@mysql.com's avatar
monty@mysql.com committed
4537
  if (!(table->file->table_flags() & HA_CAN_FULLTEXT))
4538
  {
monty@mysql.com's avatar
monty@mysql.com committed
4539
    my_error(ER_TABLE_CANT_HANDLE_FT, MYF(0));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4540
    return 1;
4541
  }
4542
  table->fulltext_searched=1;
4543 4544
  return agg_arg_collations_for_comparison(cmp_collation,
                                           args+1, arg_count-1, 0);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
4545
}
4546

bk@work.mysql.com's avatar
bk@work.mysql.com committed
4547 4548 4549
bool Item_func_match::fix_index()
{
  Item_field *item;
4550
  uint ft_to_key[MAX_KEY], ft_cnt[MAX_KEY], fts=0, keynr;
4551
  uint max_cnt=0, mkeys=0, i;
4552

4553
  if (key == NO_SUCH_KEY)
4554
    return 0;
4555 4556 4557
  
  if (!table) 
    goto err;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4558

4559
  for (keynr=0 ; keynr < table->s->keys ; keynr++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4560
  {
4561
    if ((table->key_info[keynr].flags & HA_FULLTEXT) &&
4562
        (table->keys_in_use_for_query.is_set(keynr)))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4563
    {
4564
      ft_to_key[fts]=keynr;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4565 4566 4567 4568 4569 4570
      ft_cnt[fts]=0;
      fts++;
    }
  }

  if (!fts)
4571
    goto err;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4572

4573
  for (i=1; i < arg_count; i++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4574
  {
4575
    item=(Item_field*)args[i];
4576
    for (keynr=0 ; keynr < fts ; keynr++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4577
    {
4578
      KEY *ft_key=&table->key_info[ft_to_key[keynr]];
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4579 4580 4581 4582 4583
      uint key_parts=ft_key->key_parts;

      for (uint part=0 ; part < key_parts ; part++)
      {
	if (item->field->eq(ft_key->key_part[part].field))
4584
	  ft_cnt[keynr]++;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4585 4586 4587 4588
      }
    }
  }

4589
  for (keynr=0 ; keynr < fts ; keynr++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4590
  {
4591
    if (ft_cnt[keynr] > max_cnt)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4592
    {
4593
      mkeys=0;
4594 4595
      max_cnt=ft_cnt[mkeys]=ft_cnt[keynr];
      ft_to_key[mkeys]=ft_to_key[keynr];
4596 4597
      continue;
    }
4598
    if (max_cnt && ft_cnt[keynr] == max_cnt)
4599 4600
    {
      mkeys++;
4601 4602
      ft_cnt[mkeys]=ft_cnt[keynr];
      ft_to_key[mkeys]=ft_to_key[keynr];
4603
      continue;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4604 4605 4606
    }
  }

4607
  for (keynr=0 ; keynr <= mkeys ; keynr++)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4608
  {
4609 4610
    // partial keys doesn't work
    if (max_cnt < arg_count-1 ||
4611
        max_cnt < table->key_info[ft_to_key[keynr]].key_parts)
4612
      continue;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4613

4614
    key=ft_to_key[keynr];
4615

4616 4617 4618
    return 0;
  }

4619
err:
4620
  if (flags & FT_BOOL)
4621
  {
4622
    key=NO_SUCH_KEY;
4623 4624
    return 0;
  }
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
4625 4626
  my_message(ER_FT_MATCHING_KEY_NOT_FOUND,
             ER(ER_FT_MATCHING_KEY_NOT_FOUND), MYF(0));
4627
  return 1;
4628 4629
}

4630

4631
bool Item_func_match::eq(const Item *item, bool binary_cmp) const
4632
{
4633 4634
  if (item->type() != FUNC_ITEM ||
      ((Item_func*)item)->functype() != FT_FUNC ||
4635
      flags != ((Item_func_match*)item)->flags)
4636 4637 4638 4639 4640
    return 0;

  Item_func_match *ifm=(Item_func_match*) item;

  if (key == ifm->key && table == ifm->table &&
4641
      key_item()->eq(ifm->key_item(), binary_cmp))
4642
    return 1;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
4643 4644 4645 4646

  return 0;
}

4647

4648
double Item_func_match::val_real()
4649
{
4650
  DBUG_ASSERT(fixed == 1);
4651
  DBUG_ENTER("Item_func_match::val");
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
4652
  if (ft_handler == NULL)
4653
    DBUG_RETURN(-1.0);
4654

4655
  if (key != NO_SUCH_KEY && table->null_row) /* NULL row from an outer join */
4656 4657
    return 0.0;

4658 4659 4660
  if (join_key)
  {
    if (table->file->ft_handler)
4661
      DBUG_RETURN(ft_handler->please->get_relevance(ft_handler));
4662 4663 4664
    join_key=0;
  }

4665
  if (key == NO_SUCH_KEY)
4666
  {
4667 4668
    String *a= concat->val_str(&value);
    if ((null_value= (a == 0)))
4669 4670 4671
      DBUG_RETURN(0);
    DBUG_RETURN(ft_handler->please->find_relevance(ft_handler,
				      (byte *)a->ptr(), a->length()));
4672 4673
  }
  else
4674 4675
    DBUG_RETURN(ft_handler->please->find_relevance(ft_handler,
                                                   table->record[0], 0));
4676 4677
}

4678 4679
void Item_func_match::print(String *str)
{
4680
  str->append(STRING_WITH_LEN("(match "));
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
4681
  print_args(str, 1);
4682
  str->append(STRING_WITH_LEN(" against ("));
4683
  args[0]->print(str);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
4684
  if (flags & FT_BOOL)
4685
    str->append(STRING_WITH_LEN(" in boolean mode"));
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
4686
  else if (flags & FT_EXPAND)
4687 4688
    str->append(STRING_WITH_LEN(" with query expansion"));
  str->append(STRING_WITH_LEN("))"));
4689
}
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
4690

4691 4692
longlong Item_func_bit_xor::val_int()
{
4693
  DBUG_ASSERT(fixed == 1);
4694 4695
  ulonglong arg1= (ulonglong) args[0]->val_int();
  ulonglong arg2= (ulonglong) args[1]->val_int();
4696
  if ((null_value= (args[0]->null_value || args[1]->null_value)))
4697 4698 4699 4700
    return 0;
  return (longlong) (arg1 ^ arg2);
}

4701

4702 4703 4704 4705
/***************************************************************************
  System variables
****************************************************************************/

4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722
/*
  Return value of an system variable base[.name] as a constant item

  SYNOPSIS
    get_system_var()
    thd			Thread handler
    var_type		global / session
    name		Name of base or system variable
    component		Component.

  NOTES
    If component.str = 0 then the variable name is in 'name'

  RETURN
    0	error
    #	constant item
*/
4723

4724 4725 4726

Item *get_system_var(THD *thd, enum_var_type var_type, LEX_STRING name,
		     LEX_STRING component)
4727
{
4728 4729 4730
  sys_var *var;
  LEX_STRING *base_name, *component_name;

4731 4732 4733 4734 4735 4736 4737 4738 4739 4740
  if (component.str)
  {
    base_name= &component;
    component_name= &name;
  }
  else
  {
    base_name= &name;
    component_name= &component;			// Empty string
  }
4741

4742
  if (!(var= find_sys_var(base_name->str, base_name->length)))
4743
    return 0;
4744 4745 4746 4747
  if (component.str)
  {
    if (!var->is_struct())
    {
4748
      my_error(ER_VARIABLE_IS_NOT_STRUCT, MYF(0), base_name->str);
4749 4750 4751
      return 0;
    }
  }
pem@mysql.com's avatar
pem@mysql.com committed
4752
  thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
4753

4754 4755
  set_if_smaller(component_name->length, MAX_SYS_VAR_LENGTH);

4756
  return new Item_func_get_system_var(var, var_type, component_name,
4757
                                      NULL, 0);
4758 4759 4760
}


4761 4762
/*
  Check a user level lock.
4763 4764 4765 4766 4767 4768 4769 4770

  SYNOPSIS:
    val_int()

  RETURN VALUES
    1		Available
    0		Already taken
    NULL	Error
4771 4772
*/

4773
longlong Item_func_is_free_lock::val_int()
4774
{
4775
  DBUG_ASSERT(fixed == 1);
4776
  String *res=args[0]->val_str(&value);
4777
  User_level_lock *ull;
4778 4779

  null_value=0;
4780
  if (!res || !res->length())
4781 4782 4783 4784 4785 4786
  {
    null_value=1;
    return 0;
  }
  
  pthread_mutex_lock(&LOCK_user_locks);
4787
  ull= (User_level_lock *) hash_search(&hash_user_locks, (byte*) res->ptr(),
4788 4789 4790 4791 4792 4793
			  res->length());
  pthread_mutex_unlock(&LOCK_user_locks);
  if (!ull || !ull->locked)
    return 1;
  return 0;
}
4794

hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
4795 4796
longlong Item_func_is_used_lock::val_int()
{
4797
  DBUG_ASSERT(fixed == 1);
hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
4798
  String *res=args[0]->val_str(&value);
4799
  User_level_lock *ull;
hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
4800 4801 4802 4803 4804 4805

  null_value=1;
  if (!res || !res->length())
    return 0;
  
  pthread_mutex_lock(&LOCK_user_locks);
4806
  ull= (User_level_lock *) hash_search(&hash_user_locks, (byte*) res->ptr(),
hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
4807 4808 4809 4810 4811 4812 4813 4814 4815
			  res->length());
  pthread_mutex_unlock(&LOCK_user_locks);
  if (!ull || !ull->locked)
    return 0;

  null_value=0;
  return ull->thread_id;
}

4816

4817 4818 4819 4820 4821 4822 4823 4824 4825
longlong Item_func_row_count::val_int()
{
  DBUG_ASSERT(fixed == 1);
  THD *thd= current_thd;

  return thd->row_count_func;
}


4826 4827 4828
Item_func_sp::Item_func_sp(Name_resolution_context *context_arg, sp_name *name)
  :Item_func(), context(context_arg), m_name(name), m_sp(NULL),
   result_field(NULL)
4829
{
4830
  maybe_null= 1;
4831
  m_name->init_qname(current_thd);
monty@mysql.com's avatar
monty@mysql.com committed
4832
  dummy_table= (TABLE*) sql_calloc(sizeof(TABLE));
4833 4834
}

monty@mysql.com's avatar
monty@mysql.com committed
4835

4836 4837 4838 4839
Item_func_sp::Item_func_sp(Name_resolution_context *context_arg,
                           sp_name *name, List<Item> &list)
  :Item_func(list), context(context_arg), m_name(name), m_sp(NULL),
   result_field(NULL)
4840
{
4841
  maybe_null= 1;
4842
  m_name->init_qname(current_thd);
monty@mysql.com's avatar
monty@mysql.com committed
4843
  dummy_table= (TABLE*) sql_calloc(sizeof(TABLE));
4844 4845
}

4846 4847 4848 4849 4850 4851 4852 4853
void
Item_func_sp::cleanup()
{
  if (result_field)
  {
    delete result_field;
    result_field= NULL;
  }
4854
  m_sp= NULL;
4855 4856
  Item_func::cleanup();
}
monty@mysql.com's avatar
monty@mysql.com committed
4857

4858 4859 4860
const char *
Item_func_sp::func_name() const
{
4861
  THD *thd= current_thd;
4862
  /* Calculate length to avoid reallocation of string for sure */
4863 4864 4865 4866
  uint len= ((m_name->m_db.length +
              m_name->m_name.length)*2 + //characters*quoting
             2 +                         // ` and `
             1 +                         // .
4867 4868
             1 +                         // end of string
             ALIGN_SIZE(1));             // to avoid String reallocation
monty@mysql.com's avatar
monty@mysql.com committed
4869
  String qname((char *)alloc_root(thd->mem_root, len), len,
4870
               system_charset_info);
4871

4872 4873 4874 4875 4876
  qname.length(0);
  append_identifier(thd, &qname, m_name->m_db.str, m_name->m_db.length);
  qname.append('.');
  append_identifier(thd, &qname, m_name->m_name.str, m_name->m_name.length);
  return qname.ptr();
4877 4878
}

4879

4880 4881 4882
Field *
Item_func_sp::sp_result_field(void) const
{
pem@mysql.comhem.se's avatar
pem@mysql.comhem.se committed
4883
  Field *field;
4884
  DBUG_ENTER("Item_func_sp::sp_result_field");
4885 4886 4887 4888
  DBUG_PRINT("info", ("sp: %s, flags: %x, level: %lu",
                      (m_sp ? "YES" : "NO"),
                      (m_sp ? m_sp->m_flags : (uint)0),
                      (m_sp ? m_sp->m_recursion_level : (ulong)0)));
4889 4890

  if (!m_sp)
4891
  {
4892 4893 4894
    THD *thd= current_thd;
    if (!(m_sp= sp_find_routine(thd, TYPE_ENUM_FUNCTION, m_name,
                                &thd->sp_func_cache, TRUE)))
4895
    {
4896 4897
      my_error(ER_SP_DOES_NOT_EXIST, MYF(0), "FUNCTION", m_name->m_qname.str);
      DBUG_RETURN(0);
4898 4899
    }
  }
4900 4901 4902 4903
  if (!dummy_table->s)
  {
    char *empty_name= (char *) "";
    TABLE_SHARE *share;
4904
    dummy_table->s= share= &dummy_table->share_not_to_be_used;
4905 4906 4907
    dummy_table->alias = empty_name;
    dummy_table->maybe_null = maybe_null;
    dummy_table->in_use= current_thd;
4908
    dummy_table->copy_blobs= TRUE;
4909 4910 4911
    share->table_cache_key = empty_name;
    share->table_name = empty_name;
  }
4912 4913 4914
  if (!(field= m_sp->create_result_field(max_length, name, dummy_table)))
    my_message(ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES), MYF(0));

4915
  DBUG_RETURN(field);
4916 4917 4918
}


4919 4920 4921 4922 4923 4924 4925 4926
/*
  Execute function & store value in field

  RETURN
   0  value <> NULL
   1  value =  NULL  or error
*/

4927
bool
4928 4929
Item_func_sp::execute(Field **flp)
{
4930
  THD *thd= current_thd;
4931
  Field *f;
4932 4933 4934 4935 4936 4937

  /*
    Get field in virtual tmp table to store result. Create the field if
    invoked first time.
  */
  
4938 4939
  if (!(f= *flp))
  {
4940 4941
    if (!(*flp= f= sp_result_field()))
    {
4942 4943 4944
      /* Error set by sp_result_field() */
      null_value= 1;
      return TRUE;
4945 4946 4947
    }

    f->move_field((f->pack_length() > sizeof(result_buf)) ?
4948 4949 4950 4951
                  sql_alloc(f->pack_length()) : result_buf);
    f->null_ptr= (uchar *)&null_value;
    f->null_bit= 1;
  }
4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966

  /* Execute function and store the return value in the field. */

  if (execute_impl(thd, f))
  {
    null_value= 1;
    context->process_error(thd);
    return TRUE;
  }

  /* Check that the field (the value) is not NULL. */

  null_value= f->is_null();

  return null_value;
4967 4968 4969
}


4970 4971
bool
Item_func_sp::execute_impl(THD *thd, Field *return_value_fld)
4972
{
4973
  bool err_status= TRUE;
4974
  Sub_statement_state statement_state;
4975 4976 4977
#ifndef NO_EMBEDDED_ACCESS_CHECKS
  Security_context *save_security_ctx= thd->security_ctx;
#endif
4978

4979 4980
  DBUG_ENTER("Item_func_sp::execute_impl");

4981 4982 4983 4984 4985 4986 4987
#ifndef NO_EMBEDDED_ACCESS_CHECKS
  if (context->security_ctx)
  {
    /* Set view definer security context */
    thd->security_ctx= context->security_ctx;
  }
#endif
4988
  if (find_and_check_access(thd))
4989
    goto error;
4990

4991 4992 4993 4994 4995
  /*
    Disable the binlogging if this is not a SELECT statement. If this is a
    SELECT, leave binlogging on, so execute_function() code writes the
    function call into binlog.
  */
4996
  thd->reset_sub_statement_state(&statement_state, SUB_STMT_FUNCTION);
4997
  err_status= m_sp->execute_function(thd, args, arg_count, return_value_fld);
4998
  thd->restore_sub_statement_state(&statement_state);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
4999

5000
error:
5001
#ifndef NO_EMBEDDED_ACCESS_CHECKS
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
5002
  thd->security_ctx= save_security_ctx;
5003
#endif
5004

5005
  DBUG_RETURN(err_status);
5006 5007
}

5008

5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024
void
Item_func_sp::make_field(Send_field *tmp_field)
{
  Field *field;
  DBUG_ENTER("Item_func_sp::make_field");
  if ((field= sp_result_field()))
  {
    field->make_field(tmp_field);
    delete field;
    DBUG_VOID_RETURN;
  }
  init_make_field(tmp_field, MYSQL_TYPE_VARCHAR);  
  DBUG_VOID_RETURN;
}


5025 5026
enum enum_field_types
Item_func_sp::field_type() const
5027
{
5028
  Field *field;
5029
  DBUG_ENTER("Item_func_sp::field_type");
5030

5031 5032
  if (result_field)
    DBUG_RETURN(result_field->type());
5033
  if ((field= sp_result_field()))
5034
  {
5035 5036 5037
    enum_field_types result= field->type();
    delete field;
    DBUG_RETURN(result);
5038
  }
5039
  DBUG_RETURN(MYSQL_TYPE_VARCHAR);
5040 5041
}

5042

5043 5044
Item_result
Item_func_sp::result_type() const
5045
{
5046
  Field *field;
5047 5048
  DBUG_ENTER("Item_func_sp::result_type");
  DBUG_PRINT("info", ("m_sp = %p", m_sp));
5049

5050 5051
  if (result_field)
    DBUG_RETURN(result_field->result_type());
5052
  if ((field= sp_result_field()))
5053
  {
5054 5055 5056
    Item_result result= field->result_type();
    delete field;
    DBUG_RETURN(result);
5057
  }
5058
  DBUG_RETURN(STRING_RESULT);
5059 5060 5061 5062 5063
}

void
Item_func_sp::fix_length_and_dec()
{
5064
  Field *field;
5065 5066
  DBUG_ENTER("Item_func_sp::fix_length_and_dec");

5067 5068 5069
  if (result_field)
  {
    decimals= result_field->decimals();
5070
    max_length= result_field->field_length;
5071
    collation.set(result_field->charset());
5072 5073 5074
    DBUG_VOID_RETURN;
  }

5075
  if (!(field= sp_result_field()))
5076 5077
  {
    context->process_error(current_thd);
5078
    DBUG_VOID_RETURN;
5079
  }
5080
  decimals= field->decimals();
monty@mishka.local's avatar
merge  
monty@mishka.local committed
5081
  max_length= field->field_length;
5082
  collation.set(field->charset());
monty@mishka.local's avatar
merge  
monty@mishka.local committed
5083
  maybe_null= 1;
5084
  delete field;
5085 5086
  DBUG_VOID_RETURN;
}
monty@mysql.com's avatar
monty@mysql.com committed
5087 5088


5089 5090 5091
longlong Item_func_found_rows::val_int()
{
  DBUG_ASSERT(fixed == 1);
5092
  return current_thd->found_rows();
5093
}
5094

5095

5096 5097 5098
Field *
Item_func_sp::tmp_table_field(TABLE *t_arg)
{
5099
  Field *field= 0;
5100 5101 5102
  DBUG_ENTER("Item_func_sp::tmp_table_field");

  if (m_sp)
5103
    field= m_sp->create_result_field(max_length, (const char*) name, t_arg);
5104
  
5105 5106
  if (!field) 
    field= Item_func::tmp_table_field(t_arg);
5107

5108
  if (!field)
5109 5110
    my_message(ER_OUT_OF_RESOURCES, ER(ER_OUT_OF_RESOURCES), MYF(0));

5111
  DBUG_RETURN(field);
5112
}
5113

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
5114

5115
/*
5116
  Find the function and check access rights to the function
5117 5118

  SYNOPSIS
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
5119 5120
    find_and_check_access()
    thd           thread handler
5121 5122

  RETURN
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
5123 5124
    FALSE    Access granted
    TRUE     Requested access can't be granted or function doesn't exists
5125 5126 5127 5128 5129

  NOTES
    Checks if requested access to function can be granted to user.
    If function isn't found yet, it searches function first.
    If function can't be found or user don't have requested access
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
5130
    error is raised.
5131
*/
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
5132

5133
bool
5134
Item_func_sp::find_and_check_access(THD *thd)
5135
{
5136 5137
  if (! m_sp && ! (m_sp= sp_find_routine(thd, TYPE_ENUM_FUNCTION, m_name,
                                         &thd->sp_func_cache, TRUE)))
5138 5139
  {
    my_error(ER_SP_DOES_NOT_EXIST, MYF(0), "FUNCTION", m_name->m_qname.str);
5140
    return TRUE;
5141 5142
  }

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
5143
#ifndef NO_EMBEDDED_ACCESS_CHECKS
5144
  if (check_routine_access(thd, EXECUTE_ACL,
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
5145
			   m_sp->m_db.str, m_sp->m_name.str, 0, FALSE))
5146
    return TRUE;
5147
#endif
monty@mysql.com's avatar
monty@mysql.com committed
5148

5149
  return FALSE;
jonas@perch.ndb.mysql.com's avatar
jonas@perch.ndb.mysql.com committed
5150
}
5151

5152

5153 5154 5155 5156 5157 5158
bool
Item_func_sp::fix_fields(THD *thd, Item **ref)
{
  bool res;
  DBUG_ASSERT(fixed == 0);
  res= Item_func::fix_fields(thd, ref);
5159
  if (!res && thd->lex->view_prepare_mode)
monty@mysql.com's avatar
monty@mysql.com committed
5160
  {
5161 5162
    /*
      Here we check privileges of the stored routine only during view
5163 5164 5165 5166 5167 5168 5169
      creation, in order to validate the view.  A runtime check is
      perfomed in Item_func_sp::execute(), and this method is not
      called during context analysis.  Notice, that during view
      creation we do not infer into stored routine bodies and do not
      check privileges of its statements, which would probably be a
      good idea especially if the view has SQL SECURITY DEFINER and
      the used stored procedure has SQL SECURITY DEFINER.
5170
    */
5171 5172 5173 5174 5175 5176 5177 5178 5179
    res= find_and_check_access(thd);
#ifndef NO_EMBEDDED_ACCESS_CHECKS
    Security_context *save_secutiry_ctx;
    if (!res && !(res= set_routine_security_ctx(thd, m_sp, false,
                                                &save_secutiry_ctx)))
    {
      sp_restore_security_context(thd, save_secutiry_ctx);
    }
#endif /* ! NO_EMBEDDED_ACCESS_CHECKS */
monty@mysql.com's avatar
monty@mysql.com committed
5180
  }
5181 5182
  return res;
}