item_create.cc 13.8 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
   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);
}

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

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

bk@work.mysql.com's avatar
bk@work.mysql.com committed
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 73
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
74
  THD *thd=current_thd;
75
  thd->lex->safe_to_cache_query= 0;
76 77 78 79 80 81 82
  return new Item_static_int_func("connection_id()",
                                  (longlong)
                                  ((thd->slave_thread) ?
                                   thd->variables.pseudo_thread_id :
                                   thd->thread_id),
                                  10);
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
83 84 85 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

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)
{
112
  return new Item_func_weekday(a, 1);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
113 114 115 116 117 118 119 120 121
}

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

Item *create_func_dayname(Item* a)
{
122
  return new Item_func_dayname(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144
}

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

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

bk@work.mysql.com's avatar
bk@work.mysql.com committed
152 153 154 155 156 157 158
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
159
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
160 161 162 163 164
  return new Item_func_get_lock(a, b);
}

Item *create_func_hex(Item *a)
{
165
  return new Item_func_hex(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
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 207 208 209 210 211 212 213
}

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

214 215 216 217 218
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
219 220 221 222 223
Item *create_func_coercibility(Item* a)
{
  return new Item_func_coercibility(a);
}

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

229
Item *create_func_ln(Item* a)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
230
{
231 232 233 234 235 236
  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
237 238 239 240 241 242 243 244 245 246 247 248 249 250
}

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)
{
251
  return new Item_func_ltrim(a);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
252 253 254 255 256 257 258 259 260 261 262 263
}

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

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

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

305 306
Item *create_func_current_user()
{
307 308
  current_thd->lex->safe_to_cache_query= 0;
  return new Item_func_user(TRUE);
309 310
}

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

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

357 358
Item *create_func_sha(Item* a)
{
359
  return new Item_func_sha(a);
360
}
361

362 363
Item *create_func_sleep(Item* a)
{
364
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
365 366 367
  return new Item_func_sleep(a);
}

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

373
  if (cs->mbminlen > 1)
374
  {
375
    uint dummy_errors;
376
    sp= new Item_string("",0,cs);
serg@serg.mylan's avatar
serg@serg.mylan committed
377 378
    if (sp)
      sp->str_value.copy(" ", 1, &my_charset_latin1, cs, &dummy_errors);
379 380 381 382 383
  }
  else
  {
    sp= new Item_string(" ",1,cs);
  }
serg@serg.mylan's avatar
serg@serg.mylan committed
384
  return sp ? new Item_func_repeat(sp, a) : 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
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 414 415 416 417 418 419 420 421 422 423 424 425 426
}

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
427 428 429 430 431
Item *create_func_unhex(Item* a)
{
  return new Item_func_unhex(a);
}

432 433 434 435 436
Item *create_func_uuid(void)
{
  return new Item_func_uuid();
}

bk@work.mysql.com's avatar
bk@work.mysql.com committed
437 438
Item *create_func_version(void)
{
439
  return new Item_static_string_func("version()", server_version,
440
			 (uint) strlen(server_version),
441
			 system_charset_info, DERIVATION_SYSCONST);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
442 443 444 445
}

Item *create_func_weekday(Item* a)
{
446
  return new Item_func_weekday(a, 0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
447 448 449 450 451 452 453 454 455
}

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

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

461
Item *create_func_cast(Item *a, Cast_target cast_type, int len, int dec,
462
		       CHARSET_INFO *cs)
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
463 464
{
  Item *res;
465

monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
466 467 468 469 470 471 472
  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;
473 474 475
  case ITEM_CAST_DECIMAL:
    res= new Item_decimal_typecast(a, (len>0) ? len : 10, dec ? dec : 2);
    break;
476 477 478 479
  case ITEM_CAST_CHAR:
    res= new Item_char_typecast(a, len, cs ? cs : 
				current_thd->variables.collation_connection);
    break;
480 481 482 483
  default:
    DBUG_ASSERT(0);
    res= 0;
    break;
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
484 485 486
  }
  return res;
}
487

488
Item *create_func_is_free_lock(Item* a)
489
{
pem@mysql.com's avatar
pem@mysql.com committed
490
  current_thd->lex->uncacheable(UNCACHEABLE_SIDEEFFECT);
491
  return new Item_func_is_free_lock(a);
492 493
}

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

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

505 506 507 508 509 510 511 512 513 514
Item *create_func_xml_extractvalue(Item *a, Item *b)
{
  return new Item_func_xml_extractvalue(a, b);
}

Item *create_func_xml_update(Item *a, Item *b, Item *c)
{
  return new Item_func_xml_update(a, b, c);
}

hf@deer.(none)'s avatar
hf@deer.(none) committed
515
#ifdef HAVE_SPATIAL
516
Item *create_func_as_wkt(Item *a)
517
{
518
  return new Item_func_as_wkt(a);
519 520
}

521 522 523 524 525
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
526
Item *create_func_srid(Item *a)
527
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
528
  return new Item_func_srid(a);
529 530
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
531
Item *create_func_startpoint(Item *a)
532 533 534 535
{
  return new Item_func_spatial_decomp(a, Item_func::SP_STARTPOINT);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
536
Item *create_func_endpoint(Item *a)
537 538 539 540
{
  return new Item_func_spatial_decomp(a, Item_func::SP_ENDPOINT);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
541
Item *create_func_exteriorring(Item *a)
542 543 544 545
{
  return new Item_func_spatial_decomp(a, Item_func::SP_EXTERIORRING);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
546
Item *create_func_pointn(Item *a, Item *b)
547
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
548
  return new Item_func_spatial_decomp_n(a, b, Item_func::SP_POINTN);
549 550
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
551
Item *create_func_interiorringn(Item *a, Item *b)
552
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
553
  return new Item_func_spatial_decomp_n(a, b, Item_func::SP_INTERIORRINGN);
554 555
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
556
Item *create_func_geometryn(Item *a, Item *b)
557
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
558
  return new Item_func_spatial_decomp_n(a, b, Item_func::SP_GEOMETRYN);
559 560
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
561
Item *create_func_centroid(Item *a)
562 563 564 565
{
  return new Item_func_centroid(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
566
Item *create_func_envelope(Item *a)
567 568 569 570
{
  return new Item_func_envelope(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
571
Item *create_func_equals(Item *a, Item *b)
572 573 574 575
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_EQUALS_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
576
Item *create_func_disjoint(Item *a, Item *b)
577 578 579 580
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_DISJOINT_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
581
Item *create_func_intersects(Item *a, Item *b)
582 583 584 585
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_INTERSECTS_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
586
Item *create_func_touches(Item *a, Item *b)
587 588 589 590
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_TOUCHES_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
591
Item *create_func_crosses(Item *a, Item *b)
592 593 594 595
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_CROSSES_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
596
Item *create_func_within(Item *a, Item *b)
597 598 599 600
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_WITHIN_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
601
Item *create_func_contains(Item *a, Item *b)
602 603 604 605
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_CONTAINS_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
606
Item *create_func_overlaps(Item *a, Item *b)
607 608 609 610
{
  return new Item_func_spatial_rel(a, b, Item_func::SP_OVERLAPS_FUNC);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
611
Item *create_func_isempty(Item *a)
612 613 614 615
{
  return new Item_func_isempty(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
616
Item *create_func_issimple(Item *a)
617 618 619 620
{
  return new Item_func_issimple(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
621
Item *create_func_isclosed(Item *a)
622 623 624 625
{
  return new Item_func_isclosed(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
626
Item *create_func_geometry_type(Item *a)
627 628 629 630
{
  return new Item_func_geometry_type(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
631
Item *create_func_dimension(Item *a)
632 633 634 635
{
  return new Item_func_dimension(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
636
Item *create_func_x(Item *a)
637 638 639 640
{
  return new Item_func_x(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
641
Item *create_func_y(Item *a)
642 643 644 645
{
  return new Item_func_y(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
646
Item *create_func_numpoints(Item *a)
647 648 649 650
{
  return new Item_func_numpoints(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
651
Item *create_func_numinteriorring(Item *a)
652 653 654 655
{
  return new Item_func_numinteriorring(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
656
Item *create_func_numgeometries(Item *a)
657 658 659 660
{
  return new Item_func_numgeometries(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
661
Item *create_func_area(Item *a)
662 663 664 665
{
  return new Item_func_area(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
666
Item *create_func_glength(Item *a)
667 668 669 670
{
  return new Item_func_glength(a);
}

ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
671
Item *create_func_point(Item *a, Item *b)
672
{
ram@mysql.r18.ru's avatar
ram@mysql.r18.ru committed
673
  return new Item_func_point(a, b);
674
}
hf@deer.(none)'s avatar
hf@deer.(none) committed
675
#endif /*HAVE_SPATIAL*/
676

677 678 679 680
Item *create_func_crc32(Item* a)
{
  return new Item_func_crc32(a);
}
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696

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
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
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)
{
715
  return new Item_func_add_time(a, b, 0, 0);
gluh@gluh.mysql.r18.ru's avatar
gluh@gluh.mysql.r18.ru committed
716 717 718 719
}

Item *create_func_subtime(Item* a,Item* b)
{
720
  return new Item_func_add_time(a, b, 0, 1);
gluh@gluh.mysql.r18.ru's avatar
gluh@gluh.mysql.r18.ru committed
721 722 723 724 725 726 727 728 729 730 731
}

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);
}
732 733 734 735 736

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
737 738 739 740 741

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