item_create.cc 13.4 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
   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
5
   the Free Software Foundation; version 2 of the License.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
6

bk@work.mysql.com's avatar
bk@work.mysql.com committed
7 8 9 10
   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
11

bk@work.mysql.com's avatar
bk@work.mysql.com committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
   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"

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

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

30 31
Item *create_func_aes_encrypt(Item* a, Item* b)
{
32
  return new Item_func_aes_encrypt(a, b);
33
}
34

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

bk@work.mysql.com's avatar
bk@work.mysql.com committed
40 41 42 43 44 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
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)
{
73 74
  current_thd->lex->safe_to_cache_query= 0;
  return new Item_func_connection_id();
75
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104

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)
{
105
  return new Item_func_weekday(a, 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
106 107 108 109 110 111 112 113 114
}

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

Item *create_func_dayname(Item* a)
{
115
  return new Item_func_dayname(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
}

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

138 139
Item *create_func_found_rows(void)
{
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
140
  THD *thd=current_thd;
141
  thd->lex->safe_to_cache_query= 0;
142
  return new Item_func_found_rows();
143 144
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
145 146 147 148 149 150 151
Item *create_func_from_days(Item* a)
{
  return new Item_func_from_days(a);
}

Item *create_func_get_lock(Item* a, Item *b)
{
pem@mysql.com's avatar
pem@mysql.com committed
152
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
153 154 155 156 157
  return new Item_func_get_lock(a, b);
}

Item *create_func_hex(Item *a)
{
158
  return new Item_func_hex(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
159 160 161 162 163 164 165 166 167 168 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
}

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

207 208 209 210 211
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
212 213 214 215 216
Item *create_func_coercibility(Item* a)
{
  return new Item_func_coercibility(a);
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
217 218 219 220 221
Item *create_func_char_length(Item* a)
{
  return new Item_func_char_length(a);
}

222
Item *create_func_ln(Item* a)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
223
{
224 225 226 227 228 229
  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
230 231 232 233 234 235 236 237 238 239 240 241 242 243
}

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)
{
244
  return new Item_func_ltrim(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
245 246 247 248 249 250 251 252 253 254 255 256
}

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

257 258 259 260 261
Item *create_func_name_const(Item *a, Item *b)
{
  return new Item_name_const(a,b);
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
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
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)
{
290
  return new Item_static_float_func("pi()", M_PI, 6, 8);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
291 292 293 294 295 296 297 298 299 300 301 302 303 304
}

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

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)
{
pem@mysql.com's avatar
pem@mysql.com committed
305
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325
  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)
{
326
  return new Item_func_rtrim(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
}

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

344 345
Item *create_func_sha(Item* a)
{
346
  return new Item_func_sha(a);
347
}
348

349 350
Item *create_func_sleep(Item* a)
{
351
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
352 353 354
  return new Item_func_sleep(a);
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
355 356
Item *create_func_space(Item *a)
{
357 358
  CHARSET_INFO *cs= current_thd->variables.collation_connection;
  Item *sp;
359

360
  if (cs->mbminlen > 1)
361
  {
362
    uint dummy_errors;
363
    sp= new Item_string("",0,cs);
serg@serg.mylan's avatar
serg@serg.mylan committed
364 365
    if (sp)
      sp->str_value.copy(" ", 1, &my_charset_latin1, cs, &dummy_errors);
366 367 368 369 370
  }
  else
  {
    sp= new Item_string(" ",1,cs);
  }
serg@serg.mylan's avatar
serg@serg.mylan committed
371
  return sp ? new Item_func_repeat(sp, a) : 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
}

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
414 415 416 417 418
Item *create_func_unhex(Item* a)
{
  return new Item_func_unhex(a);
}

419 420 421 422 423
Item *create_func_uuid(void)
{
  return new Item_func_uuid();
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
424 425
Item *create_func_version(void)
{
426
  return new Item_static_string_func("version()", server_version,
427
			 (uint) strlen(server_version),
428
			 system_charset_info, DERIVATION_SYSCONST);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
429 430 431 432
}

Item *create_func_weekday(Item* a)
{
433
  return new Item_func_weekday(a, 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
434 435 436 437 438 439 440 441 442
}

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

Item *create_load_file(Item* a)
{
pem@mysql.com's avatar
pem@mysql.com committed
443
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
444 445
  return new Item_load_file(a);
}
446

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

448 449
Item *create_func_cast(Item *a, Cast_target cast_type,
                       const char *c_len, const char *c_dec,
450
		       CHARSET_INFO *cs)
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
451 452
{
  Item *res;
453 454
  ulong len;
  uint dec;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
455
  LINT_INIT(res);
456

monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
457 458 459 460 461 462 463
  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;
464
  case ITEM_CAST_DECIMAL:
465 466 467 468
    len= c_len ? atoi(c_len) : 0;
    dec= c_dec ? atoi(c_dec) : 0;
    my_decimal_trim(&len, &dec);
    if (len < dec)
469 470 471 472
    {
      my_error(ER_M_BIGGER_THAN_D, MYF(0), "");
      return 0;
    }
473
    res= new Item_decimal_typecast(a, len, dec);
474
    break;
475
  case ITEM_CAST_CHAR:
476
    len= c_len ? atoi(c_len) : -1;
477 478 479
    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
480 481 482
  }
  return res;
}
483

484

485
Item *create_func_is_free_lock(Item* a)
486
{
pem@mysql.com's avatar
pem@mysql.com committed
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)
{
pem@mysql.com's avatar
pem@mysql.com committed
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);
}