item_timefunc.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:72k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /* This file defines all time functions */
  14. #ifdef USE_PRAGMA_IMPLEMENTATION
  15. #pragma implementation // gcc: Class implementation
  16. #endif
  17. #include "mysql_priv.h"
  18. #include <m_ctype.h>
  19. #include <time.h>
  20. /* TODO: Move month and days to language files */
  21. #define MAX_DAY_NUMBER 3652424L
  22. static const char *month_names[]=
  23. {
  24.   "January", "February", "March", "April", "May", "June", "July", "August",
  25.   "September", "October", "November", "December", NullS
  26. };
  27. TYPELIB month_names_typelib=
  28. { array_elements(month_names)-1,"", month_names, NULL };
  29. static const char *day_names[]=
  30. {
  31.   "Monday", "Tuesday", "Wednesday",
  32.   "Thursday", "Friday", "Saturday" ,"Sunday", NullS
  33. };
  34. TYPELIB day_names_typelib=
  35. { array_elements(day_names)-1,"", day_names, NULL};
  36. /*
  37.   OPTIMIZATION TODO:
  38.    - Replace the switch with a function that should be called for each
  39.      date type.
  40.    - Remove sprintf and opencode the conversion, like we do in
  41.      Field_datetime.
  42.   The reason for this functions existence is that as we don't have a
  43.   way to know if a datetime/time value has microseconds in them
  44.   we are now only adding microseconds to the output if the
  45.   value has microseconds.
  46.   We can't use a standard make_date_time() for this as we don't know
  47.   if someone will use %f in the format specifier in which case we would get
  48.   the microseconds twice.
  49. */
  50. static bool make_datetime(date_time_format_types format, TIME *ltime,
  51.   String *str)
  52. {
  53.   char *buff;
  54.   CHARSET_INFO *cs= &my_charset_bin;
  55.   uint length= 30;
  56.   if (str->alloc(length))
  57.     return 1;
  58.   buff= (char*) str->ptr();
  59.   switch (format) {
  60.   case TIME_ONLY:
  61.     length= cs->cset->snprintf(cs, buff, length, "%s%02d:%02d:%02d",
  62.        ltime->neg ? "-" : "",
  63.        ltime->hour, ltime->minute, ltime->second);
  64.     break;
  65.   case TIME_MICROSECOND:
  66.     length= cs->cset->snprintf(cs, buff, length, "%s%02d:%02d:%02d.%06d",
  67.        ltime->neg ? "-" : "",
  68.        ltime->hour, ltime->minute, ltime->second,
  69.        ltime->second_part);
  70.     break;
  71.   case DATE_ONLY:
  72.     length= cs->cset->snprintf(cs, buff, length, "%04d-%02d-%02d",
  73.        ltime->year, ltime->month, ltime->day);
  74.     break;
  75.   case DATE_TIME:
  76.     length= cs->cset->snprintf(cs, buff, length,
  77.        "%04d-%02d-%02d %02d:%02d:%02d",
  78.        ltime->year, ltime->month, ltime->day,
  79.        ltime->hour, ltime->minute, ltime->second);
  80.     break;
  81.   case DATE_TIME_MICROSECOND:
  82.     length= cs->cset->snprintf(cs, buff, length,
  83.        "%04d-%02d-%02d %02d:%02d:%02d.%06d",
  84.        ltime->year, ltime->month, ltime->day,
  85.        ltime->hour, ltime->minute, ltime->second,
  86.        ltime->second_part);
  87.     break;
  88.   }
  89.   str->length(length);
  90.   str->set_charset(cs);
  91.   return 0;
  92. }
  93. /*
  94.   Date formats corresponding to compound %r and %T conversion specifiers
  95.   Note: We should init at least first element of "positions" array
  96.         (first member) or hpux11 compiler will die horribly.
  97. */
  98. static DATE_TIME_FORMAT time_ampm_format= {{0}, '', 0,
  99.                                            {(char *)"%I:%i:%S %p", 11}};
  100. static DATE_TIME_FORMAT time_24hrs_format= {{0}, '', 0,
  101.                                             {(char *)"%H:%i:%S", 8}};
  102. /*
  103.   Extract datetime value to TIME struct from string value
  104.   according to format string. 
  105.   SYNOPSIS
  106.     extract_date_time()
  107.     format date/time format specification
  108.     val String to decode
  109.     length Length of string
  110.     l_time Store result here
  111.     cached_timestamp_type 
  112.                        It uses to get an appropriate warning
  113.                        in the case when the value is truncated.
  114.     sub_pattern_end    if non-zero then we are parsing string which
  115.                        should correspond compound specifier (like %T or
  116.                        %r) and this parameter is pointer to place where
  117.                        pointer to end of string matching this specifier
  118.                        should be stored.
  119.     NOTE
  120.      Possibility to parse strings matching to patterns equivalent to compound
  121.      specifiers is mainly intended for use from inside of this function in
  122.      order to understand %T and %r conversion specifiers, so number of
  123.      conversion specifiers that can be used in such sub-patterns is limited.
  124.      Also most of checks are skipped in this case.
  125.      If one adds new format specifiers to this function he should also
  126.      consider adding them to get_date_time_result_type() function.
  127.     RETURN
  128.       0 ok
  129.       1 error
  130. */
  131. static bool extract_date_time(DATE_TIME_FORMAT *format,
  132.       const char *val, uint length, TIME *l_time,
  133.                               timestamp_type cached_timestamp_type,
  134.                               const char **sub_pattern_end)
  135. {
  136.   int weekday= 0, yearday= 0, daypart= 0;
  137.   int week_number= -1;
  138.   int error= 0;
  139.   int  strict_week_number_year= -1;
  140.   int frac_part;
  141.   bool usa_time= 0;
  142.   bool sunday_first_n_first_week_non_iso;
  143.   bool strict_week_number;
  144.   bool strict_week_number_year_type;
  145.   const char *val_begin= val;
  146.   const char *val_end= val + length;
  147.   const char *ptr= format->format.str;
  148.   const char *end= ptr + format->format.length;
  149.   CHARSET_INFO *cs= &my_charset_bin;
  150.   DBUG_ENTER("extract_date_time");
  151.   LINT_INIT(strict_week_number);
  152.   /* Remove valgrind varnings when using gcc 3.3 and -O1 */
  153.   PURIFY_OR_LINT_INIT(strict_week_number_year_type);
  154.   PURIFY_OR_LINT_INIT(sunday_first_n_first_week_non_iso);
  155.   if (!sub_pattern_end)
  156.     bzero((char*) l_time, sizeof(*l_time));
  157.   for (; ptr != end && val != val_end; ptr++)
  158.   {
  159.     if (*ptr == '%' && ptr+1 != end)
  160.     {
  161.       int val_len;
  162.       char *tmp;
  163.       /* Skip pre-space between each argument */
  164.       while (val != val_end && my_isspace(cs, *val))
  165. val++;
  166.       val_len= (uint) (val_end - val);
  167.       switch (*++ptr) {
  168. /* Year */
  169.       case 'Y':
  170. tmp= (char*) val + min(4, val_len);
  171. l_time->year= (int) my_strtoll10(val, &tmp, &error);
  172. val= tmp;
  173. break;
  174.       case 'y':
  175. tmp= (char*) val + min(2, val_len);
  176. l_time->year= (int) my_strtoll10(val, &tmp, &error);
  177. val= tmp;
  178. l_time->year+= (l_time->year < YY_PART_YEAR ? 2000 : 1900);
  179. break;
  180. /* Month */
  181.       case 'm':
  182.       case 'c':
  183. tmp= (char*) val + min(2, val_len);
  184. l_time->month= (int) my_strtoll10(val, &tmp, &error);
  185. val= tmp;
  186. break;
  187.       case 'M':
  188.       case 'b':
  189. if ((l_time->month= check_word(&month_names_typelib,
  190.        val, val_end, &val)) <= 0)
  191.   goto err;
  192. break;
  193. /* Day */
  194.       case 'd':
  195.       case 'e':
  196. tmp= (char*) val + min(2, val_len);
  197. l_time->day= (int) my_strtoll10(val, &tmp, &error);
  198. val= tmp;
  199. break;
  200.       case 'D':
  201. tmp= (char*) val + min(2, val_len);
  202. l_time->day= (int) my_strtoll10(val, &tmp, &error);
  203. /* Skip 'st, 'nd, 'th .. */
  204. val= tmp + min((int) (end-tmp), 2);
  205. break;
  206. /* Hour */
  207.       case 'h':
  208.       case 'I':
  209.       case 'l':
  210. usa_time= 1;
  211. /* fall through */
  212.       case 'k':
  213.       case 'H':
  214. tmp= (char*) val + min(2, val_len);
  215. l_time->hour= (int) my_strtoll10(val, &tmp, &error);
  216. val= tmp;
  217. break;
  218. /* Minute */
  219.       case 'i':
  220. tmp= (char*) val + min(2, val_len);
  221. l_time->minute= (int) my_strtoll10(val, &tmp, &error);
  222. val= tmp;
  223. break;
  224. /* Second */
  225.       case 's':
  226.       case 'S':
  227. tmp= (char*) val + min(2, val_len);
  228. l_time->second= (int) my_strtoll10(val, &tmp, &error);
  229. val= tmp;
  230. break;
  231. /* Second part */
  232.       case 'f':
  233. tmp= (char*) val_end;
  234. if (tmp - val > 6)
  235.   tmp= (char*) val + 6;
  236. l_time->second_part= (int) my_strtoll10(val, &tmp, &error);
  237. frac_part= 6 - (tmp - val);
  238. if (frac_part > 0)
  239.   l_time->second_part*= (ulong) log_10_int[frac_part];
  240. val= tmp;
  241. break;
  242. /* AM / PM */
  243.       case 'p':
  244. if (val_len < 2 || ! usa_time)
  245.   goto err;
  246. if (!my_strnncoll(&my_charset_latin1,
  247.   (const uchar *) val, 2, 
  248.   (const uchar *) "PM", 2))
  249.   daypart= 12;
  250. else if (my_strnncoll(&my_charset_latin1,
  251.       (const uchar *) val, 2, 
  252.       (const uchar *) "AM", 2))
  253.   goto err;
  254. val+= 2;
  255. break;
  256. /* Exotic things */
  257.       case 'W':
  258.       case 'a':
  259. if ((weekday= check_word(&day_names_typelib, val, val_end, &val)) <= 0)
  260.   goto err;
  261. break;
  262.       case 'w':
  263. tmp= (char*) val + 1;
  264. if ((weekday= (int) my_strtoll10(val, &tmp, &error)) < 0 ||
  265.     weekday >= 7)
  266.   goto err;
  267.         /* We should use the same 1 - 7 scale for %w as for %W */
  268.         if (!weekday)
  269.           weekday= 7;
  270. val= tmp;
  271. break;
  272.       case 'j':
  273. tmp= (char*) val + min(val_len, 3);
  274. yearday= (int) my_strtoll10(val, &tmp, &error);
  275. val= tmp;
  276. break;
  277.         /* Week numbers */
  278.       case 'V':
  279.       case 'U':
  280.       case 'v':
  281.       case 'u':
  282.         sunday_first_n_first_week_non_iso= (*ptr=='U' || *ptr== 'V');
  283.         strict_week_number= (*ptr=='V' || *ptr=='v');
  284. tmp= (char*) val + min(val_len, 2);
  285. if ((week_number= (int) my_strtoll10(val, &tmp, &error)) < 0 ||
  286.             strict_week_number && !week_number ||
  287.             week_number > 53)
  288.           goto err;
  289. val= tmp;
  290. break;
  291.         /* Year used with 'strict' %V and %v week numbers */
  292.       case 'X':
  293.       case 'x':
  294.         strict_week_number_year_type= (*ptr=='X');
  295.         tmp= (char*) val + min(4, val_len);
  296.         strict_week_number_year= (int) my_strtoll10(val, &tmp, &error);
  297.         val= tmp;
  298.         break;
  299.         /* Time in AM/PM notation */
  300.       case 'r':
  301.         error= extract_date_time(&time_ampm_format, val,
  302.                                  (uint)(val_end - val), l_time,
  303.                                  cached_timestamp_type, &val);
  304.         break;
  305.         /* Time in 24-hour notation */
  306.       case 'T':
  307.         error= extract_date_time(&time_24hrs_format, val,
  308.                                  (uint)(val_end - val), l_time,
  309.                                  cached_timestamp_type, &val);
  310.         break;
  311.         /* Conversion specifiers that match classes of characters */
  312.       case '.':
  313. while (my_ispunct(cs, *val) && val != val_end)
  314.   val++;
  315. break;
  316.       case '@':
  317. while (my_isalpha(cs, *val) && val != val_end)
  318.   val++;
  319. break;
  320.       case '#':
  321. while (my_isdigit(cs, *val) && val != val_end)
  322.   val++;
  323. break;
  324.       default:
  325. goto err;
  326.       }
  327.       if (error) // Error from my_strtoll10
  328. goto err;
  329.     }
  330.     else if (!my_isspace(cs, *ptr))
  331.     {
  332.       if (*val != *ptr)
  333. goto err;
  334.       val++;
  335.     }
  336.   }
  337.   if (usa_time)
  338.   {
  339.     if (l_time->hour > 12 || l_time->hour < 1)
  340.       goto err;
  341.     l_time->hour= l_time->hour%12+daypart;
  342.   }
  343.   /*
  344.     If we are recursively called for parsing string matching compound
  345.     specifiers we are already done.
  346.   */
  347.   if (sub_pattern_end)
  348.   {
  349.     *sub_pattern_end= val;
  350.     DBUG_RETURN(0);
  351.   }
  352.   if (yearday > 0)
  353.   {
  354.     uint days= calc_daynr(l_time->year,1,1) +  yearday - 1;
  355.     if (days <= 0 || days >= MAX_DAY_NUMBER)
  356.       goto err;
  357.     get_date_from_daynr(days,&l_time->year,&l_time->month,&l_time->day);
  358.   }
  359.   if (week_number >= 0 && weekday)
  360.   {
  361.     int days;
  362.     uint weekday_b;
  363.     /*
  364.       %V,%v require %X,%x resprectively,
  365.       %U,%u should be used with %Y and not %X or %x
  366.     */
  367.     if (strict_week_number &&
  368.         (strict_week_number_year < 0 ||
  369.          strict_week_number_year_type != sunday_first_n_first_week_non_iso) ||
  370.         !strict_week_number && strict_week_number_year >= 0)
  371.       goto err;
  372.     /* Number of days since year 0 till 1st Jan of this year */
  373.     days= calc_daynr((strict_week_number ? strict_week_number_year :
  374.                                            l_time->year),
  375.                      1, 1);
  376.     /* Which day of week is 1st Jan of this year */
  377.     weekday_b= calc_weekday(days, sunday_first_n_first_week_non_iso);
  378.     /*
  379.       Below we are going to sum:
  380.       1) number of days since year 0 till 1st day of 1st week of this year
  381.       2) number of days between 1st week and our week
  382.       3) and position of our day in the week
  383.     */
  384.     if (sunday_first_n_first_week_non_iso)
  385.     {
  386.       days+= ((weekday_b == 0) ? 0 : 7) - weekday_b +
  387.              (week_number - 1) * 7 +
  388.              weekday % 7;
  389.     }
  390.     else
  391.     {
  392.       days+= ((weekday_b <= 3) ? 0 : 7) - weekday_b +
  393.              (week_number - 1) * 7 +
  394.              (weekday - 1);
  395.     }
  396.     if (days <= 0 || days >= MAX_DAY_NUMBER)
  397.       goto err;
  398.     get_date_from_daynr(days,&l_time->year,&l_time->month,&l_time->day);
  399.   }
  400.   if (l_time->month > 12 || l_time->day > 31 || l_time->hour > 23 || 
  401.       l_time->minute > 59 || l_time->second > 59)
  402.     goto err;
  403.   if (val != val_end)
  404.   {
  405.     do
  406.     {
  407.       if (!my_isspace(&my_charset_latin1,*val))
  408.       {
  409. make_truncated_value_warning(current_thd, val_begin, length,
  410.      cached_timestamp_type);
  411. break;
  412.       }
  413.     } while (++val != val_end);
  414.   }
  415.   DBUG_RETURN(0);
  416. err:
  417.   DBUG_RETURN(1);
  418. }
  419. /*
  420.   Create a formated date/time value in a string
  421. */
  422. bool make_date_time(DATE_TIME_FORMAT *format, TIME *l_time,
  423.     timestamp_type type, String *str)
  424. {
  425.   char intbuff[15];
  426.   uint days_i;
  427.   uint hours_i;
  428.   uint weekday;
  429.   ulong length;
  430.   const char *ptr, *end;
  431.   str->length(0);
  432.   str->set_charset(&my_charset_bin);
  433.   if (l_time->neg)
  434.     str->append("-", 1);
  435.   
  436.   end= (ptr= format->format.str) + format->format.length;
  437.   for (; ptr != end ; ptr++)
  438.   {
  439.     if (*ptr != '%' || ptr+1 == end)
  440.       str->append(*ptr);
  441.     else
  442.     {
  443.       switch (*++ptr) {
  444.       case 'M':
  445. if (!l_time->month)
  446.   return 1;
  447. str->append(month_names[l_time->month-1]);
  448. break;
  449.       case 'b':
  450. if (!l_time->month)
  451.   return 1;
  452. str->append(month_names[l_time->month-1],3);
  453. break;
  454.       case 'W':
  455. if (type == MYSQL_TIMESTAMP_TIME)
  456.   return 1;
  457. weekday= calc_weekday(calc_daynr(l_time->year,l_time->month,
  458.  l_time->day),0);
  459. str->append(day_names[weekday]);
  460. break;
  461.       case 'a':
  462. if (type == MYSQL_TIMESTAMP_TIME)
  463.   return 1;
  464. weekday=calc_weekday(calc_daynr(l_time->year,l_time->month,
  465. l_time->day),0);
  466. str->append(day_names[weekday],3);
  467. break;
  468.       case 'D':
  469. if (type == MYSQL_TIMESTAMP_TIME)
  470.   return 1;
  471. length= int10_to_str(l_time->day, intbuff, 10) - intbuff;
  472. str->append_with_prefill(intbuff, length, 1, '0');
  473. if (l_time->day >= 10 &&  l_time->day <= 19)
  474.   str->append("th", 2);
  475. else
  476. {
  477.   switch (l_time->day %10) {
  478.   case 1:
  479.     str->append("st",2);
  480.     break;
  481.   case 2:
  482.     str->append("nd",2);
  483.     break;
  484.   case 3:
  485.     str->append("rd",2);
  486.     break;
  487.   default:
  488.     str->append("th",2);
  489.     break;
  490.   }
  491. }
  492. break;
  493.       case 'Y':
  494. length= int10_to_str(l_time->year, intbuff, 10) - intbuff;
  495. str->append_with_prefill(intbuff, length, 4, '0');
  496. break;
  497.       case 'y':
  498. length= int10_to_str(l_time->year%100, intbuff, 10) - intbuff;
  499. str->append_with_prefill(intbuff, length, 2, '0');
  500. break;
  501.       case 'm':
  502. length= int10_to_str(l_time->month, intbuff, 10) - intbuff;
  503. str->append_with_prefill(intbuff, length, 2, '0');
  504. break;
  505.       case 'c':
  506. length= int10_to_str(l_time->month, intbuff, 10) - intbuff;
  507. str->append_with_prefill(intbuff, length, 1, '0');
  508. break;
  509.       case 'd':
  510. length= int10_to_str(l_time->day, intbuff, 10) - intbuff;
  511. str->append_with_prefill(intbuff, length, 2, '0');
  512. break;
  513.       case 'e':
  514. length= int10_to_str(l_time->day, intbuff, 10) - intbuff;
  515. str->append_with_prefill(intbuff, length, 1, '0');
  516. break;
  517.       case 'f':
  518. length= int10_to_str(l_time->second_part, intbuff, 10) - intbuff;
  519. str->append_with_prefill(intbuff, length, 6, '0');
  520. break;
  521.       case 'H':
  522. length= int10_to_str(l_time->hour, intbuff, 10) - intbuff;
  523. str->append_with_prefill(intbuff, length, 2, '0');
  524. break;
  525.       case 'h':
  526.       case 'I':
  527. days_i= l_time->hour/24;
  528. hours_i= (l_time->hour%24 + 11)%12+1 + 24*days_i;
  529. length= int10_to_str(hours_i, intbuff, 10) - intbuff;
  530. str->append_with_prefill(intbuff, length, 2, '0');
  531. break;
  532.       case 'i': /* minutes */
  533. length= int10_to_str(l_time->minute, intbuff, 10) - intbuff;
  534. str->append_with_prefill(intbuff, length, 2, '0');
  535. break;
  536.       case 'j':
  537. if (type == MYSQL_TIMESTAMP_TIME)
  538.   return 1;
  539. length= int10_to_str(calc_daynr(l_time->year,l_time->month,
  540. l_time->day) - 
  541.      calc_daynr(l_time->year,1,1) + 1, intbuff, 10) - intbuff;
  542. str->append_with_prefill(intbuff, length, 3, '0');
  543. break;
  544.       case 'k':
  545. length= int10_to_str(l_time->hour, intbuff, 10) - intbuff;
  546. str->append_with_prefill(intbuff, length, 1, '0');
  547. break;
  548.       case 'l':
  549. days_i= l_time->hour/24;
  550. hours_i= (l_time->hour%24 + 11)%12+1 + 24*days_i;
  551. length= int10_to_str(hours_i, intbuff, 10) - intbuff;
  552. str->append_with_prefill(intbuff, length, 1, '0');
  553. break;
  554.       case 'p':
  555. hours_i= l_time->hour%24;
  556. str->append(hours_i < 12 ? "AM" : "PM",2);
  557. break;
  558.       case 'r':
  559. length= my_sprintf(intbuff, 
  560.    (intbuff, 
  561.     (l_time->hour < 12) ? "%02d:%02d:%02d AM" : "%02d:%02d:%02d PM",
  562.     (l_time->hour+11)%12+1,
  563.     l_time->minute,
  564.     l_time->second));
  565. str->append(intbuff, length);
  566. break;
  567.       case 'S':
  568.       case 's':
  569. length= int10_to_str(l_time->second, intbuff, 10) - intbuff;
  570. str->append_with_prefill(intbuff, length, 2, '0');
  571. break;
  572.       case 'T':
  573. length= my_sprintf(intbuff, 
  574.    (intbuff, 
  575.     "%02d:%02d:%02d", 
  576.     l_time->hour, 
  577.     l_time->minute,
  578.     l_time->second));
  579. str->append(intbuff, length);
  580. break;
  581.       case 'U':
  582.       case 'u':
  583.       {
  584. uint year;
  585. if (type == MYSQL_TIMESTAMP_TIME)
  586.   return 1;
  587. length= int10_to_str(calc_week(l_time,
  588.        (*ptr) == 'U' ?
  589.        WEEK_FIRST_WEEKDAY : WEEK_MONDAY_FIRST,
  590.        &year),
  591.      intbuff, 10) - intbuff;
  592. str->append_with_prefill(intbuff, length, 2, '0');
  593.       }
  594.       break;
  595.       case 'v':
  596.       case 'V':
  597.       {
  598. uint year;
  599. if (type == MYSQL_TIMESTAMP_TIME)
  600.   return 1;
  601. length= int10_to_str(calc_week(l_time,
  602.        ((*ptr) == 'V' ?
  603. (WEEK_YEAR | WEEK_FIRST_WEEKDAY) :
  604. (WEEK_YEAR | WEEK_MONDAY_FIRST)),
  605.        &year),
  606.      intbuff, 10) - intbuff;
  607. str->append_with_prefill(intbuff, length, 2, '0');
  608.       }
  609.       break;
  610.       case 'x':
  611.       case 'X':
  612.       {
  613. uint year;
  614. if (type == MYSQL_TIMESTAMP_TIME)
  615.   return 1;
  616. (void) calc_week(l_time,
  617.  ((*ptr) == 'X' ?
  618.   WEEK_YEAR | WEEK_FIRST_WEEKDAY :
  619.   WEEK_YEAR | WEEK_MONDAY_FIRST),
  620.  &year);
  621. length= int10_to_str(year, intbuff, 10) - intbuff;
  622. str->append_with_prefill(intbuff, length, 4, '0');
  623.       }
  624.       break;
  625.       case 'w':
  626. if (type == MYSQL_TIMESTAMP_TIME)
  627.   return 1;
  628. weekday=calc_weekday(calc_daynr(l_time->year,l_time->month,
  629. l_time->day),1);
  630. length= int10_to_str(weekday, intbuff, 10) - intbuff;
  631. str->append_with_prefill(intbuff, length, 1, '0');
  632. break;
  633.       default:
  634. str->append(*ptr);
  635. break;
  636.       }
  637.     }
  638.   }
  639.   return 0;
  640. }
  641. /*
  642.   Get a array of positive numbers from a string object.
  643.   Each number is separated by 1 non digit character
  644.   Return error if there is too many numbers.
  645.   If there is too few numbers, assume that the numbers are left out
  646.   from the high end. This allows one to give:
  647.   DAY_TO_SECOND as "D MM:HH:SS", "MM:HH:SS" "HH:SS" or as seconds.
  648.   SYNOPSIS
  649.     str:            string value
  650.     length:         length of str
  651.     cs:             charset of str
  652.     values:         array of results
  653.     count:          count of elements in result array
  654.     transform_msec: if value is true we suppose
  655.                     that the last part of string value is microseconds
  656.                     and we should transform value to six digit value.
  657.                     For example, '1.1' -> '1.100000'
  658. */
  659. static bool get_interval_info(const char *str,uint length,CHARSET_INFO *cs,
  660.                               uint count, ulonglong *values,
  661.                               bool transform_msec)
  662. {
  663.   const char *end=str+length;
  664.   uint i;
  665.   while (str != end && !my_isdigit(cs,*str))
  666.     str++;
  667.   for (i=0 ; i < count ; i++)
  668.   {
  669.     longlong value;
  670.     const char *start= str;
  671.     for (value=0; str != end && my_isdigit(cs,*str) ; str++)
  672.       value= value*LL(10) + (longlong) (*str - '0');
  673.     if (transform_msec && i == count - 1) // microseconds always last
  674.     {
  675.       long msec_length= 6 - (str - start);
  676.       if (msec_length > 0)
  677. value*= (long) log_10_int[msec_length];
  678.     }
  679.     values[i]= value;
  680.     while (str != end && !my_isdigit(cs,*str))
  681.       str++;
  682.     if (str == end && i != count-1)
  683.     {
  684.       i++;
  685.       /* Change values[0...i-1] -> values[0...count-1] */
  686.       bmove_upp((char*) (values+count), (char*) (values+i),
  687. sizeof(*values)*i);
  688.       bzero((char*) values, sizeof(*values)*(count-i));
  689.       break;
  690.     }
  691.   }
  692.   return (str != end);
  693. }
  694. /*
  695.   Calculate difference between two datetime values as seconds + microseconds.
  696.   SYNOPSIS
  697.     calc_time_diff()
  698.       l_time1         - TIME/DATE/DATETIME value
  699.       l_time2         - TIME/DATE/DATETIME value
  700.       l_sign          - 1 absolute values are substracted,
  701.                         -1 absolute values are added.
  702.       seconds_out     - Out parameter where difference between
  703.                         l_time1 and l_time2 in seconds is stored.
  704.       microseconds_out- Out parameter where microsecond part of difference
  705.                         between l_time1 and l_time2 is stored.
  706.   NOTE
  707.     This function calculates difference between l_time1 and l_time2 absolute
  708.     values. So one should set l_sign and correct result if he want to take
  709.     signs into account (i.e. for TIME values).
  710.   RETURN VALUES
  711.     Returns sign of difference.
  712.     1 means negative result
  713.     0 means positive result
  714. */
  715. static bool calc_time_diff(TIME *l_time1, TIME *l_time2, int l_sign,
  716.                            longlong *seconds_out, long *microseconds_out)
  717. {
  718.   long days;
  719.   bool neg;
  720.   longlong microseconds;
  721.   /*
  722.     We suppose that if first argument is MYSQL_TIMESTAMP_TIME
  723.     the second argument should be TIMESTAMP_TIME also.
  724.     We should check it before calc_time_diff call.
  725.   */
  726.   if (l_time1->time_type == MYSQL_TIMESTAMP_TIME)  // Time value
  727.     days= (long)l_time1->day - l_sign * (long)l_time2->day;
  728.   else
  729.   {
  730.     days= calc_daynr((uint) l_time1->year,
  731.      (uint) l_time1->month,
  732.      (uint) l_time1->day);
  733.     if (l_time2->time_type == MYSQL_TIMESTAMP_TIME)
  734.       days-= l_sign * (long)l_time2->day;
  735.     else
  736.       days-= l_sign*calc_daynr((uint) l_time2->year,
  737.        (uint) l_time2->month,
  738.        (uint) l_time2->day);
  739.   }
  740.   microseconds= ((longlong)days*LL(86400) +
  741.                  (longlong)(l_time1->hour*3600L +
  742.                             l_time1->minute*60L +
  743.                             l_time1->second) -
  744.                  l_sign*(longlong)(l_time2->hour*3600L +
  745.                                    l_time2->minute*60L +
  746.                                    l_time2->second)) * LL(1000000) +
  747.                 (longlong)l_time1->second_part -
  748.                 l_sign*(longlong)l_time2->second_part;
  749.   neg= 0;
  750.   if (microseconds < 0)
  751.   {
  752.     microseconds= -microseconds;
  753.     neg= 1;
  754.   }
  755.   *seconds_out= microseconds/1000000L;
  756.   *microseconds_out= (long) (microseconds%1000000L);
  757.   return neg;
  758. }
  759. longlong Item_func_period_add::val_int()
  760. {
  761.   DBUG_ASSERT(fixed == 1);
  762.   ulong period=(ulong) args[0]->val_int();
  763.   int months=(int) args[1]->val_int();
  764.   if ((null_value=args[0]->null_value || args[1]->null_value) ||
  765.       period == 0L)
  766.     return 0; /* purecov: inspected */
  767.   return (longlong)
  768.     convert_month_to_period((uint) ((int) convert_period_to_month(period)+
  769.     months));
  770. }
  771. longlong Item_func_period_diff::val_int()
  772. {
  773.   DBUG_ASSERT(fixed == 1);
  774.   ulong period1=(ulong) args[0]->val_int();
  775.   ulong period2=(ulong) args[1]->val_int();
  776.   if ((null_value=args[0]->null_value || args[1]->null_value))
  777.     return 0; /* purecov: inspected */
  778.   return (longlong) ((long) convert_period_to_month(period1)-
  779.      (long) convert_period_to_month(period2));
  780. }
  781. longlong Item_func_to_days::val_int()
  782. {
  783.   DBUG_ASSERT(fixed == 1);
  784.   TIME ltime;
  785.   if (get_arg0_date(&ltime,0))
  786.     return 0;
  787.   return (longlong) calc_daynr(ltime.year,ltime.month,ltime.day);
  788. }
  789. longlong Item_func_dayofyear::val_int()
  790. {
  791.   DBUG_ASSERT(fixed == 1);
  792.   TIME ltime;
  793.   if (get_arg0_date(&ltime,0))
  794.     return 0;
  795.   return (longlong) calc_daynr(ltime.year,ltime.month,ltime.day) -
  796.     calc_daynr(ltime.year,1,1) + 1;
  797. }
  798. longlong Item_func_dayofmonth::val_int()
  799. {
  800.   DBUG_ASSERT(fixed == 1);
  801.   TIME ltime;
  802.   (void) get_arg0_date(&ltime,1);
  803.   return (longlong) ltime.day;
  804. }
  805. longlong Item_func_month::val_int()
  806. {
  807.   DBUG_ASSERT(fixed == 1);
  808.   TIME ltime;
  809.   (void) get_arg0_date(&ltime,1);
  810.   return (longlong) ltime.month;
  811. }
  812. String* Item_func_monthname::val_str(String* str)
  813. {
  814.   DBUG_ASSERT(fixed == 1);
  815.   const char *month_name;
  816.   uint   month=(uint) Item_func_month::val_int();
  817.   if (!month) // This is also true for NULL
  818.   {
  819.     null_value=1;
  820.     return (String*) 0;
  821.   }
  822.   null_value=0;
  823.   month_name= month_names[month-1];
  824.   str->set(month_name, strlen(month_name), system_charset_info);
  825.   return str;
  826. }
  827. // Returns the quarter of the year
  828. longlong Item_func_quarter::val_int()
  829. {
  830.   DBUG_ASSERT(fixed == 1);
  831.   TIME ltime;
  832.   (void) get_arg0_date(&ltime,1);
  833.   return (longlong) ((ltime.month+2)/3);
  834. }
  835. longlong Item_func_hour::val_int()
  836. {
  837.   DBUG_ASSERT(fixed == 1);
  838.   TIME ltime;
  839.   (void) get_arg0_time(&ltime);
  840.   return ltime.hour;
  841. }
  842. longlong Item_func_minute::val_int()
  843. {
  844.   DBUG_ASSERT(fixed == 1);
  845.   TIME ltime;
  846.   (void) get_arg0_time(&ltime);
  847.   return ltime.minute;
  848. }
  849. // Returns the second in time_exp in the range of 0 - 59
  850. longlong Item_func_second::val_int()
  851. {
  852.   DBUG_ASSERT(fixed == 1);
  853.   TIME ltime;
  854.   (void) get_arg0_time(&ltime);
  855.   return ltime.second;
  856. }
  857. uint week_mode(uint mode)
  858. {
  859.   uint week_format= (mode & 7);
  860.   if (!(week_format & WEEK_MONDAY_FIRST))
  861.     week_format^= WEEK_FIRST_WEEKDAY;
  862.   return week_format;
  863. }
  864. /*
  865.   The bits in week_format(for calc_week() function) has the following meaning:
  866.    WEEK_MONDAY_FIRST (0)  If not set Sunday is first day of week
  867.              If set Monday is first day of week
  868.    WEEK_YEAR (1)   If not set Week is in range 0-53
  869.     Week 0 is returned for the the last week of the previous year (for
  870. a date at start of january) In this case one can get 53 for the
  871. first week of next year.  This flag ensures that the week is
  872. relevant for the given year. Note that this flag is only
  873. releveant if WEEK_JANUARY is not set.
  874.   If set  Week is in range 1-53.
  875. In this case one may get week 53 for a date in January (when
  876. the week is that last week of previous year) and week 1 for a
  877. date in December.
  878.   WEEK_FIRST_WEEKDAY (2)  If not set Weeks are numbered according
  879.     to ISO 8601:1988
  880.   If set The week that contains the first
  881. 'first-day-of-week' is week 1.
  882. ISO 8601:1988 means that if the week containing January 1 has
  883. four or more days in the new year, then it is week 1;
  884. Otherwise it is the last week of the previous year, and the
  885. next week is week 1.
  886. */
  887. longlong Item_func_week::val_int()
  888. {
  889.   DBUG_ASSERT(fixed == 1);
  890.   uint year;
  891.   TIME ltime;
  892.   if (get_arg0_date(&ltime,0))
  893.     return 0;
  894.   return (longlong) calc_week(&ltime,
  895.       week_mode((uint) args[1]->val_int()),
  896.       &year);
  897. }
  898. longlong Item_func_yearweek::val_int()
  899. {
  900.   DBUG_ASSERT(fixed == 1);
  901.   uint year,week;
  902.   TIME ltime;
  903.   if (get_arg0_date(&ltime,0))
  904.     return 0;
  905.   week= calc_week(&ltime, 
  906.   (week_mode((uint) args[1]->val_int()) | WEEK_YEAR),
  907.   &year);
  908.   return week+year*100;
  909. }
  910. /* weekday() has a automatic to_days() on item */
  911. longlong Item_func_weekday::val_int()
  912. {
  913.   DBUG_ASSERT(fixed == 1);
  914.   ulong tmp_value=(ulong) args[0]->val_int();
  915.   if ((null_value=(args[0]->null_value || !tmp_value)))
  916.     return 0; /* purecov: inspected */
  917.   return (longlong) calc_weekday(tmp_value,odbc_type)+test(odbc_type);
  918. }
  919. String* Item_func_dayname::val_str(String* str)
  920. {
  921.   DBUG_ASSERT(fixed == 1);
  922.   uint weekday=(uint) val_int(); // Always Item_func_daynr()
  923.   const char *name;
  924.   if (null_value)
  925.     return (String*) 0;
  926.   
  927.   name= day_names[weekday];
  928.   str->set(name, strlen(name), system_charset_info);
  929.   return str;
  930. }
  931. longlong Item_func_year::val_int()
  932. {
  933.   DBUG_ASSERT(fixed == 1);
  934.   TIME ltime;
  935.   (void) get_arg0_date(&ltime,1);
  936.   return (longlong) ltime.year;
  937. }
  938. longlong Item_func_unix_timestamp::val_int()
  939. {
  940.   TIME ltime;
  941.   bool not_used;
  942.   
  943.   DBUG_ASSERT(fixed == 1);
  944.   if (arg_count == 0)
  945.     return (longlong) current_thd->query_start();
  946.   if (args[0]->type() == FIELD_ITEM)
  947.   { // Optimize timestamp field
  948.     Field *field=((Item_field*) args[0])->field;
  949.     if (field->type() == FIELD_TYPE_TIMESTAMP)
  950.       return ((Field_timestamp*) field)->get_timestamp(&null_value);
  951.   }
  952.   
  953.   if (get_arg0_date(&ltime, 0))
  954.   {
  955.     /*
  956.       We have to set null_value again because get_arg0_date will also set it
  957.       to true if we have wrong datetime parameter (and we should return 0 in 
  958.       this case).
  959.     */
  960.     null_value= args[0]->null_value;
  961.     return 0;
  962.   }
  963.   
  964.   return (longlong) TIME_to_timestamp(current_thd, &ltime, &not_used);
  965. }
  966. longlong Item_func_time_to_sec::val_int()
  967. {
  968.   DBUG_ASSERT(fixed == 1);
  969.   TIME ltime;
  970.   longlong seconds;
  971.   (void) get_arg0_time(&ltime);
  972.   seconds=ltime.hour*3600L+ltime.minute*60+ltime.second;
  973.   return ltime.neg ? -seconds : seconds;
  974. }
  975. /*
  976.   Convert a string to a interval value
  977.   To make code easy, allow interval objects without separators.
  978. */
  979. static bool get_interval_value(Item *args,interval_type int_type,
  980.        String *str_value, INTERVAL *interval)
  981. {
  982.   ulonglong array[5];
  983.   longlong value;
  984.   const char *str;
  985.   uint32 length;
  986.   CHARSET_INFO *cs=str_value->charset();
  987.   LINT_INIT(value);
  988.   LINT_INIT(str);
  989.   LINT_INIT(length);
  990.   bzero((char*) interval,sizeof(*interval));
  991.   if ((int) int_type <= INTERVAL_MICROSECOND)
  992.   {
  993.     value= args->val_int();
  994.     if (args->null_value)
  995.       return 1;
  996.     if (value < 0)
  997.     {
  998.       interval->neg=1;
  999.       value= -value;
  1000.     }
  1001.   }
  1002.   else
  1003.   {
  1004.     String *res;
  1005.     if (!(res=args->val_str(str_value)))
  1006.       return (1);
  1007.     /* record negative intervalls in interval->neg */
  1008.     str=res->ptr();
  1009.     const char *end=str+res->length();
  1010.     while (str != end && my_isspace(cs,*str))
  1011.       str++;
  1012.     if (str != end && *str == '-')
  1013.     {
  1014.       interval->neg=1;
  1015.       str++;
  1016.     }
  1017.     length=(uint32) (end-str); // Set up pointers to new str
  1018.   }
  1019.   switch (int_type) {
  1020.   case INTERVAL_YEAR:
  1021.     interval->year= (ulong) value;
  1022.     break;
  1023.   case INTERVAL_MONTH:
  1024.     interval->month= (ulong) value;
  1025.     break;
  1026.   case INTERVAL_DAY:
  1027.     interval->day= (ulong) value;
  1028.     break;
  1029.   case INTERVAL_HOUR:
  1030.     interval->hour= (ulong) value;
  1031.     break;
  1032.   case INTERVAL_MICROSECOND:
  1033.     interval->second_part=value;
  1034.     break;
  1035.   case INTERVAL_MINUTE:
  1036.     interval->minute=value;
  1037.     break;
  1038.   case INTERVAL_SECOND:
  1039.     interval->second=value;
  1040.     break;
  1041.   case INTERVAL_YEAR_MONTH: // Allow YEAR-MONTH YYYYYMM
  1042.     if (get_interval_info(str,length,cs,2,array,0))
  1043.       return (1);
  1044.     interval->year=  (ulong) array[0];
  1045.     interval->month= (ulong) array[1];
  1046.     break;
  1047.   case INTERVAL_DAY_HOUR:
  1048.     if (get_interval_info(str,length,cs,2,array,0))
  1049.       return (1);
  1050.     interval->day=  (ulong) array[0];
  1051.     interval->hour= (ulong) array[1];
  1052.     break;
  1053.   case INTERVAL_DAY_MICROSECOND:
  1054.     if (get_interval_info(str,length,cs,5,array,1))
  1055.       return (1);
  1056.     interval->day=    (ulong) array[0];
  1057.     interval->hour=   (ulong) array[1];
  1058.     interval->minute= array[2];
  1059.     interval->second= array[3];
  1060.     interval->second_part= array[4];
  1061.     break;
  1062.   case INTERVAL_DAY_MINUTE:
  1063.     if (get_interval_info(str,length,cs,3,array,0))
  1064.       return (1);
  1065.     interval->day=    (ulong) array[0];
  1066.     interval->hour=   (ulong) array[1];
  1067.     interval->minute= array[2];
  1068.     break;
  1069.   case INTERVAL_DAY_SECOND:
  1070.     if (get_interval_info(str,length,cs,4,array,0))
  1071.       return (1);
  1072.     interval->day=    (ulong) array[0];
  1073.     interval->hour=   (ulong) array[1];
  1074.     interval->minute= array[2];
  1075.     interval->second= array[3];
  1076.     break;
  1077.   case INTERVAL_HOUR_MICROSECOND:
  1078.     if (get_interval_info(str,length,cs,4,array,1))
  1079.       return (1);
  1080.     interval->hour=   (ulong) array[0];
  1081.     interval->minute= array[1];
  1082.     interval->second= array[2];
  1083.     interval->second_part= array[3];
  1084.     break;
  1085.   case INTERVAL_HOUR_MINUTE:
  1086.     if (get_interval_info(str,length,cs,2,array,0))
  1087.       return (1);
  1088.     interval->hour=   (ulong) array[0];
  1089.     interval->minute= array[1];
  1090.     break;
  1091.   case INTERVAL_HOUR_SECOND:
  1092.     if (get_interval_info(str,length,cs,3,array,0))
  1093.       return (1);
  1094.     interval->hour=   (ulong) array[0];
  1095.     interval->minute= array[1];
  1096.     interval->second= array[2];
  1097.     break;
  1098.   case INTERVAL_MINUTE_MICROSECOND:
  1099.     if (get_interval_info(str,length,cs,3,array,1))
  1100.       return (1);
  1101.     interval->minute= array[0];
  1102.     interval->second= array[1];
  1103.     interval->second_part= array[2];
  1104.     break;
  1105.   case INTERVAL_MINUTE_SECOND:
  1106.     if (get_interval_info(str,length,cs,2,array,0))
  1107.       return (1);
  1108.     interval->minute= array[0];
  1109.     interval->second= array[1];
  1110.     break;
  1111.   case INTERVAL_SECOND_MICROSECOND:
  1112.     if (get_interval_info(str,length,cs,2,array,1))
  1113.       return (1);
  1114.     interval->second= array[0];
  1115.     interval->second_part= array[1];
  1116.     break;
  1117.   }
  1118.   return 0;
  1119. }
  1120. String *Item_date::val_str(String *str)
  1121. {
  1122.   DBUG_ASSERT(fixed == 1);
  1123.   TIME ltime;
  1124.   if (get_date(&ltime, TIME_FUZZY_DATE))
  1125.     return (String *) 0;
  1126.   if (str->alloc(11))
  1127.   {
  1128.     null_value= 1;
  1129.     return (String *) 0;
  1130.   }
  1131.   make_date((DATE_TIME_FORMAT *) 0, &ltime, str);
  1132.   return str;
  1133. }
  1134. int Item_date::save_in_field(Field *field, bool no_conversions)
  1135. {
  1136.   TIME ltime;
  1137.   if (get_date(&ltime, TIME_FUZZY_DATE))
  1138.     return set_field_to_null(field);
  1139.   field->set_notnull();
  1140.   field->store_time(&ltime, MYSQL_TIMESTAMP_DATE);
  1141.   return 0;
  1142. }
  1143. longlong Item_date::val_int()
  1144. {
  1145.   DBUG_ASSERT(fixed == 1);
  1146.   TIME ltime;
  1147.   if (get_date(&ltime, TIME_FUZZY_DATE))
  1148.     return 0;
  1149.   return (longlong) (ltime.year*10000L+ltime.month*100+ltime.day);
  1150. }
  1151. bool Item_func_from_days::get_date(TIME *ltime, uint fuzzy_date)
  1152. {
  1153.   longlong value=args[0]->val_int();
  1154.   if ((null_value=args[0]->null_value))
  1155.     return 1;
  1156.   bzero(ltime, sizeof(TIME));
  1157.   get_date_from_daynr((long) value, &ltime->year, &ltime->month, &ltime->day);
  1158.   ltime->time_type= MYSQL_TIMESTAMP_DATE;
  1159.   return 0;
  1160. }
  1161. void Item_func_curdate::fix_length_and_dec()
  1162. {
  1163.   collation.set(&my_charset_bin);
  1164.   decimals=0; 
  1165.   max_length=MAX_DATE_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  1166.   store_now_in_TIME(&ltime);
  1167.   
  1168.   /* We don't need to set second_part and neg because they already 0 */
  1169.   ltime.hour= ltime.minute= ltime.second= 0;
  1170.   ltime.time_type= MYSQL_TIMESTAMP_DATE;
  1171.   value= (longlong) TIME_to_ulonglong_date(&ltime);
  1172. }
  1173. String *Item_func_curdate::val_str(String *str)
  1174. {
  1175.   DBUG_ASSERT(fixed == 1);
  1176.   if (str->alloc(11))
  1177.   {
  1178.     null_value= 1;
  1179.     return (String *) 0;
  1180.   }
  1181.   make_date((DATE_TIME_FORMAT *) 0, &ltime, str);
  1182.   return str;
  1183. }
  1184. /*
  1185.     Converts current time in my_time_t to TIME represenatation for local
  1186.     time zone. Defines time zone (local) used for whole CURDATE function.
  1187. */
  1188. void Item_func_curdate_local::store_now_in_TIME(TIME *now_time)
  1189. {
  1190.   THD *thd= current_thd;
  1191.   thd->variables.time_zone->gmt_sec_to_TIME(now_time, 
  1192.                                              (my_time_t)thd->query_start());
  1193.   thd->time_zone_used= 1;
  1194. }
  1195. /*
  1196.     Converts current time in my_time_t to TIME represenatation for UTC
  1197.     time zone. Defines time zone (UTC) used for whole UTC_DATE function.
  1198. */
  1199. void Item_func_curdate_utc::store_now_in_TIME(TIME *now_time)
  1200. {
  1201.   my_tz_UTC->gmt_sec_to_TIME(now_time, 
  1202.                              (my_time_t)(current_thd->query_start()));
  1203.   /* 
  1204.     We are not flagging this query as using time zone, since it uses fixed
  1205.     UTC-SYSTEM time-zone.
  1206.   */
  1207. }
  1208. bool Item_func_curdate::get_date(TIME *res,
  1209.  uint fuzzy_date __attribute__((unused)))
  1210. {
  1211.   *res=ltime;
  1212.   return 0;
  1213. }
  1214. String *Item_func_curtime::val_str(String *str)
  1215. {
  1216.   DBUG_ASSERT(fixed == 1);
  1217.   str_value.set(buff, buff_length, &my_charset_bin);
  1218.   return &str_value;
  1219. }
  1220. void Item_func_curtime::fix_length_and_dec()
  1221. {
  1222.   TIME ltime;
  1223.   decimals=0;
  1224.   collation.set(&my_charset_bin);
  1225.   store_now_in_TIME(&ltime);
  1226.   value= TIME_to_ulonglong_time(&ltime);
  1227.   buff_length= (uint) my_time_to_str(&ltime, buff);
  1228.   max_length= buff_length;
  1229. }
  1230. /*
  1231.     Converts current time in my_time_t to TIME represenatation for local
  1232.     time zone. Defines time zone (local) used for whole CURTIME function.
  1233. */
  1234. void Item_func_curtime_local::store_now_in_TIME(TIME *now_time)
  1235. {
  1236.   THD *thd= current_thd;
  1237.   thd->variables.time_zone->gmt_sec_to_TIME(now_time, 
  1238.                                              (my_time_t)thd->query_start());
  1239.   thd->time_zone_used= 1;
  1240. }
  1241. /*
  1242.     Converts current time in my_time_t to TIME represenatation for UTC
  1243.     time zone. Defines time zone (UTC) used for whole UTC_TIME function.
  1244. */
  1245. void Item_func_curtime_utc::store_now_in_TIME(TIME *now_time)
  1246. {
  1247.   my_tz_UTC->gmt_sec_to_TIME(now_time, 
  1248.                              (my_time_t)(current_thd->query_start()));
  1249.   /* 
  1250.     We are not flagging this query as using time zone, since it uses fixed
  1251.     UTC-SYSTEM time-zone.
  1252.   */
  1253. }
  1254. String *Item_func_now::val_str(String *str)
  1255. {
  1256.   DBUG_ASSERT(fixed == 1);
  1257.   str_value.set(buff,buff_length, &my_charset_bin);
  1258.   return &str_value;
  1259. }
  1260. void Item_func_now::fix_length_and_dec()
  1261. {
  1262.   decimals=0;
  1263.   collation.set(&my_charset_bin);
  1264.   store_now_in_TIME(&ltime);
  1265.   value= (longlong) TIME_to_ulonglong_datetime(&ltime);
  1266.   buff_length= (uint) my_datetime_to_str(&ltime, buff);
  1267.   max_length= buff_length;
  1268. }
  1269. /*
  1270.     Converts current time in my_time_t to TIME represenatation for local
  1271.     time zone. Defines time zone (local) used for whole NOW function.
  1272. */
  1273. void Item_func_now_local::store_now_in_TIME(TIME *now_time)
  1274. {
  1275.   THD *thd= current_thd;
  1276.   thd->variables.time_zone->gmt_sec_to_TIME(now_time, 
  1277.                                              (my_time_t)thd->query_start());
  1278.   thd->time_zone_used= 1;
  1279. }
  1280. /*
  1281.     Converts current time in my_time_t to TIME represenatation for UTC
  1282.     time zone. Defines time zone (UTC) used for whole UTC_TIMESTAMP function.
  1283. */
  1284. void Item_func_now_utc::store_now_in_TIME(TIME *now_time)
  1285. {
  1286.   my_tz_UTC->gmt_sec_to_TIME(now_time, 
  1287.                              (my_time_t)(current_thd->query_start()));
  1288.   /* 
  1289.     We are not flagging this query as using time zone, since it uses fixed
  1290.     UTC-SYSTEM time-zone.
  1291.   */
  1292. }
  1293. bool Item_func_now::get_date(TIME *res,
  1294.      uint fuzzy_date __attribute__((unused)))
  1295. {
  1296.   *res=ltime;
  1297.   return 0;
  1298. }
  1299. int Item_func_now::save_in_field(Field *to, bool no_conversions)
  1300. {
  1301.   to->set_notnull();
  1302.   to->store_time(&ltime, MYSQL_TIMESTAMP_DATETIME);
  1303.   return 0;
  1304. }
  1305. String *Item_func_sec_to_time::val_str(String *str)
  1306. {
  1307.   DBUG_ASSERT(fixed == 1);
  1308.   longlong seconds=(longlong) args[0]->val_int();
  1309.   uint sec;
  1310.   TIME ltime;
  1311.   if ((null_value=args[0]->null_value) || str->alloc(19))
  1312.   {
  1313.     null_value= 1;
  1314.     return (String*) 0;
  1315.   }
  1316.   ltime.neg= 0;
  1317.   if (seconds < 0)
  1318.   {
  1319.     seconds= -seconds;
  1320.     ltime.neg= 1;
  1321.   }
  1322.   sec= (uint) ((ulonglong) seconds % 3600);
  1323.   ltime.day= 0;
  1324.   ltime.hour= (uint) (seconds/3600);
  1325.   ltime.minute= sec/60;
  1326.   ltime.second= sec % 60;
  1327.   make_time((DATE_TIME_FORMAT *) 0, &ltime, str);
  1328.   return str;
  1329. }
  1330. longlong Item_func_sec_to_time::val_int()
  1331. {
  1332.   DBUG_ASSERT(fixed == 1);
  1333.   longlong seconds=args[0]->val_int();
  1334.   longlong sign=1;
  1335.   if ((null_value=args[0]->null_value))
  1336.     return 0;
  1337.   if (seconds < 0)
  1338.   {
  1339.     seconds= -seconds;
  1340.     sign= -1;
  1341.   }
  1342.   return sign*((seconds / 3600)*10000+((seconds/60) % 60)*100+ (seconds % 60));
  1343. }
  1344. void Item_func_date_format::fix_length_and_dec()
  1345. {
  1346.   decimals=0;
  1347.   collation.set(&my_charset_bin);
  1348.   if (args[1]->type() == STRING_ITEM)
  1349.   { // Optimize the normal case
  1350.     fixed_length=1;
  1351.     /*
  1352.       Force case sensitive collation on format string.
  1353.       This needed because format modifiers with different case,
  1354.       for example %m and %M, have different meaning. Thus eq()
  1355.       will distinguish them.
  1356.     */
  1357.     args[1]->collation.set(
  1358.         get_charset_by_csname(args[1]->collation.collation->csname,
  1359.                               MY_CS_BINSORT,MYF(0)), DERIVATION_COERCIBLE);
  1360.     /*
  1361.       The result is a binary string (no reason to use collation->mbmaxlen
  1362.       This is becasue make_date_time() only returns binary strings
  1363.     */
  1364.     max_length= format_length(((Item_string*) args[1])->const_string());
  1365.   }
  1366.   else
  1367.   {
  1368.     fixed_length=0;
  1369.     /* The result is a binary string (no reason to use collation->mbmaxlen */
  1370.     max_length=min(args[1]->max_length,MAX_BLOB_WIDTH) * 10;
  1371.     set_if_smaller(max_length,MAX_BLOB_WIDTH);
  1372.   }
  1373.   maybe_null=1; // If wrong date
  1374. }
  1375. uint Item_func_date_format::format_length(const String *format)
  1376. {
  1377.   uint size=0;
  1378.   const char *ptr=format->ptr();
  1379.   const char *end=ptr+format->length();
  1380.   for (; ptr != end ; ptr++)
  1381.   {
  1382.     if (*ptr != '%' || ptr == end-1)
  1383.       size++;
  1384.     else
  1385.     {
  1386.       switch(*++ptr) {
  1387.       case 'M': /* month, textual */
  1388.       case 'W': /* day (of the week), textual */
  1389. size += 9;
  1390. break;
  1391.       case 'D': /* day (of the month), numeric plus english suffix */
  1392.       case 'Y': /* year, numeric, 4 digits */
  1393.       case 'x': /* Year, used with 'v' */
  1394.       case 'X': /* Year, used with 'v, where week starts with Monday' */
  1395. size += 4;
  1396. break;
  1397.       case 'a': /* locale's abbreviated weekday name (Sun..Sat) */
  1398.       case 'b': /* locale's abbreviated month name (Jan.Dec) */
  1399.       case 'j': /* day of year (001..366) */
  1400. size += 3;
  1401. break;
  1402.       case 'U': /* week (00..52) */
  1403.       case 'u': /* week (00..52), where week starts with Monday */
  1404.       case 'V': /* week 1..53 used with 'x' */
  1405.       case 'v': /* week 1..53 used with 'x', where week starts with Monday */
  1406.       case 'H': /* hour (00..23) */
  1407.       case 'y': /* year, numeric, 2 digits */
  1408.       case 'm': /* month, numeric */
  1409.       case 'd': /* day (of the month), numeric */
  1410.       case 'h': /* hour (01..12) */
  1411.       case 'I': /* --||-- */
  1412.       case 'i': /* minutes, numeric */
  1413.       case 'k': /* hour ( 0..23) */
  1414.       case 'l': /* hour ( 1..12) */
  1415.       case 'p': /* locale's AM or PM */
  1416.       case 'S': /* second (00..61) */
  1417.       case 's': /* seconds, numeric */
  1418.       case 'c': /* month (0..12) */
  1419.       case 'e': /* day (0..31) */
  1420. size += 2;
  1421. break;
  1422.       case 'r': /* time, 12-hour (hh:mm:ss [AP]M) */
  1423. size += 11;
  1424. break;
  1425.       case 'T': /* time, 24-hour (hh:mm:ss) */
  1426. size += 8;
  1427. break;
  1428.       case 'f': /* microseconds */
  1429. size += 6;
  1430. break;
  1431.       case 'w': /* day (of the week), numeric */
  1432.       case '%':
  1433.       default:
  1434. size++;
  1435. break;
  1436.       }
  1437.     }
  1438.   }
  1439.   return size;
  1440. }
  1441. String *Item_func_date_format::val_str(String *str)
  1442. {
  1443.   String *format;
  1444.   TIME l_time;
  1445.   uint size;
  1446.   DBUG_ASSERT(fixed == 1);
  1447.   if (!is_time_format)
  1448.   {
  1449.     if (get_arg0_date(&l_time,1))
  1450.       return 0;
  1451.   }
  1452.   else
  1453.   {
  1454.     String *res;
  1455.     if (!(res=args[0]->val_str(str)) ||
  1456. (str_to_time_with_warn(res->ptr(), res->length(), &l_time)))
  1457.       goto null_date;
  1458.     l_time.year=l_time.month=l_time.day=0;
  1459.     null_value=0;
  1460.   }
  1461.   if (!(format = args[1]->val_str(str)) || !format->length())
  1462.     goto null_date;
  1463.   if (fixed_length)
  1464.     size=max_length;
  1465.   else
  1466.     size=format_length(format);
  1467.   if (format == str)
  1468.     str= &value; // Save result here
  1469.   if (str->alloc(size))
  1470.     goto null_date;
  1471.   DATE_TIME_FORMAT date_time_format;
  1472.   date_time_format.format.str=    (char*) format->ptr();
  1473.   date_time_format.format.length= format->length(); 
  1474.   /* Create the result string */
  1475.   if (!make_date_time(&date_time_format, &l_time,
  1476.                       is_time_format ? MYSQL_TIMESTAMP_TIME :
  1477.                                        MYSQL_TIMESTAMP_DATE,
  1478.                       str))
  1479.     return str;
  1480. null_date:
  1481.   null_value=1;
  1482.   return 0;
  1483. }
  1484. void Item_func_from_unixtime::fix_length_and_dec()
  1485.   thd= current_thd;
  1486.   collation.set(&my_charset_bin);
  1487.   decimals=0;
  1488.   max_length=MAX_DATETIME_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  1489.   maybe_null= 1;
  1490.   thd->time_zone_used= 1;
  1491. }
  1492. String *Item_func_from_unixtime::val_str(String *str)
  1493. {
  1494.   TIME time_tmp;
  1495.   DBUG_ASSERT(fixed == 1);
  1496.   if (get_date(&time_tmp, 0))
  1497.     return 0;
  1498.   if (str->alloc(20*MY_CHARSET_BIN_MB_MAXLEN))
  1499.   {
  1500.     null_value= 1;
  1501.     return 0;
  1502.   }
  1503.   make_datetime((DATE_TIME_FORMAT *) 0, &time_tmp, str);
  1504.   return str;
  1505. }
  1506. longlong Item_func_from_unixtime::val_int()
  1507. {
  1508.   TIME time_tmp;
  1509.   DBUG_ASSERT(fixed == 1);
  1510.   if (get_date(&time_tmp, 0))
  1511.     return 0;
  1512.   return (longlong) TIME_to_ulonglong_datetime(&time_tmp);
  1513. }
  1514. bool Item_func_from_unixtime::get_date(TIME *ltime,
  1515.        uint fuzzy_date __attribute__((unused)))
  1516. {
  1517.   ulonglong tmp= (ulonglong)(args[0]->val_int());
  1518.   /*
  1519.     "tmp > TIMESTAMP_MAX_VALUE" check also covers case of negative
  1520.     from_unixtime() argument since tmp is unsigned.
  1521.   */
  1522.   if ((null_value= (args[0]->null_value || tmp > TIMESTAMP_MAX_VALUE)))
  1523.     return 1;
  1524.   thd->variables.time_zone->gmt_sec_to_TIME(ltime, (my_time_t)tmp);
  1525.   return 0;
  1526. }
  1527. void Item_func_convert_tz::fix_length_and_dec()
  1528. {
  1529.   collation.set(&my_charset_bin);
  1530.   decimals= 0;
  1531.   max_length= MAX_DATETIME_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  1532.   maybe_null= 1;
  1533. }
  1534. bool
  1535. Item_func_convert_tz::fix_fields(THD *thd_arg, TABLE_LIST *tables_arg, Item **ref)
  1536. {
  1537.   String str;
  1538.   if (Item_date_func::fix_fields(thd_arg, tables_arg, ref))
  1539.     return 1;
  1540.   tz_tables= thd_arg->lex->time_zone_tables_used;
  1541.   return 0;
  1542. }
  1543. String *Item_func_convert_tz::val_str(String *str)
  1544. {
  1545.   TIME time_tmp;
  1546.   if (get_date(&time_tmp, 0))
  1547.     return 0;
  1548.   
  1549.   if (str->alloc(20*MY_CHARSET_BIN_MB_MAXLEN))
  1550.   {
  1551.     null_value= 1;
  1552.     return 0;
  1553.   }
  1554.   
  1555.   make_datetime((DATE_TIME_FORMAT *) 0, &time_tmp, str);
  1556.   return str;
  1557. }
  1558. longlong Item_func_convert_tz::val_int()
  1559. {
  1560.   TIME time_tmp;
  1561.   if (get_date(&time_tmp, 0))
  1562.     return 0;
  1563.   
  1564.   return (longlong)TIME_to_ulonglong_datetime(&time_tmp);
  1565. }
  1566. bool Item_func_convert_tz::get_date(TIME *ltime,
  1567.        uint fuzzy_date __attribute__((unused)))
  1568. {
  1569.   my_time_t my_time_tmp;
  1570.   bool not_used;
  1571.   String str;
  1572.   if (!from_tz_cached)
  1573.   {
  1574.     from_tz= my_tz_find(args[1]->val_str(&str), tz_tables);
  1575.     from_tz_cached= args[1]->const_item();
  1576.   }
  1577.   if (!to_tz_cached)
  1578.   {
  1579.     to_tz= my_tz_find(args[2]->val_str(&str), tz_tables);
  1580.     to_tz_cached= args[2]->const_item();
  1581.   }
  1582.   if (from_tz==0 || to_tz==0 || get_arg0_date(ltime, 0))
  1583.   {
  1584.     null_value= 1;
  1585.     return 1;
  1586.   }
  1587.   /* Check if we in range where we treat datetime values as non-UTC */
  1588.   if (ltime->year < TIMESTAMP_MAX_YEAR && ltime->year > TIMESTAMP_MIN_YEAR ||
  1589.       ltime->year==TIMESTAMP_MAX_YEAR && ltime->month==1 && ltime->day==1 ||
  1590.       ltime->year==TIMESTAMP_MIN_YEAR && ltime->month==12 && ltime->day==31)
  1591.   {
  1592.     my_time_tmp= from_tz->TIME_to_gmt_sec(ltime, &not_used);
  1593.     if (my_time_tmp >= TIMESTAMP_MIN_VALUE && my_time_tmp <= TIMESTAMP_MAX_VALUE)
  1594.       to_tz->gmt_sec_to_TIME(ltime, my_time_tmp);
  1595.   }
  1596.   
  1597.   null_value= 0;
  1598.   return 0;
  1599. }
  1600. void Item_func_convert_tz::cleanup()
  1601. {
  1602.   from_tz_cached= to_tz_cached= 0;
  1603.   Item_date_func::cleanup();
  1604. }
  1605. void Item_date_add_interval::fix_length_and_dec()
  1606. {
  1607.   enum_field_types arg0_field_type;
  1608.   collation.set(&my_charset_bin);
  1609.   maybe_null=1;
  1610.   max_length=MAX_DATETIME_FULL_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  1611.   value.alloc(max_length);
  1612.   /*
  1613.     The field type for the result of an Item_date function is defined as
  1614.     follows:
  1615.     - If first arg is a MYSQL_TYPE_DATETIME result is MYSQL_TYPE_DATETIME
  1616.     - If first arg is a MYSQL_TYPE_DATE and the interval type uses hours,
  1617.       minutes or seconds then type is MYSQL_TYPE_DATETIME.
  1618.     - Otherwise the result is MYSQL_TYPE_STRING
  1619.       (This is because you can't know if the string contains a DATE, TIME or
  1620.       DATETIME argument)
  1621.   */
  1622.   cached_field_type= MYSQL_TYPE_STRING;
  1623.   arg0_field_type= args[0]->field_type();
  1624.   if (arg0_field_type == MYSQL_TYPE_DATETIME ||
  1625.       arg0_field_type == MYSQL_TYPE_TIMESTAMP)
  1626.     cached_field_type= MYSQL_TYPE_DATETIME;
  1627.   else if (arg0_field_type == MYSQL_TYPE_DATE)
  1628.   {
  1629.     if (int_type <= INTERVAL_DAY || int_type == INTERVAL_YEAR_MONTH)
  1630.       cached_field_type= arg0_field_type;
  1631.     else
  1632.       cached_field_type= MYSQL_TYPE_DATETIME;
  1633.   }
  1634. }
  1635. /* Here arg[1] is a Item_interval object */
  1636. bool Item_date_add_interval::get_date(TIME *ltime, uint fuzzy_date)
  1637. {
  1638.   long period,sign;
  1639.   INTERVAL interval;
  1640.   ltime->neg= 0;
  1641.   if (args[0]->get_date(ltime,0) ||
  1642.       get_interval_value(args[1],int_type,&value,&interval))
  1643.     goto null_date;
  1644.   sign= (interval.neg ? -1 : 1);
  1645.   if (date_sub_interval)
  1646.     sign = -sign;
  1647.   null_value=0;
  1648.   switch (int_type) {
  1649.   case INTERVAL_SECOND:
  1650.   case INTERVAL_SECOND_MICROSECOND:
  1651.   case INTERVAL_MICROSECOND:
  1652.   case INTERVAL_MINUTE:
  1653.   case INTERVAL_HOUR:
  1654.   case INTERVAL_MINUTE_MICROSECOND:
  1655.   case INTERVAL_MINUTE_SECOND:
  1656.   case INTERVAL_HOUR_MICROSECOND:
  1657.   case INTERVAL_HOUR_SECOND:
  1658.   case INTERVAL_HOUR_MINUTE:
  1659.   case INTERVAL_DAY_MICROSECOND:
  1660.   case INTERVAL_DAY_SECOND:
  1661.   case INTERVAL_DAY_MINUTE:
  1662.   case INTERVAL_DAY_HOUR:
  1663.   {
  1664.     longlong sec, days, daynr, microseconds, extra_sec;
  1665.     ltime->time_type= MYSQL_TIMESTAMP_DATETIME; // Return full date
  1666.     microseconds= ltime->second_part + sign*interval.second_part;
  1667.     extra_sec= microseconds/1000000L;
  1668.     microseconds= microseconds%1000000L;
  1669.     sec=((ltime->day-1)*3600*24L+ltime->hour*3600+ltime->minute*60+
  1670.  ltime->second +
  1671.  sign* (longlong) (interval.day*3600*24L +
  1672.                            interval.hour*LL(3600)+interval.minute*LL(60)+
  1673.                            interval.second))+ extra_sec;
  1674.     if (microseconds < 0)
  1675.     {
  1676.       microseconds+= LL(1000000);
  1677.       sec--;
  1678.     }
  1679.     days= sec/(3600*LL(24));
  1680.     sec-= days*3600*LL(24);
  1681.     if (sec < 0)
  1682.     {
  1683.       days--;
  1684.       sec+= 3600*LL(24);
  1685.     }
  1686.     ltime->second_part= (uint) microseconds;
  1687.     ltime->second= (uint) (sec % 60);
  1688.     ltime->minute= (uint) (sec/60 % 60);
  1689.     ltime->hour=   (uint) (sec/3600);
  1690.     daynr= calc_daynr(ltime->year,ltime->month,1) + days;
  1691.     /* Day number from year 0 to 9999-12-31 */
  1692.     if ((ulonglong) daynr >= MAX_DAY_NUMBER)
  1693.       goto null_date;
  1694.     get_date_from_daynr((long) daynr, &ltime->year, &ltime->month,
  1695.                         &ltime->day);
  1696.     break;
  1697.   }
  1698.   case INTERVAL_DAY:
  1699.     period= (calc_daynr(ltime->year,ltime->month,ltime->day) +
  1700.              sign * (long) interval.day);
  1701.     /* Daynumber from year 0 to 9999-12-31 */
  1702.     if ((ulong) period >= MAX_DAY_NUMBER)
  1703.       goto null_date;
  1704.     get_date_from_daynr((long) period,&ltime->year,&ltime->month,&ltime->day);
  1705.     break;
  1706.   case INTERVAL_YEAR:
  1707.     ltime->year+= sign * (long) interval.year;
  1708.     if ((ulong) ltime->year >= 10000L)
  1709.       goto null_date;
  1710.     if (ltime->month == 2 && ltime->day == 29 &&
  1711. calc_days_in_year(ltime->year) != 366)
  1712.       ltime->day=28; // Was leap-year
  1713.     break;
  1714.   case INTERVAL_YEAR_MONTH:
  1715.   case INTERVAL_MONTH:
  1716.     period= (ltime->year*12 + sign * (long) interval.year*12 +
  1717.      ltime->month-1 + sign * (long) interval.month);
  1718.     if ((ulong) period >= 120000L)
  1719.       goto null_date;
  1720.     ltime->year= (uint) (period / 12);
  1721.     ltime->month= (uint) (period % 12L)+1;
  1722.     /* Adjust day if the new month doesn't have enough days */
  1723.     if (ltime->day > days_in_month[ltime->month-1])
  1724.     {
  1725.       ltime->day = days_in_month[ltime->month-1];
  1726.       if (ltime->month == 2 && calc_days_in_year(ltime->year) == 366)
  1727. ltime->day++; // Leap-year
  1728.     }
  1729.     break;
  1730.   default:
  1731.     goto null_date;
  1732.   }
  1733.   return 0; // Ok
  1734.  null_date:
  1735.   return (null_value=1);
  1736. }
  1737. String *Item_date_add_interval::val_str(String *str)
  1738. {
  1739.   DBUG_ASSERT(fixed == 1);
  1740.   TIME ltime;
  1741.   enum date_time_format_types format;
  1742.   if (Item_date_add_interval::get_date(&ltime,0))
  1743.     return 0;
  1744.   if (ltime.time_type == MYSQL_TIMESTAMP_DATE)
  1745.     format= DATE_ONLY;
  1746.   else if (ltime.second_part)
  1747.     format= DATE_TIME_MICROSECOND;
  1748.   else
  1749.     format= DATE_TIME;
  1750.   if (!make_datetime(format, &ltime, str))
  1751.     return str;
  1752.   null_value=1;
  1753.   return 0;
  1754. }
  1755. longlong Item_date_add_interval::val_int()
  1756. {
  1757.   DBUG_ASSERT(fixed == 1);
  1758.   TIME ltime;
  1759.   longlong date;
  1760.   if (Item_date_add_interval::get_date(&ltime,0))
  1761.     return (longlong) 0;
  1762.   date = (ltime.year*100L + ltime.month)*100L + ltime.day;
  1763.   return ltime.time_type == MYSQL_TIMESTAMP_DATE ? date :
  1764.     ((date*100L + ltime.hour)*100L+ ltime.minute)*100L + ltime.second;
  1765. }
  1766. static const char *interval_names[]=
  1767. {
  1768.   "year", "month", "day", "hour", "minute",
  1769.   "second", "microsecond", "year_month",
  1770.   "day_hour", "day_minute", "day_second",
  1771.   "hour_minute", "hour_second", "minute_second",
  1772.   "day_microsecond", "hour_microsecond",
  1773.   "minute_microsecond", "second_microsecond"
  1774. };
  1775. void Item_date_add_interval::print(String *str)
  1776. {
  1777.   str->append('(');
  1778.   args[0]->print(str);
  1779.   str->append(date_sub_interval?" - interval ":" + interval ");
  1780.   args[1]->print(str);
  1781.   str->append(' ');
  1782.   str->append(interval_names[int_type]);
  1783.   str->append(')');
  1784. }
  1785. void Item_extract::print(String *str)
  1786. {
  1787.   str->append("extract(", 8);
  1788.   str->append(interval_names[int_type]);
  1789.   str->append(" from ", 6);
  1790.   args[0]->print(str);
  1791.   str->append(')');
  1792. }
  1793. void Item_extract::fix_length_and_dec()
  1794. {
  1795.   value.alloc(32); // alloc buffer
  1796.   maybe_null=1; // If wrong date
  1797.   switch (int_type) {
  1798.   case INTERVAL_YEAR: max_length=4; date_value=1; break;
  1799.   case INTERVAL_YEAR_MONTH: max_length=6; date_value=1; break;
  1800.   case INTERVAL_MONTH: max_length=2; date_value=1; break;
  1801.   case INTERVAL_DAY: max_length=2; date_value=1; break;
  1802.   case INTERVAL_DAY_HOUR: max_length=9; date_value=0; break;
  1803.   case INTERVAL_DAY_MINUTE: max_length=11; date_value=0; break;
  1804.   case INTERVAL_DAY_SECOND: max_length=13; date_value=0; break;
  1805.   case INTERVAL_HOUR: max_length=2; date_value=0; break;
  1806.   case INTERVAL_HOUR_MINUTE: max_length=4; date_value=0; break;
  1807.   case INTERVAL_HOUR_SECOND: max_length=6; date_value=0; break;
  1808.   case INTERVAL_MINUTE: max_length=2; date_value=0; break;
  1809.   case INTERVAL_MINUTE_SECOND: max_length=4; date_value=0; break;
  1810.   case INTERVAL_SECOND: max_length=2; date_value=0; break;
  1811.   case INTERVAL_MICROSECOND: max_length=2; date_value=0; break;
  1812.   case INTERVAL_DAY_MICROSECOND: max_length=20; date_value=0; break;
  1813.   case INTERVAL_HOUR_MICROSECOND: max_length=13; date_value=0; break;
  1814.   case INTERVAL_MINUTE_MICROSECOND: max_length=11; date_value=0; break;
  1815.   case INTERVAL_SECOND_MICROSECOND: max_length=9; date_value=0; break;
  1816.   }
  1817. }
  1818. longlong Item_extract::val_int()
  1819. {
  1820.   DBUG_ASSERT(fixed == 1);
  1821.   TIME ltime;
  1822.   long neg;
  1823.   if (date_value)
  1824.   {
  1825.     if (get_arg0_date(&ltime,1))
  1826.       return 0;
  1827.     neg=1;
  1828.   }
  1829.   else
  1830.   {
  1831.     String *res= args[0]->val_str(&value);
  1832.     if (!res || str_to_time_with_warn(res->ptr(), res->length(), &ltime))
  1833.     {
  1834.       null_value=1;
  1835.       return 0;
  1836.     }
  1837.     neg= ltime.neg ? -1 : 1;
  1838.     null_value=0;
  1839.   }
  1840.   switch (int_type) {
  1841.   case INTERVAL_YEAR: return ltime.year;
  1842.   case INTERVAL_YEAR_MONTH: return ltime.year*100L+ltime.month;
  1843.   case INTERVAL_MONTH: return ltime.month;
  1844.   case INTERVAL_DAY: return ltime.day;
  1845.   case INTERVAL_DAY_HOUR: return (long) (ltime.day*100L+ltime.hour)*neg;
  1846.   case INTERVAL_DAY_MINUTE: return (long) (ltime.day*10000L+
  1847.        ltime.hour*100L+
  1848.        ltime.minute)*neg;
  1849.   case INTERVAL_DAY_SECOND:  return ((longlong) ltime.day*1000000L+
  1850.  (longlong) (ltime.hour*10000L+
  1851.      ltime.minute*100+
  1852.      ltime.second))*neg;
  1853.   case INTERVAL_HOUR: return (long) ltime.hour*neg;
  1854.   case INTERVAL_HOUR_MINUTE: return (long) (ltime.hour*100+ltime.minute)*neg;
  1855.   case INTERVAL_HOUR_SECOND: return (long) (ltime.hour*10000+ltime.minute*100+
  1856.        ltime.second)*neg;
  1857.   case INTERVAL_MINUTE: return (long) ltime.minute*neg;
  1858.   case INTERVAL_MINUTE_SECOND: return (long) (ltime.minute*100+ltime.second)*neg;
  1859.   case INTERVAL_SECOND: return (long) ltime.second*neg;
  1860.   case INTERVAL_MICROSECOND: return (long) ltime.second_part*neg;
  1861.   case INTERVAL_DAY_MICROSECOND: return (((longlong)ltime.day*1000000L +
  1862.   (longlong)ltime.hour*10000L +
  1863.   ltime.minute*100 +
  1864.   ltime.second)*1000000L +
  1865.  ltime.second_part)*neg;
  1866.   case INTERVAL_HOUR_MICROSECOND: return (((longlong)ltime.hour*10000L +
  1867.    ltime.minute*100 +
  1868.    ltime.second)*1000000L +
  1869.   ltime.second_part)*neg;
  1870.   case INTERVAL_MINUTE_MICROSECOND: return (((longlong)(ltime.minute*100+
  1871. ltime.second))*1000000L+
  1872.     ltime.second_part)*neg;
  1873.   case INTERVAL_SECOND_MICROSECOND: return ((longlong)ltime.second*1000000L+
  1874.     ltime.second_part)*neg;
  1875.   }
  1876.   return 0; // Impossible
  1877. }
  1878. bool Item_extract::eq(const Item *item, bool binary_cmp) const
  1879. {
  1880.   if (this == item)
  1881.     return 1;
  1882.   if (item->type() != FUNC_ITEM ||
  1883.       func_name() != ((Item_func*)item)->func_name())
  1884.     return 0;
  1885.   Item_extract* ie= (Item_extract*)item;
  1886.   if (ie->int_type != int_type)
  1887.     return 0;
  1888.   if (!args[0]->eq(ie->args[0], binary_cmp))
  1889.       return 0;
  1890.   return 1;
  1891. }
  1892. bool Item_char_typecast::eq(const Item *item, bool binary_cmp) const
  1893. {
  1894.   if (this == item)
  1895.     return 1;
  1896.   if (item->type() != FUNC_ITEM ||
  1897.       func_name() != ((Item_func*)item)->func_name())
  1898.     return 0;
  1899.   Item_char_typecast *cast= (Item_char_typecast*)item;
  1900.   if (cast_length != cast->cast_length ||
  1901.       cast_cs     != cast->cast_cs)
  1902.     return 0;
  1903.   if (!args[0]->eq(cast->args[0], binary_cmp))
  1904.       return 0;
  1905.   return 1;
  1906. }
  1907. void Item_typecast::print(String *str)
  1908. {
  1909.   str->append("cast(", 5);
  1910.   args[0]->print(str);
  1911.   str->append(" as ", 4);
  1912.   str->append(cast_type());
  1913.   str->append(')');
  1914. }
  1915. void Item_char_typecast::print(String *str)
  1916. {
  1917.   str->append("cast(", 5);
  1918.   args[0]->print(str);
  1919.   str->append(" as char", 8);
  1920.   if (cast_length >= 0)
  1921.   {
  1922.     str->append('(');
  1923.     char buffer[20];
  1924.     // my_charset_bin is good enough for numbers
  1925.     String st(buffer, sizeof(buffer), &my_charset_bin);
  1926.     st.set((ulonglong)cast_length, &my_charset_bin);
  1927.     str->append(st);
  1928.     str->append(')');
  1929.   }
  1930.   if (cast_cs)
  1931.   {
  1932.     str->append(" charset ", 9);
  1933.     str->append(cast_cs->name);
  1934.   }
  1935.   str->append(')');
  1936. }
  1937. String *Item_char_typecast::val_str(String *str)
  1938. {
  1939.   DBUG_ASSERT(fixed == 1);
  1940.   String *res;
  1941.   uint32 length;
  1942.   if (!charset_conversion)
  1943.   {
  1944.     if (!(res= args[0]->val_str(str)))
  1945.     {
  1946.       null_value= 1;
  1947.       return 0;
  1948.     }
  1949.   }
  1950.   else
  1951.   {
  1952.     // Convert character set if differ
  1953.     uint dummy_errors;
  1954.     if (!(res= args[0]->val_str(&tmp_value)) ||
  1955. str->copy(res->ptr(), res->length(), res->charset(),
  1956.                   cast_cs, &dummy_errors))
  1957.     {
  1958.       null_value= 1;
  1959.       return 0;
  1960.     }
  1961.     res= str;
  1962.   }
  1963.   res->set_charset(cast_cs);
  1964.   /*
  1965.      Cut the tail if cast with length
  1966.      and the result is longer than cast length, e.g.
  1967.      CAST('string' AS CHAR(1))
  1968.   */
  1969.   if (cast_length >= 0 &&
  1970.       (res->length() > (length= (uint32) res->charpos(cast_length))))
  1971.   { // Safe even if const arg
  1972.     if (!res->alloced_length())
  1973.     { // Don't change const str
  1974.       str_value= *res; // Not malloced string
  1975.       res= &str_value;
  1976.     }
  1977.     res->length((uint) length);
  1978.   }
  1979.   null_value= 0;
  1980.   return res;
  1981. }
  1982. void Item_char_typecast::fix_length_and_dec()
  1983. {
  1984.   uint32 char_length;
  1985.   /* 
  1986.      We always force character set conversion if cast_cs
  1987.      is a multi-byte character set. It garantees that the
  1988.      result of CAST is a well-formed string.
  1989.      For single-byte character sets we allow just to copy
  1990.      from the argument. A single-byte character sets string
  1991.      is always well-formed. 
  1992.   */
  1993.   charset_conversion= (cast_cs->mbmaxlen > 1) ||
  1994.                       !my_charset_same(args[0]->collation.collation, cast_cs) &&
  1995.                       args[0]->collation.collation != &my_charset_bin &&
  1996.                       cast_cs != &my_charset_bin;
  1997.   collation.set(cast_cs, DERIVATION_IMPLICIT);
  1998.   char_length= (cast_length >= 0) ? cast_length : 
  1999.        args[0]->max_length/args[0]->collation.collation->mbmaxlen;
  2000.   max_length= char_length * cast_cs->mbmaxlen;
  2001. }
  2002. String *Item_datetime_typecast::val_str(String *str)
  2003. {
  2004.   DBUG_ASSERT(fixed == 1);
  2005.   TIME ltime;
  2006.   if (!get_arg0_date(&ltime,1) &&
  2007.       !make_datetime(ltime.second_part ? DATE_TIME_MICROSECOND : DATE_TIME, 
  2008.      &ltime, str))
  2009.     return str;
  2010.   null_value=1;
  2011.   return 0;
  2012. }
  2013. bool Item_time_typecast::get_time(TIME *ltime)
  2014. {
  2015.   bool res= get_arg0_time(ltime);
  2016.   /*
  2017.     For MYSQL_TIMESTAMP_TIME value we can have non-zero day part,
  2018.     which we should not lose.
  2019.   */
  2020.   if (ltime->time_type == MYSQL_TIMESTAMP_DATETIME)
  2021.     ltime->year= ltime->month= ltime->day= 0;
  2022.   ltime->time_type= MYSQL_TIMESTAMP_TIME;
  2023.   return res;
  2024. }
  2025. String *Item_time_typecast::val_str(String *str)
  2026. {
  2027.   DBUG_ASSERT(fixed == 1);
  2028.   TIME ltime;
  2029.   if (!get_arg0_time(&ltime) &&
  2030.       !make_datetime(ltime.second_part ? TIME_MICROSECOND : TIME_ONLY,
  2031.      &ltime, str))
  2032.     return str;
  2033.   null_value=1;
  2034.   return 0;
  2035. }
  2036. bool Item_date_typecast::get_date(TIME *ltime, uint fuzzy_date)
  2037. {
  2038.   bool res= get_arg0_date(ltime,1);
  2039.   ltime->hour= ltime->minute= ltime->second= ltime->second_part= 0;
  2040.   ltime->time_type= MYSQL_TIMESTAMP_DATE;
  2041.   return res;
  2042. }
  2043. String *Item_date_typecast::val_str(String *str)
  2044. {
  2045.   DBUG_ASSERT(fixed == 1);
  2046.   TIME ltime;
  2047.   if (!get_arg0_date(&ltime,1) && !str->alloc(11))
  2048.   {
  2049.     make_date((DATE_TIME_FORMAT *) 0, &ltime, str);
  2050.     return str;
  2051.   }
  2052.   null_value=1;
  2053.   return 0;
  2054. }
  2055. /*
  2056.   MAKEDATE(a,b) is a date function that creates a date value 
  2057.   from a year and day value.
  2058. */
  2059. String *Item_func_makedate::val_str(String *str)
  2060. {
  2061.   DBUG_ASSERT(fixed == 1);
  2062.   TIME l_time;
  2063.   long daynr=  (long) args[1]->val_int();
  2064.   long yearnr= (long) args[0]->val_int();
  2065.   long days;
  2066.   if (args[0]->null_value || args[1]->null_value ||
  2067.       yearnr < 0 || daynr <= 0)
  2068.     goto err;
  2069.   days= calc_daynr(yearnr,1,1) + daynr - 1;
  2070.   /* Day number from year 0 to 9999-12-31 */
  2071.   if (days >= 0 && days < MAX_DAY_NUMBER)
  2072.   {
  2073.     null_value=0;
  2074.     get_date_from_daynr(days,&l_time.year,&l_time.month,&l_time.day);
  2075.     if (str->alloc(11))
  2076.       goto err;
  2077.     make_date((DATE_TIME_FORMAT *) 0, &l_time, str);
  2078.     return str;
  2079.   }
  2080. err:
  2081.   null_value=1;
  2082.   return 0;
  2083. }
  2084. void Item_func_add_time::fix_length_and_dec()
  2085. {
  2086.   enum_field_types arg0_field_type;
  2087.   decimals=0;
  2088.   max_length=MAX_DATETIME_FULL_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  2089.   maybe_null= 1;
  2090.   /*
  2091.     The field type for the result of an Item_func_add_time function is defined
  2092.     as follows:
  2093.     - If first arg is a MYSQL_TYPE_DATETIME or MYSQL_TYPE_TIMESTAMP 
  2094.       result is MYSQL_TYPE_DATETIME
  2095.     - If first arg is a MYSQL_TYPE_TIME result is MYSQL_TYPE_TIME
  2096.     - Otherwise the result is MYSQL_TYPE_STRING
  2097.   */
  2098.   cached_field_type= MYSQL_TYPE_STRING;
  2099.   arg0_field_type= args[0]->field_type();
  2100.   if (arg0_field_type == MYSQL_TYPE_DATE ||
  2101.       arg0_field_type == MYSQL_TYPE_DATETIME ||
  2102.       arg0_field_type == MYSQL_TYPE_TIMESTAMP)
  2103.     cached_field_type= MYSQL_TYPE_DATETIME;
  2104.   else if (arg0_field_type == MYSQL_TYPE_TIME)
  2105.     cached_field_type= MYSQL_TYPE_TIME;
  2106. }
  2107. /*
  2108.   ADDTIME(t,a) and SUBTIME(t,a) are time functions that calculate a
  2109.   time/datetime value 
  2110.   t: time_or_datetime_expression
  2111.   a: time_expression
  2112.   
  2113.   Result: Time value or datetime value
  2114. */
  2115. String *Item_func_add_time::val_str(String *str)
  2116. {
  2117.   DBUG_ASSERT(fixed == 1);
  2118.   TIME l_time1, l_time2, l_time3;
  2119.   bool is_time= 0;
  2120.   long days, microseconds;
  2121.   longlong seconds;
  2122.   int l_sign= sign;
  2123.   null_value=0;
  2124.   if (is_date)                        // TIMESTAMP function
  2125.   {
  2126.     if (get_arg0_date(&l_time1,1) || 
  2127.         args[1]->get_time(&l_time2) ||
  2128.         l_time1.time_type == MYSQL_TIMESTAMP_TIME || 
  2129.         l_time2.time_type != MYSQL_TIMESTAMP_TIME)
  2130.       goto null_date;
  2131.   }
  2132.   else                                // ADDTIME function
  2133.   {
  2134.     if (args[0]->get_time(&l_time1) || 
  2135.         args[1]->get_time(&l_time2) ||
  2136.         l_time2.time_type == MYSQL_TIMESTAMP_DATETIME)
  2137.       goto null_date;
  2138.     is_time= (l_time1.time_type == MYSQL_TIMESTAMP_TIME);
  2139.   }
  2140.   if (l_time1.neg != l_time2.neg)
  2141.     l_sign= -l_sign;
  2142.   l_time3.neg= calc_time_diff(&l_time1, &l_time2, -l_sign,
  2143.       &seconds, &microseconds);
  2144.   /*
  2145.     If first argument was negative and diff between arguments
  2146.     is non-zero we need to swap sign to get proper result.
  2147.   */
  2148.   if (l_time1.neg && (seconds || microseconds))
  2149.     l_time3.neg= 1-l_time3.neg;         // Swap sign of result
  2150.   if (!is_time && l_time3.neg)
  2151.     goto null_date;
  2152.   days= (long)(seconds/86400L);
  2153.   calc_time_from_sec(&l_time3, (long)(seconds%86400L), microseconds);
  2154.   if (!is_time)
  2155.   {
  2156.     get_date_from_daynr(days,&l_time3.year,&l_time3.month,&l_time3.day);
  2157.     if (l_time3.day &&
  2158. !make_datetime(l_time1.second_part || l_time2.second_part ?
  2159.        DATE_TIME_MICROSECOND : DATE_TIME,
  2160.        &l_time3, str))
  2161.       return str;
  2162.     goto null_date;
  2163.   }
  2164.   
  2165.   l_time3.hour+= days*24;
  2166.   if (!make_datetime(l_time1.second_part || l_time2.second_part ?
  2167.      TIME_MICROSECOND : TIME_ONLY,
  2168.      &l_time3, str))
  2169.     return str;
  2170. null_date:
  2171.   null_value=1;
  2172.   return 0;
  2173. }
  2174. void Item_func_add_time::print(String *str)
  2175. {
  2176.   if (is_date)
  2177.   {
  2178.     DBUG_ASSERT(sign > 0);
  2179.     str->append("timestamp(", 10);
  2180.   }
  2181.   else
  2182.   {
  2183.     if (sign > 0)
  2184.       str->append("addtime(", 8);
  2185.     else
  2186.       str->append("subtime(", 8);
  2187.   }
  2188.   args[0]->print(str);
  2189.   str->append(',');
  2190.   args[0]->print(str);
  2191.   str->append(')');
  2192. }
  2193. /*
  2194.   TIMEDIFF(t,s) is a time function that calculates the 
  2195.   time value between a start and end time.
  2196.   t and s: time_or_datetime_expression
  2197.   Result: Time value
  2198. */
  2199. String *Item_func_timediff::val_str(String *str)
  2200. {
  2201.   DBUG_ASSERT(fixed == 1);
  2202.   longlong seconds;
  2203.   long microseconds;
  2204.   int l_sign= 1;
  2205.   TIME l_time1 ,l_time2, l_time3;
  2206.   null_value= 0;  
  2207.   if (args[0]->get_time(&l_time1) ||
  2208.       args[1]->get_time(&l_time2) ||
  2209.       l_time1.time_type != l_time2.time_type)
  2210.     goto null_date;
  2211.   if (l_time1.neg != l_time2.neg)
  2212.     l_sign= -l_sign;
  2213.   l_time3.neg= calc_time_diff(&l_time1, &l_time2, l_sign,
  2214.       &seconds, &microseconds);
  2215.   /*
  2216.     For MYSQL_TIMESTAMP_TIME only:
  2217.       If first argument was negative and diff between arguments
  2218.       is non-zero we need to swap sign to get proper result.
  2219.   */
  2220.   if (l_time1.neg && (seconds || microseconds))
  2221.     l_time3.neg= 1-l_time3.neg;         // Swap sign of result
  2222.   calc_time_from_sec(&l_time3, (long) seconds, microseconds);
  2223.   if (!make_datetime(l_time1.second_part || l_time2.second_part ?
  2224.      TIME_MICROSECOND : TIME_ONLY,
  2225.      &l_time3, str))
  2226.     return str;
  2227. null_date:
  2228.   null_value=1;
  2229.   return 0;
  2230. }
  2231. /*
  2232.   MAKETIME(h,m,s) is a time function that calculates a time value 
  2233.   from the total number of hours, minutes, and seconds.
  2234.   Result: Time value
  2235. */
  2236. String *Item_func_maketime::val_str(String *str)
  2237. {
  2238.   DBUG_ASSERT(fixed == 1);
  2239.   TIME ltime;
  2240.   long hour=   (long) args[0]->val_int();
  2241.   long minute= (long) args[1]->val_int();
  2242.   long second= (long) args[2]->val_int();
  2243.   if ((null_value=(args[0]->null_value || 
  2244.    args[1]->null_value ||
  2245.    args[2]->null_value || 
  2246.    minute > 59 || minute < 0 || 
  2247.    second > 59 || second < 0 ||
  2248.    str->alloc(19))))
  2249.     return 0;
  2250.   ltime.neg= 0;
  2251.   if (hour < 0)
  2252.   {
  2253.     ltime.neg= 1;
  2254.     hour= -hour;
  2255.   }
  2256.   ltime.hour=   (ulong) hour;
  2257.   ltime.minute= (ulong) minute;
  2258.   ltime.second= (ulong) second;
  2259.   make_time((DATE_TIME_FORMAT *) 0, &ltime, str);
  2260.   return str;
  2261. }
  2262. /*
  2263.   MICROSECOND(a) is a function ( extraction) that extracts the microseconds
  2264.   from a.
  2265.   a: Datetime or time value
  2266.   Result: int value
  2267. */
  2268. longlong Item_func_microsecond::val_int()
  2269. {
  2270.   DBUG_ASSERT(fixed == 1);
  2271.   TIME ltime;
  2272.   if (!get_arg0_time(&ltime))
  2273.     return ltime.second_part;
  2274.   return 0;
  2275. }
  2276. String *Item_func_get_format::val_str(String *str)
  2277. {
  2278.   DBUG_ASSERT(fixed == 1);
  2279.   const char *format_name;
  2280.   KNOWN_DATE_TIME_FORMAT *format;
  2281.   String *val= args[0]->val_str(str);
  2282.   ulong val_len;
  2283.   if ((null_value= args[0]->null_value))
  2284.     return 0;    
  2285.   val_len= val->length();
  2286.   for (format= &known_date_time_formats[0];
  2287.        (format_name= format->format_name);
  2288.        format++)
  2289.   {
  2290.     uint format_name_len;
  2291.     format_name_len= strlen(format_name);
  2292.     if (val_len == format_name_len &&
  2293. !my_strnncoll(&my_charset_latin1, 
  2294.       (const uchar *) val->ptr(), val_len, 
  2295.       (const uchar *) format_name, val_len))
  2296.     {
  2297.       const char *format_str= get_date_time_format_str(format, type);
  2298.       str->set(format_str, strlen(format_str), &my_charset_bin);
  2299.       return str;
  2300.     }
  2301.   }
  2302.   null_value= 1;
  2303.   return 0;
  2304. }
  2305. void Item_func_get_format::print(String *str)
  2306. {
  2307.   str->append(func_name());
  2308.   str->append('(');
  2309.   switch (type) {
  2310.   case MYSQL_TIMESTAMP_DATE:
  2311.     str->append("DATE, ");
  2312.     break;
  2313.   case MYSQL_TIMESTAMP_DATETIME:
  2314.     str->append("DATETIME, ");
  2315.     break;
  2316.   case MYSQL_TIMESTAMP_TIME:
  2317.     str->append("TIME, ");
  2318.     break;
  2319.   default:
  2320.     DBUG_ASSERT(0);
  2321.   }
  2322.   args[0]->print(str);
  2323.   str->append(')');
  2324. }
  2325. /*
  2326.   Get type of datetime value (DATE/TIME/...) which will be produced
  2327.   according to format string.
  2328.   SYNOPSIS
  2329.     get_date_time_result_type()
  2330.       format - format string
  2331.       length - length of format string
  2332.   NOTE
  2333.     We don't process day format's characters('D', 'd', 'e') because day
  2334.     may be a member of all date/time types.
  2335.     Format specifiers supported by this function should be in sync with
  2336.     specifiers supported by extract_date_time() function.
  2337.   RETURN VALUE
  2338.     One of date_time_format_types values:
  2339.     DATE_TIME_MICROSECOND, DATE_TIME, DATE_ONLY, TIME_MICROSECOND, TIME_ONLY
  2340. */
  2341. static date_time_format_types
  2342. get_date_time_result_type(const char *format, uint length)
  2343. {
  2344.   const char *time_part_frms= "HISThiklrs";
  2345.   const char *date_part_frms= "MVUXYWabcjmvuxyw";
  2346.   bool date_part_used= 0, time_part_used= 0, frac_second_used= 0;
  2347.   
  2348.   const char *val= format;
  2349.   const char *end= format + length;
  2350.   for (; val != end && val != end; val++)
  2351.   {
  2352.     if (*val == '%' && val+1 != end)
  2353.     {
  2354.       val++;
  2355.       if (*val == 'f')
  2356.         frac_second_used= time_part_used= 1;
  2357.       else if (!time_part_used && strchr(time_part_frms, *val))
  2358. time_part_used= 1;
  2359.       else if (!date_part_used && strchr(date_part_frms, *val))
  2360. date_part_used= 1;
  2361.       if (date_part_used && frac_second_used)
  2362.       {
  2363.         /*
  2364.           frac_second_used implies time_part_used, and thus we already
  2365.           have all types of date-time components and can end our search.
  2366.         */
  2367. return DATE_TIME_MICROSECOND;
  2368.       }
  2369.     }
  2370.   }
  2371.   /* We don't have all three types of date-time components */
  2372.   if (frac_second_used)
  2373.     return TIME_MICROSECOND;
  2374.   if (time_part_used)
  2375.   {
  2376.     if (date_part_used)
  2377.       return DATE_TIME;
  2378.     return TIME_ONLY;
  2379.   }
  2380.   return DATE_ONLY;
  2381. }
  2382. Field *Item_func_str_to_date::tmp_table_field(TABLE *t_arg)
  2383. {
  2384.   if (cached_field_type == MYSQL_TYPE_TIME)
  2385.     return (new Field_time(maybe_null, name, t_arg, &my_charset_bin));
  2386.   if (cached_field_type == MYSQL_TYPE_DATE)
  2387.     return (new Field_date(maybe_null, name, t_arg, &my_charset_bin));
  2388.   if (cached_field_type == MYSQL_TYPE_DATETIME)
  2389.     return (new Field_datetime(maybe_null, name, t_arg, &my_charset_bin));
  2390.   return (new Field_string(max_length, maybe_null, name, t_arg, &my_charset_bin));
  2391. }
  2392. void Item_func_str_to_date::fix_length_and_dec()
  2393. {
  2394.   char format_buff[64];
  2395.   String format_str(format_buff, sizeof(format_buff), &my_charset_bin);
  2396.   String *format;
  2397.   maybe_null= 1;
  2398.   decimals=0;
  2399.   cached_field_type= MYSQL_TYPE_STRING;
  2400.   max_length= MAX_DATETIME_FULL_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  2401.   cached_timestamp_type= MYSQL_TIMESTAMP_NONE;
  2402.   if ((const_item= args[1]->const_item()))
  2403.   {
  2404.     format= args[1]->val_str(&format_str);
  2405.     cached_format_type= get_date_time_result_type(format->ptr(),
  2406.                                                   format->length());
  2407.     switch (cached_format_type) {
  2408.     case DATE_ONLY:
  2409.       cached_timestamp_type= MYSQL_TIMESTAMP_DATE;
  2410.       cached_field_type= MYSQL_TYPE_DATE; 
  2411.       max_length= MAX_DATE_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  2412.       break;
  2413.     case TIME_ONLY:
  2414.     case TIME_MICROSECOND:
  2415.       cached_timestamp_type= MYSQL_TIMESTAMP_TIME;
  2416.       cached_field_type= MYSQL_TYPE_TIME; 
  2417.       max_length= MAX_TIME_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  2418.       break;
  2419.     default:
  2420.       cached_timestamp_type= MYSQL_TIMESTAMP_DATETIME;
  2421.       cached_field_type= MYSQL_TYPE_DATETIME; 
  2422.       break;
  2423.     }
  2424.   }
  2425. }
  2426. bool Item_func_str_to_date::get_date(TIME *ltime, uint fuzzy_date)
  2427. {
  2428.   DATE_TIME_FORMAT date_time_format;
  2429.   char val_buff[64], format_buff[64];
  2430.   String val_str(val_buff, sizeof(val_buff), &my_charset_bin), *val;
  2431.   String format_str(format_buff, sizeof(format_buff), &my_charset_bin), *format;
  2432.   val=    args[0]->val_str(&val_str);
  2433.   format= args[1]->val_str(&format_str);
  2434.   if (args[0]->null_value || args[1]->null_value)
  2435.     goto null_date;
  2436.   null_value= 0;
  2437.   bzero((char*) ltime, sizeof(ltime));
  2438.   date_time_format.format.str=    (char*) format->ptr();
  2439.   date_time_format.format.length= format->length();
  2440.   if (extract_date_time(&date_time_format, val->ptr(), val->length(),
  2441. ltime, cached_timestamp_type, 0))
  2442.     goto null_date;
  2443.   if (cached_timestamp_type == MYSQL_TIMESTAMP_TIME && ltime->day)
  2444.   {
  2445.     /*
  2446.       Day part for time type can be nonzero value and so 
  2447.       we should add hours from day part to hour part to
  2448.       keep valid time value.
  2449.     */
  2450.     ltime->hour+= ltime->day*24;
  2451.     ltime->day= 0;
  2452.   }
  2453.   return 0;
  2454. null_date:
  2455.   return (null_value=1);
  2456. }
  2457. String *Item_func_str_to_date::val_str(String *str)
  2458. {
  2459.   DBUG_ASSERT(fixed == 1);
  2460.   TIME ltime;
  2461.   if (Item_func_str_to_date::get_date(&ltime, TIME_FUZZY_DATE))
  2462.     return 0;
  2463.   if (!make_datetime((const_item ? cached_format_type :
  2464.      (ltime.second_part ? DATE_TIME_MICROSECOND : DATE_TIME)),
  2465.      &ltime, str))
  2466.     return str;
  2467.   return 0;
  2468. }
  2469. bool Item_func_last_day::get_date(TIME *ltime, uint fuzzy_date)
  2470. {
  2471.   if (get_arg0_date(ltime, fuzzy_date & ~TIME_FUZZY_DATE))
  2472.     return 1;
  2473.   uint month_idx= ltime->month-1;
  2474.   ltime->day= days_in_month[month_idx];
  2475.   if ( month_idx == 1 && calc_days_in_year(ltime->year) == 366)
  2476.     ltime->day= 29;
  2477.   ltime->time_type= MYSQL_TIMESTAMP_DATE;
  2478.   return 0;
  2479. }