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

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
  length= (uint) (strxmov(buff, thd->priv_user, "@", thd->priv_host, NullS) -
310
		  buff);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
311
  return new Item_string(NullS, thd->memdup(buff, length), length,
312
			 system_charset_info);
313 314
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
315 316 317 318 319 320 321 322 323 324 325 326
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)
{
327
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347
  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)
{
348
  return new Item_func_rtrim(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
}

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

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

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

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

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
430 431 432 433 434
Item *create_func_unhex(Item* a)
{
  return new Item_func_unhex(a);
}

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

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

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)
{
459
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
460 461
  return new Item_load_file(a);
}
462

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

464 465
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
466 467 468
{
  Item *res;
  LINT_INIT(res);
469

monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
470 471 472 473 474 475 476
  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;
477 478 479 480
  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
481 482 483
  }
  return res;
}
484

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

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

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

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

508 509 510 511 512
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
513
Item *create_func_srid(Item *a)
514
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
515
  return new Item_func_srid(a);
516 517
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
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)
{
702
  return new Item_func_add_time(a, b, 0, 0);
gluh@gluh.mysql.r18.ru's avatar
gluh@gluh.mysql.r18.ru committed
703 704 705 706
}

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

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);
}
719 720 721 722 723

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
724 725 726 727 728

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