item_create.cc 13.5 KB
Newer Older
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1
/* Copyright (C) 2000-2003 MySQL AB
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4 5 6
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
7

bk@work.mysql.com's avatar
bk@work.mysql.com committed
8 9 10 11
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
12

bk@work.mysql.com's avatar
bk@work.mysql.com committed
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
   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 */

/* Functions to create an item. Used by lex.h */

#include "mysql_priv.h"

#ifndef M_PI
#define M_PI 3.14159265358979323846
#endif

Item *create_func_abs(Item* a)
{
  return new Item_func_abs(a);
}

Item *create_func_acos(Item* a)
{
  return new Item_func_acos(a);
}

35 36
Item *create_func_aes_encrypt(Item* a, Item* b)
{
37
  return new Item_func_aes_encrypt(a, b);
38
}
39

40 41 42 43
Item *create_func_aes_decrypt(Item* a, Item* b)
{
  return new Item_func_aes_decrypt(a, b);
}
44

bk@work.mysql.com's avatar
bk@work.mysql.com committed
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
Item *create_func_ascii(Item* a)
{
  return new Item_func_ascii(a);
}

Item *create_func_ord(Item* a)
{
  return new Item_func_ord(a);
}

Item *create_func_asin(Item* a)
{
  return new Item_func_asin(a);
}

Item *create_func_bin(Item* a)
{
  return new Item_func_conv(a,new Item_int((int32) 10,2),
			    new Item_int((int32) 2,1));
}

Item *create_func_bit_count(Item* a)
{
  return new Item_func_bit_count(a);
}

Item *create_func_ceiling(Item* a)
{
  return new Item_func_ceiling(a);
}

Item *create_func_connection_id(void)
{
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
78
  THD *thd=current_thd;
79
  thd->lex->safe_to_cache_query= 0;
80 81 82 83 84 85
  return new Item_int(NullS,(longlong)
                      ((thd->slave_thread) ?
                       thd->variables.pseudo_thread_id :
                       thd->thread_id),
                      10);
} 
bk@work.mysql.com's avatar
bk@work.mysql.com committed
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147

Item *create_func_conv(Item* a, Item *b, Item *c)
{
  return new Item_func_conv(a,b,c);
}

Item *create_func_cos(Item* a)
{
  return new Item_func_cos(a);
}

Item *create_func_cot(Item* a)
{
  return new Item_func_div(new Item_int((char*) "1",1,1),
			   new Item_func_tan(a));
}

Item *create_func_date_format(Item* a,Item *b)
{
  return new Item_func_date_format(a,b,0);
}

Item *create_func_dayofmonth(Item* a)
{
  return new Item_func_dayofmonth(a);
}

Item *create_func_dayofweek(Item* a)
{
  return new Item_func_weekday(new Item_func_to_days(a),1);
}

Item *create_func_dayofyear(Item* a)
{
  return new Item_func_dayofyear(a);
}

Item *create_func_dayname(Item* a)
{
  return new Item_func_dayname(new Item_func_to_days(a));
}

Item *create_func_degrees(Item *a)
{
  return new Item_func_units((char*) "degrees",a,180/M_PI,0.0);
}

Item *create_func_exp(Item* a)
{
  return new Item_func_exp(a);
}

Item *create_func_find_in_set(Item* a, Item *b)
{
  return new Item_func_find_in_set(a, b);
}

Item *create_func_floor(Item* a)
{
  return new Item_func_floor(a);
}

148 149
Item *create_func_found_rows(void)
{
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
150
  THD *thd=current_thd;
151
  thd->lex->safe_to_cache_query= 0;
152
  return new Item_func_found_rows();
153 154
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
155 156 157 158 159 160 161
Item *create_func_from_days(Item* a)
{
  return new Item_func_from_days(a);
}

Item *create_func_get_lock(Item* a, Item *b)
{
162
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
163 164 165 166 167
  return new Item_func_get_lock(a, b);
}

Item *create_func_hex(Item *a)
{
168
  return new Item_func_hex(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
}

Item *create_func_inet_ntoa(Item* a)
{
  return new Item_func_inet_ntoa(a);
}

Item *create_func_inet_aton(Item* a)
{
  return new Item_func_inet_aton(a);
}


Item *create_func_ifnull(Item* a, Item *b)
{
  return new Item_func_ifnull(a,b);
}

Item *create_func_nullif(Item* a, Item *b)
{
  return new Item_func_nullif(a,b);
}

Item *create_func_locate(Item* a, Item *b)
{
  return new Item_func_locate(b,a);
}

Item *create_func_instr(Item* a, Item *b)
{
  return new Item_func_locate(a,b);
}

Item *create_func_isnull(Item* a)
{
  return new Item_func_isnull(a);
}

Item *create_func_lcase(Item* a)
{
  return new Item_func_lcase(a);
}

Item *create_func_length(Item* a)
{
  return new Item_func_length(a);
}

serg@serg.mysql.com's avatar
serg@serg.mysql.com committed
217 218 219 220 221
Item *create_func_bit_length(Item* a)
{
  return new Item_func_bit_length(a);
}

bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
222 223 224 225 226
Item *create_func_coercibility(Item* a)
{
  return new Item_func_coercibility(a);
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
227 228 229 230 231
Item *create_func_char_length(Item* a)
{
  return new Item_func_char_length(a);
}

232
Item *create_func_ln(Item* a)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
233
{
234 235 236 237 238 239
  return new Item_func_ln(a);
}

Item *create_func_log2(Item* a)
{
  return new Item_func_log2(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
240 241 242 243 244 245 246 247 248 249 250 251 252 253
}

Item *create_func_log10(Item* a)
{
  return new Item_func_log10(a);
}

Item *create_func_lpad(Item* a, Item *b, Item *c)
{
  return new Item_func_lpad(a,b,c);
}

Item *create_func_ltrim(Item* a)
{
254
  return new Item_func_ltrim(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
}

Item *create_func_md5(Item* a)
{
  return new Item_func_md5(a);
}

Item *create_func_mod(Item* a, Item *b)
{
  return new Item_func_mod(a,b);
}

Item *create_func_monthname(Item* a)
{
  return new Item_func_monthname(a);
}

Item *create_func_month(Item* a)
{
  return new Item_func_month(a);
}

Item *create_func_oct(Item *a)
{
  return new Item_func_conv(a,new Item_int((int32) 10,2),
			    new Item_int((int32) 8,1));
}

Item *create_func_period_add(Item* a, Item *b)
{
  return new Item_func_period_add(a,b);
}

Item *create_func_period_diff(Item* a, Item *b)
{
  return new Item_func_period_diff(a,b);
}

Item *create_func_pi(void)
{
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
295
  return new Item_real("pi()",M_PI,6,8);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
296 297 298 299 300 301 302
}

Item *create_func_pow(Item* a, Item *b)
{
  return new Item_func_pow(a,b);
}

303 304 305
Item *create_func_current_user()
{
  THD *thd=current_thd;
306 307 308
  char buff[HOSTNAME_LENGTH+USERNAME_LENGTH+2];
  uint length;

309
  thd->lex->safe_to_cache_query= 0;
310
  length= (uint) (strxmov(buff, thd->priv_user, "@", thd->priv_host, NullS) -
311
		  buff);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
312
  return new Item_string(NullS, thd->memdup(buff, length), length,
313
			 system_charset_info);
314 315
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
316 317 318 319 320 321 322 323 324 325 326 327
Item *create_func_quarter(Item* a)
{
  return new Item_func_quarter(a);
}

Item *create_func_radians(Item *a)
{
  return new Item_func_units((char*) "radians",a,M_PI/180,0.0);
}

Item *create_func_release_lock(Item* a)
{
328
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
  return new Item_func_release_lock(a);
}

Item *create_func_repeat(Item* a, Item *b)
{
  return new Item_func_repeat(a,b);
}

Item *create_func_reverse(Item* a)
{
  return new Item_func_reverse(a);
}

Item *create_func_rpad(Item* a, Item *b, Item *c)
{
  return new Item_func_rpad(a,b,c);
}

Item *create_func_rtrim(Item* a)
{
349
  return new Item_func_rtrim(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
}

Item *create_func_sec_to_time(Item* a)
{
  return new Item_func_sec_to_time(a);
}

Item *create_func_sign(Item* a)
{
  return new Item_func_sign(a);
}

Item *create_func_sin(Item* a)
{
  return new Item_func_sin(a);
}

367 368
Item *create_func_sha(Item* a)
{
369
  return new Item_func_sha(a);
370
}
371

bk@work.mysql.com's avatar
bk@work.mysql.com committed
372 373
Item *create_func_space(Item *a)
{
374 375
  CHARSET_INFO *cs= current_thd->variables.collation_connection;
  Item *sp;
376

377
  if (cs->mbminlen > 1)
378
  {
379
    uint dummy_errors;
380
    sp= new Item_string("",0,cs);
serg@serg.mylan's avatar
serg@serg.mylan committed
381 382
    if (sp)
      sp->str_value.copy(" ", 1, &my_charset_latin1, cs, &dummy_errors);
383 384 385 386 387
  }
  else
  {
    sp= new Item_string(" ",1,cs);
  }
serg@serg.mylan's avatar
serg@serg.mylan committed
388
  return sp ? new Item_func_repeat(sp, a) : 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
}

Item *create_func_soundex(Item* a)
{
  return new Item_func_soundex(a);
}

Item *create_func_sqrt(Item* a)
{
  return new Item_func_sqrt(a);
}

Item *create_func_strcmp(Item* a, Item *b)
{
  return new Item_func_strcmp(a,b);
}

Item *create_func_tan(Item* a)
{
  return new Item_func_tan(a);
}

Item *create_func_time_format(Item *a, Item *b)
{
  return new Item_func_date_format(a,b,1);
}

Item *create_func_time_to_sec(Item* a)
{
  return new Item_func_time_to_sec(a);
}

Item *create_func_to_days(Item* a)
{
  return new Item_func_to_days(a);
}

Item *create_func_ucase(Item* a)
{
  return new Item_func_ucase(a);
}

serg@serg.mylan's avatar
serg@serg.mylan committed
431 432 433 434 435
Item *create_func_unhex(Item* a)
{
  return new Item_func_unhex(a);
}

436 437 438 439 440
Item *create_func_uuid(void)
{
  return new Item_func_uuid();
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
441 442
Item *create_func_version(void)
{
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
443
  return new Item_string(NullS,server_version, 
444
			 (uint) strlen(server_version),
445
			 system_charset_info, DERIVATION_SYSCONST);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
446 447 448 449 450 451 452 453 454 455 456 457 458 459
}

Item *create_func_weekday(Item* a)
{
  return new Item_func_weekday(new Item_func_to_days(a),0);
}

Item *create_func_year(Item* a)
{
  return new Item_func_year(a);
}

Item *create_load_file(Item* a)
{
460
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
461 462
  return new Item_load_file(a);
}
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
463

monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
464

465 466
Item *create_func_cast(Item *a, Cast_target cast_type, int len,
		       CHARSET_INFO *cs)
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
467 468 469
{
  Item *res;
  LINT_INIT(res);
470

monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
471 472 473 474 475 476 477
  switch (cast_type) {
  case ITEM_CAST_BINARY: 	res= new Item_func_binary(a); break;
  case ITEM_CAST_SIGNED_INT:	res= new Item_func_signed(a); break;
  case ITEM_CAST_UNSIGNED_INT:  res= new Item_func_unsigned(a); break;
  case ITEM_CAST_DATE:		res= new Item_date_typecast(a); break;
  case ITEM_CAST_TIME:		res= new Item_time_typecast(a); break;
  case ITEM_CAST_DATETIME:	res= new Item_datetime_typecast(a); break;
478 479 480 481
  case ITEM_CAST_CHAR:
    res= new Item_char_typecast(a, len, cs ? cs : 
				current_thd->variables.collation_connection);
    break;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
482 483 484
  }
  return res;
}
485

486
Item *create_func_is_free_lock(Item* a)
487
{
488
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
489
  return new Item_func_is_free_lock(a);
490 491
}

hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
492 493
Item *create_func_is_used_lock(Item* a)
{
494
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
hf@genie.(none)'s avatar
SCRUM  
hf@genie.(none) committed
495 496 497
  return new Item_func_is_used_lock(a);
}

498 499 500 501
Item *create_func_quote(Item* a)
{
  return new Item_func_quote(a);
}
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
502

hf@deer.(none)'s avatar
SCRUM:  
hf@deer.(none) committed
503
#ifdef HAVE_SPATIAL
504
Item *create_func_as_wkt(Item *a)
505
{
506
  return new Item_func_as_wkt(a);
507 508
}

509 510 511 512 513
Item *create_func_as_wkb(Item *a)
{
  return new Item_func_as_wkb(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
514
Item *create_func_srid(Item *a)
515
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
516
  return new Item_func_srid(a);
517 518
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
519
Item *create_func_startpoint(Item *a)
520 521 522 523
{
  return new Item_func_spatial_decomp(a, Item_func::SP_STARTPOINT);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
524
Item *create_func_endpoint(Item *a)
525 526 527 528
{
  return new Item_func_spatial_decomp(a, Item_func::SP_ENDPOINT);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
529
Item *create_func_exteriorring(Item *a)
530 531 532 533
{
  return new Item_func_spatial_decomp(a, Item_func::SP_EXTERIORRING);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
534
Item *create_func_pointn(Item *a, Item *b)
535
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
536
  return new Item_func_spatial_decomp_n(a, b, Item_func::SP_POINTN);
537 538
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
539
Item *create_func_interiorringn(Item *a, Item *b)
540
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
541
  return new Item_func_spatial_decomp_n(a, b, Item_func::SP_INTERIORRINGN);
542 543
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
544
Item *create_func_geometryn(Item *a, Item *b)
545
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
546
  return new Item_func_spatial_decomp_n(a, b, Item_func::SP_GEOMETRYN);
547 548
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
549
Item *create_func_centroid(Item *a)
550 551 552 553
{
  return new Item_func_centroid(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
554
Item *create_func_envelope(Item *a)
555 556 557 558
{
  return new Item_func_envelope(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
559
Item *create_func_equals(Item *a, Item *b)
560 561 562 563
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_EQUALS_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
564
Item *create_func_disjoint(Item *a, Item *b)
565 566 567 568
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_DISJOINT_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
569
Item *create_func_intersects(Item *a, Item *b)
570 571 572 573
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_INTERSECTS_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
574
Item *create_func_touches(Item *a, Item *b)
575 576 577 578
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_TOUCHES_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
579
Item *create_func_crosses(Item *a, Item *b)
580 581 582 583
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_CROSSES_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
584
Item *create_func_within(Item *a, Item *b)
585 586 587 588
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_WITHIN_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
589
Item *create_func_contains(Item *a, Item *b)
590 591 592 593
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_CONTAINS_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
594
Item *create_func_overlaps(Item *a, Item *b)
595 596 597 598
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_OVERLAPS_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
599
Item *create_func_isempty(Item *a)
600 601 602 603
{
  return new Item_func_isempty(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
604
Item *create_func_issimple(Item *a)
605 606 607 608
{
  return new Item_func_issimple(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
609
Item *create_func_isclosed(Item *a)
610 611 612 613
{
  return new Item_func_isclosed(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
614
Item *create_func_geometry_type(Item *a)
615 616 617 618
{
  return new Item_func_geometry_type(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
619
Item *create_func_dimension(Item *a)
620 621 622 623
{
  return new Item_func_dimension(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
624
Item *create_func_x(Item *a)
625 626 627 628
{
  return new Item_func_x(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
629
Item *create_func_y(Item *a)
630 631 632 633
{
  return new Item_func_y(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
634
Item *create_func_numpoints(Item *a)
635 636 637 638
{
  return new Item_func_numpoints(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
639
Item *create_func_numinteriorring(Item *a)
640 641 642 643
{
  return new Item_func_numinteriorring(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
644
Item *create_func_numgeometries(Item *a)
645 646 647 648
{
  return new Item_func_numgeometries(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
649
Item *create_func_area(Item *a)
650 651 652 653
{
  return new Item_func_area(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
654
Item *create_func_glength(Item *a)
655 656 657 658
{
  return new Item_func_glength(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
659
Item *create_func_point(Item *a, Item *b)
660
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
661
  return new Item_func_point(a, b);
662
}
hf@deer.(none)'s avatar
SCRUM:  
hf@deer.(none) committed
663
#endif /*HAVE_SPATIAL*/
664

665 666 667 668
Item *create_func_crc32(Item* a)
{
  return new Item_func_crc32(a);
}
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684

Item *create_func_compress(Item* a)
{
  return new Item_func_compress(a);
}

Item *create_func_uncompress(Item* a)
{
  return new Item_func_uncompress(a);
}

Item *create_func_uncompressed_length(Item* a)
{
  return new Item_func_uncompressed_length(a);
}

gluh@gluh.mysql.r18.ru's avatar
gluh@gluh.mysql.r18.ru committed
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702
Item *create_func_datediff(Item *a, Item *b)
{
  return new Item_func_minus(new Item_func_to_days(a),
			     new Item_func_to_days(b));
}

Item *create_func_weekofyear(Item *a)
{
  return new Item_func_week(a, new Item_int((char*) "0", 3, 1));
}

Item *create_func_makedate(Item* a,Item* b)
{
  return new Item_func_makedate(a, b);
}

Item *create_func_addtime(Item* a,Item* b)
{
703
  return new Item_func_add_time(a, b, 0, 0);
gluh@gluh.mysql.r18.ru's avatar
gluh@gluh.mysql.r18.ru committed
704 705 706 707
}

Item *create_func_subtime(Item* a,Item* b)
{
708
  return new Item_func_add_time(a, b, 0, 1);
gluh@gluh.mysql.r18.ru's avatar
gluh@gluh.mysql.r18.ru committed
709 710 711 712 713 714 715 716 717 718 719
}

Item *create_func_timediff(Item* a,Item* b)
{
  return new Item_func_timediff(a, b);
}

Item *create_func_maketime(Item* a,Item* b,Item* c)
{
  return new Item_func_maketime(a, b, c);
}
720 721 722 723 724

Item *create_func_str_to_date(Item* a,Item* b)
{
  return new Item_func_str_to_date(a, b);
}
gluh@gluh.mysql.r18.ru's avatar
gluh@gluh.mysql.r18.ru committed
725 726 727 728 729

Item *create_func_last_day(Item *a)
{
  return new Item_func_last_day(a);
}