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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult 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. /* Function items used by mysql */
  14. #ifdef USE_PRAGMA_INTERFACE
  15. #pragma interface /* gcc class implementation */
  16. #endif
  17. enum date_time_format_types 
  18.   TIME_ONLY= 0, TIME_MICROSECOND, DATE_ONLY, DATE_TIME, DATE_TIME_MICROSECOND
  19. };
  20. class Item_func_period_add :public Item_int_func
  21. {
  22. public:
  23.   Item_func_period_add(Item *a,Item *b) :Item_int_func(a,b) {}
  24.   longlong val_int();
  25.   const char *func_name() const { return "period_add"; }
  26.   void fix_length_and_dec() 
  27.   { 
  28.     max_length=6*MY_CHARSET_BIN_MB_MAXLEN;
  29.   }
  30. };
  31. class Item_func_period_diff :public Item_int_func
  32. {
  33. public:
  34.   Item_func_period_diff(Item *a,Item *b) :Item_int_func(a,b) {}
  35.   longlong val_int();
  36.   const char *func_name() const { return "period_diff"; }
  37.   void fix_length_and_dec()
  38.   { 
  39.     decimals=0;
  40.     max_length=6*MY_CHARSET_BIN_MB_MAXLEN;
  41.   }
  42. };
  43. class Item_func_to_days :public Item_int_func
  44. {
  45. public:
  46.   Item_func_to_days(Item *a) :Item_int_func(a) {}
  47.   longlong val_int();
  48.   const char *func_name() const { return "to_days"; }
  49.   void fix_length_and_dec() 
  50.   { 
  51.     decimals=0; 
  52.     max_length=6*MY_CHARSET_BIN_MB_MAXLEN;
  53.     maybe_null=1; 
  54.   }
  55. };
  56. class Item_func_dayofmonth :public Item_int_func
  57. {
  58. public:
  59.   Item_func_dayofmonth(Item *a) :Item_int_func(a) {}
  60.   longlong val_int();
  61.   const char *func_name() const { return "dayofmonth"; }
  62.   void fix_length_and_dec() 
  63.   { 
  64.     decimals=0; 
  65.     max_length=2*MY_CHARSET_BIN_MB_MAXLEN;
  66.     maybe_null=1; 
  67.   }
  68. };
  69. class Item_func_month :public Item_func
  70. {
  71. public:
  72.   Item_func_month(Item *a) :Item_func(a) {}
  73.   longlong val_int();
  74.   double val()
  75.   { DBUG_ASSERT(fixed == 1); return (double) Item_func_month::val_int(); }
  76.   String *val_str(String *str) 
  77.   {
  78.     str->set(val_int(), &my_charset_bin);
  79.     return null_value ? 0 : str;
  80.   }
  81.   const char *func_name() const { return "month"; }
  82.   enum Item_result result_type () const { return INT_RESULT; }
  83.   void fix_length_and_dec() 
  84.   { 
  85.     collation.set(&my_charset_bin);
  86.     decimals=0;
  87.     max_length=2*MY_CHARSET_BIN_MB_MAXLEN;
  88.     maybe_null=1; 
  89.   }
  90. };
  91. class Item_func_monthname :public Item_func_month
  92. {
  93. public:
  94.   Item_func_monthname(Item *a) :Item_func_month(a) {}
  95.   const char *func_name() const { return "monthname"; }
  96.   String *val_str(String *str);
  97.   enum Item_result result_type () const { return STRING_RESULT; }
  98.   void fix_length_and_dec() 
  99.   {
  100.     collation.set(&my_charset_bin);
  101.     decimals=0;
  102.     max_length=10*my_charset_bin.mbmaxlen;
  103.     maybe_null=1; 
  104.   }
  105. };
  106. class Item_func_dayofyear :public Item_int_func
  107. {
  108. public:
  109.   Item_func_dayofyear(Item *a) :Item_int_func(a) {}
  110.   longlong val_int();
  111.   const char *func_name() const { return "dayofyear"; }
  112.   void fix_length_and_dec() 
  113.   { 
  114.     decimals=0;
  115.     max_length=3*MY_CHARSET_BIN_MB_MAXLEN;
  116.     maybe_null=1; 
  117.   }
  118. };
  119. class Item_func_hour :public Item_int_func
  120. {
  121. public:
  122.   Item_func_hour(Item *a) :Item_int_func(a) {}
  123.   longlong val_int();
  124.   const char *func_name() const { return "hour"; }
  125.   void fix_length_and_dec()
  126.   {
  127.     decimals=0;
  128.     max_length=2*MY_CHARSET_BIN_MB_MAXLEN;
  129.     maybe_null=1;
  130.   }
  131. };
  132. class Item_func_minute :public Item_int_func
  133. {
  134. public:
  135.   Item_func_minute(Item *a) :Item_int_func(a) {}
  136.   longlong val_int();
  137.   const char *func_name() const { return "minute"; }
  138.   void fix_length_and_dec()
  139.   {
  140.     decimals=0;
  141.     max_length=2*MY_CHARSET_BIN_MB_MAXLEN;
  142.     maybe_null=1;
  143.   }
  144. };
  145. class Item_func_quarter :public Item_int_func
  146. {
  147. public:
  148.   Item_func_quarter(Item *a) :Item_int_func(a) {}
  149.   longlong val_int();
  150.   const char *func_name() const { return "quarter"; }
  151.   void fix_length_and_dec()
  152.   { 
  153.      decimals=0;
  154.      max_length=1*MY_CHARSET_BIN_MB_MAXLEN;
  155.      maybe_null=1;
  156.   }
  157. };
  158. class Item_func_second :public Item_int_func
  159. {
  160. public:
  161.   Item_func_second(Item *a) :Item_int_func(a) {}
  162.   longlong val_int();
  163.   const char *func_name() const { return "second"; }
  164.   void fix_length_and_dec() 
  165.   { 
  166.     decimals=0;
  167.     max_length=2*MY_CHARSET_BIN_MB_MAXLEN;
  168.     maybe_null=1;
  169.   }
  170. };
  171. class Item_func_week :public Item_int_func
  172. {
  173. public:
  174.   Item_func_week(Item *a,Item *b) :Item_int_func(a,b) {}
  175.   longlong val_int();
  176.   const char *func_name() const { return "week"; }
  177.   void fix_length_and_dec()
  178.   { 
  179.     decimals=0;
  180.     max_length=2*MY_CHARSET_BIN_MB_MAXLEN;
  181.     maybe_null=1;
  182.   }
  183. };
  184. class Item_func_yearweek :public Item_int_func
  185. {
  186. public:
  187.   Item_func_yearweek(Item *a,Item *b) :Item_int_func(a,b) {}
  188.   longlong val_int();
  189.   const char *func_name() const { return "yearweek"; }
  190.   void fix_length_and_dec()
  191.   { 
  192.     decimals=0;
  193.     max_length=6*MY_CHARSET_BIN_MB_MAXLEN;
  194.     maybe_null=1;
  195.   }
  196. };
  197. class Item_func_year :public Item_int_func
  198. {
  199. public:
  200.   Item_func_year(Item *a) :Item_int_func(a) {}
  201.   longlong val_int();
  202.   const char *func_name() const { return "year"; }
  203.   void fix_length_and_dec()
  204.   { 
  205.     decimals=0;
  206.     max_length=4*MY_CHARSET_BIN_MB_MAXLEN;
  207.     maybe_null=1;
  208.   }
  209. };
  210. class Item_func_weekday :public Item_func
  211. {
  212.   bool odbc_type;
  213. public:
  214.   Item_func_weekday(Item *a,bool type_arg)
  215.     :Item_func(a), odbc_type(type_arg) {}
  216.   longlong val_int();
  217.   double val() { DBUG_ASSERT(fixed == 1); return (double) val_int(); }
  218.   String *val_str(String *str)
  219.   {
  220.     DBUG_ASSERT(fixed == 1);
  221.     str->set(val_int(), &my_charset_bin);
  222.     return null_value ? 0 : str;
  223.   }
  224.   const char *func_name() const { return "weekday"; }
  225.   enum Item_result result_type () const { return INT_RESULT; }
  226.   void fix_length_and_dec()
  227.   {
  228.     collation.set(&my_charset_bin);
  229.     decimals=0;
  230.     max_length=1*MY_CHARSET_BIN_MB_MAXLEN;
  231.     maybe_null=1;
  232.   }
  233. };
  234. class Item_func_dayname :public Item_func_weekday
  235. {
  236.  public:
  237.   Item_func_dayname(Item *a) :Item_func_weekday(a,0) {}
  238.   const char *func_name() const { return "dayname"; }
  239.   String *val_str(String *str);
  240.   enum Item_result result_type () const { return STRING_RESULT; }
  241.   void fix_length_and_dec() 
  242.   { 
  243.     collation.set(&my_charset_bin);
  244.     decimals=0; 
  245.     max_length=9*MY_CHARSET_BIN_MB_MAXLEN;
  246.     maybe_null=1; 
  247.   }
  248. };
  249. class Item_func_unix_timestamp :public Item_int_func
  250. {
  251.   String value;
  252. public:
  253.   Item_func_unix_timestamp() :Item_int_func() {}
  254.   Item_func_unix_timestamp(Item *a) :Item_int_func(a) {}
  255.   longlong val_int();
  256.   const char *func_name() const { return "unix_timestamp"; }
  257.   void fix_length_and_dec()
  258.   {
  259.     decimals=0;
  260.     max_length=10*MY_CHARSET_BIN_MB_MAXLEN;
  261.   }
  262. };
  263. class Item_func_time_to_sec :public Item_int_func
  264. {
  265. public:
  266.   Item_func_time_to_sec(Item *item) :Item_int_func(item) {}
  267.   longlong val_int();
  268.   const char *func_name() const { return "time_to_sec"; }
  269.   void fix_length_and_dec()
  270.   {
  271.     decimals=0;
  272.     max_length=10*MY_CHARSET_BIN_MB_MAXLEN;
  273.   }
  274. };
  275. /* This can't be a Item_str_func, because the val() functions are special */
  276. class Item_date :public Item_func
  277. {
  278. public:
  279.   Item_date() :Item_func() {}
  280.   Item_date(Item *a) :Item_func(a) {}
  281.   enum Item_result result_type () const { return STRING_RESULT; }
  282.   enum_field_types field_type() const { return MYSQL_TYPE_DATE; }
  283.   String *val_str(String *str);
  284.   longlong val_int();
  285.   double val() { DBUG_ASSERT(fixed == 1); return (double) val_int(); }
  286.   const char *func_name() const { return "date"; }
  287.   void fix_length_and_dec()
  288.   { 
  289.     collation.set(&my_charset_bin);
  290.     decimals=0;
  291.     max_length=MAX_DATE_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  292.   }
  293.   int save_in_field(Field *to, bool no_conversions);
  294.   Field *tmp_table_field(TABLE *t_arg)
  295.   {
  296.     return (new Field_date(maybe_null, name, t_arg, &my_charset_bin));
  297.   }  
  298. };
  299. class Item_date_func :public Item_str_func
  300. {
  301. public:
  302.   Item_date_func() :Item_str_func() {}
  303.   Item_date_func(Item *a) :Item_str_func(a) {}
  304.   Item_date_func(Item *a,Item *b) :Item_str_func(a,b) {}
  305.   Item_date_func(Item *a,Item *b, Item *c) :Item_str_func(a,b,c) {}
  306.   enum_field_types field_type() const { return MYSQL_TYPE_DATETIME; }
  307.   Field *tmp_table_field(TABLE *t_arg)
  308.   {
  309.     return (new Field_datetime(maybe_null, name, t_arg, &my_charset_bin));
  310.   }
  311. };
  312. /* Abstract CURTIME function. Children should define what time zone is used */
  313. class Item_func_curtime :public Item_func
  314. {
  315.   longlong value;
  316.   char buff[9*2+32];
  317.   uint buff_length;
  318. public:
  319.   Item_func_curtime() :Item_func() {}
  320.   Item_func_curtime(Item *a) :Item_func(a) {}
  321.   enum Item_result result_type () const { return STRING_RESULT; }
  322.   enum_field_types field_type() const { return MYSQL_TYPE_TIME; }
  323.   double val() { DBUG_ASSERT(fixed == 1); return (double) value; }
  324.   longlong val_int() { DBUG_ASSERT(fixed == 1); return value; }
  325.   String *val_str(String *str);
  326.   void fix_length_and_dec();
  327.   Field *tmp_table_field(TABLE *t_arg)
  328.   {
  329.     return (new Field_time(maybe_null, name, t_arg, &my_charset_bin));
  330.   }
  331.   /* 
  332.     Abstract method that defines which time zone is used for conversion.
  333.     Converts time current time in my_time_t representation to broken-down
  334.     TIME representation using UTC-SYSTEM or per-thread time zone.
  335.   */
  336.   virtual void store_now_in_TIME(TIME *now_time)=0;
  337. };
  338. class Item_func_curtime_local :public Item_func_curtime
  339. {
  340. public:
  341.   Item_func_curtime_local() :Item_func_curtime() {}
  342.   Item_func_curtime_local(Item *a) :Item_func_curtime(a) {}
  343.   const char *func_name() const { return "curtime"; }
  344.   virtual void store_now_in_TIME(TIME *now_time);
  345. };
  346. class Item_func_curtime_utc :public Item_func_curtime
  347. {
  348. public:
  349.   Item_func_curtime_utc() :Item_func_curtime() {}
  350.   Item_func_curtime_utc(Item *a) :Item_func_curtime(a) {}
  351.   const char *func_name() const { return "utc_time"; }
  352.   virtual void store_now_in_TIME(TIME *now_time);
  353. };
  354. /* Abstract CURDATE function. See also Item_func_curtime. */
  355. class Item_func_curdate :public Item_date
  356. {
  357.   longlong value;
  358.   TIME ltime;
  359. public:
  360.   Item_func_curdate() :Item_date() {}
  361.   longlong val_int() { DBUG_ASSERT(fixed == 1); return (value) ; }
  362.   String *val_str(String *str);
  363.   void fix_length_and_dec();
  364.   bool get_date(TIME *res, uint fuzzy_date);
  365.   virtual void store_now_in_TIME(TIME *now_time)=0;
  366. };
  367. class Item_func_curdate_local :public Item_func_curdate
  368. {
  369. public:
  370.   Item_func_curdate_local() :Item_func_curdate() {}
  371.   const char *func_name() const { return "curdate"; }
  372.   void store_now_in_TIME(TIME *now_time);
  373. };
  374. class Item_func_curdate_utc :public Item_func_curdate
  375. {
  376. public:
  377.   Item_func_curdate_utc() :Item_func_curdate() {}
  378.   const char *func_name() const { return "utc_date"; }
  379.   void store_now_in_TIME(TIME *now_time);
  380. };
  381. /* Abstract CURRENT_TIMESTAMP function. See also Item_func_curtime */
  382. class Item_func_now :public Item_date_func
  383. {
  384.   longlong value;
  385.   char buff[20*2+32]; // +32 to make my_snprintf_{8bit|ucs2} happy
  386.   uint buff_length;
  387.   TIME ltime;
  388. public:
  389.   Item_func_now() :Item_date_func() {}
  390.   Item_func_now(Item *a) :Item_date_func(a) {}
  391.   enum Item_result result_type () const { return STRING_RESULT; }
  392.   double val()      { DBUG_ASSERT(fixed == 1); return (double) value; }
  393.   longlong val_int() { DBUG_ASSERT(fixed == 1); return value; }
  394.   int save_in_field(Field *to, bool no_conversions);
  395.   String *val_str(String *str);
  396.   void fix_length_and_dec();
  397.   bool get_date(TIME *res, uint fuzzy_date);
  398.   virtual void store_now_in_TIME(TIME *now_time)=0;
  399. };
  400. class Item_func_now_local :public Item_func_now
  401. {
  402. public:
  403.   Item_func_now_local() :Item_func_now() {}
  404.   Item_func_now_local(Item *a) :Item_func_now(a) {}
  405.   const char *func_name() const { return "now"; }
  406.   virtual void store_now_in_TIME(TIME *now_time);
  407.   virtual enum Functype functype() const { return NOW_FUNC; }
  408. };
  409. class Item_func_now_utc :public Item_func_now
  410. {
  411. public:
  412.   Item_func_now_utc() :Item_func_now() {}
  413.   Item_func_now_utc(Item *a) :Item_func_now(a) {}
  414.   const char *func_name() const { return "utc_timestamp"; }
  415.   virtual void store_now_in_TIME(TIME *now_time);
  416. };
  417. class Item_func_from_days :public Item_date
  418. {
  419. public:
  420.   Item_func_from_days(Item *a) :Item_date(a) {}
  421.   const char *func_name() const { return "from_days"; }
  422.   bool get_date(TIME *res, uint fuzzy_date);
  423. };
  424. class Item_func_date_format :public Item_str_func
  425. {
  426.   int fixed_length;
  427.   const bool is_time_format;
  428.   String value;
  429. public:
  430.   Item_func_date_format(Item *a,Item *b,bool is_time_format_arg)
  431.     :Item_str_func(a,b),is_time_format(is_time_format_arg) {}
  432.   String *val_str(String *str);
  433.   const char *func_name() const { return "date_format"; }
  434.   void fix_length_and_dec();
  435.   uint format_length(const String *format);
  436. };
  437. class Item_func_from_unixtime :public Item_date_func
  438. {
  439.   THD *thd;
  440.  public:
  441.   Item_func_from_unixtime(Item *a) :Item_date_func(a) {}
  442.   double val()
  443.   {
  444.     DBUG_ASSERT(fixed == 1);
  445.     return (double) Item_func_from_unixtime::val_int();
  446.   }
  447.   longlong val_int();
  448.   String *val_str(String *str);
  449.   const char *func_name() const { return "from_unixtime"; }
  450.   void fix_length_and_dec();
  451.   bool get_date(TIME *res, uint fuzzy_date);
  452. };
  453. /* 
  454.   We need Time_zone class declaration for storing pointers in
  455.   Item_func_convert_tz.
  456. */
  457. class Time_zone;
  458. /*
  459.   This class represents CONVERT_TZ() function.
  460.   The important fact about this function that it is handled in special way.
  461.   When such function is met in expression time_zone system tables are added
  462.   to global list of tables to open, so later those already opened and locked
  463.   tables can be used during this function calculation for loading time zone
  464.   descriptions.
  465. */
  466. class Item_func_convert_tz :public Item_date_func
  467. {
  468.   /* Cached pointer to list of pre-opened time zone tables. */
  469.   TABLE_LIST *tz_tables;
  470.   /*
  471.     If time zone parameters are constants we are caching objects that
  472.     represent them (we use separate from_tz_cached/to_tz_cached members
  473.     to indicate this fact, since NULL is legal value for from_tz/to_tz
  474.     members.
  475.   */
  476.   bool from_tz_cached, to_tz_cached;
  477.   Time_zone *from_tz, *to_tz;
  478.  public:
  479.   Item_func_convert_tz(Item *a, Item *b, Item *c):
  480.     Item_date_func(a, b, c), from_tz_cached(0), to_tz_cached(0) {}
  481.   longlong val_int();
  482.   double val() { return (double) val_int(); }
  483.   String *val_str(String *str);
  484.   const char *func_name() const { return "convert_tz"; }
  485.   bool fix_fields(THD *, struct st_table_list *, Item **);
  486.   void fix_length_and_dec();
  487.   bool get_date(TIME *res, uint fuzzy_date);
  488.   void cleanup();
  489. };
  490. class Item_func_sec_to_time :public Item_str_func
  491. {
  492. public:
  493.   Item_func_sec_to_time(Item *item) :Item_str_func(item) {}
  494.   double val()
  495.   {
  496.     DBUG_ASSERT(fixed == 1);
  497.     return (double) Item_func_sec_to_time::val_int();
  498.   }
  499.   longlong val_int();
  500.   String *val_str(String *);
  501.   void fix_length_and_dec()
  502.   { 
  503.     collation.set(&my_charset_bin);
  504.     maybe_null=1;
  505.     max_length=MAX_TIME_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  506.   }
  507.   enum_field_types field_type() const { return MYSQL_TYPE_TIME; }
  508.   const char *func_name() const { return "sec_to_time"; }
  509.   Field *tmp_table_field(TABLE *t_arg)
  510.   {
  511.     return (new Field_time(maybe_null, name, t_arg, &my_charset_bin));
  512.   }
  513. };
  514. /*
  515.   The following must be sorted so that simple intervals comes first.
  516.   (get_interval_value() depends on this)
  517. */
  518. enum interval_type
  519. {
  520.   INTERVAL_YEAR, INTERVAL_MONTH, INTERVAL_DAY, INTERVAL_HOUR, INTERVAL_MINUTE,
  521.   INTERVAL_SECOND, INTERVAL_MICROSECOND ,INTERVAL_YEAR_MONTH,
  522.   INTERVAL_DAY_HOUR, INTERVAL_DAY_MINUTE, INTERVAL_DAY_SECOND,
  523.   INTERVAL_HOUR_MINUTE, INTERVAL_HOUR_SECOND, INTERVAL_MINUTE_SECOND,
  524.   INTERVAL_DAY_MICROSECOND, INTERVAL_HOUR_MICROSECOND,
  525.   INTERVAL_MINUTE_MICROSECOND, INTERVAL_SECOND_MICROSECOND
  526. };
  527. class Item_date_add_interval :public Item_date_func
  528. {
  529.   String value;
  530.   enum_field_types cached_field_type;
  531. public:
  532.   const interval_type int_type; // keep it public
  533.   const bool date_sub_interval; // keep it public
  534.   Item_date_add_interval(Item *a,Item *b,interval_type type_arg,bool neg_arg)
  535.     :Item_date_func(a,b),int_type(type_arg), date_sub_interval(neg_arg) {}
  536.   String *val_str(String *);
  537.   const char *func_name() const { return "date_add_interval"; }
  538.   void fix_length_and_dec();
  539.   enum_field_types field_type() const { return cached_field_type; }
  540.   double val() { DBUG_ASSERT(fixed == 1); return (double) val_int(); }
  541.   longlong val_int();
  542.   bool get_date(TIME *res, uint fuzzy_date);
  543.   void print(String *str);
  544. };
  545. class Item_extract :public Item_int_func
  546. {
  547.   String value;
  548.   bool date_value;
  549.  public:
  550.   const interval_type int_type; // keep it public
  551.   Item_extract(interval_type type_arg, Item *a)
  552.     :Item_int_func(a), int_type(type_arg) {}
  553.   longlong val_int();
  554.   const char *func_name() const { return "extract"; }
  555.   void fix_length_and_dec();
  556.   bool eq(const Item *item, bool binary_cmp) const;
  557.   void print(String *str);
  558. };
  559. class Item_typecast :public Item_str_func
  560. {
  561. public:
  562.   Item_typecast(Item *a) :Item_str_func(a) {}
  563.   String *val_str(String *a)
  564.   {
  565.     DBUG_ASSERT(fixed == 1);
  566.     String *tmp=args[0]->val_str(a);
  567.     null_value=args[0]->null_value;
  568.     if (tmp)
  569.       tmp->set_charset(collation.collation);
  570.     return tmp;
  571.   }
  572.   void fix_length_and_dec()
  573.   {
  574.     collation.set(&my_charset_bin);
  575.     max_length=args[0]->max_length;
  576.   }
  577.   virtual const char* cast_type() const= 0;
  578.   void print(String *str);
  579. };
  580. class Item_typecast_maybe_null :public Item_typecast
  581. {
  582. public:
  583.   Item_typecast_maybe_null(Item *a) :Item_typecast(a) {}
  584.   void fix_length_and_dec()
  585.   {
  586.     collation.set(&my_charset_bin);
  587.     max_length=args[0]->max_length;
  588.     maybe_null= 1;
  589.   }
  590. };
  591. class Item_char_typecast :public Item_typecast
  592. {
  593.   int cast_length;
  594.   CHARSET_INFO *cast_cs;
  595.   bool charset_conversion;
  596.   String tmp_value;
  597. public:
  598.   Item_char_typecast(Item *a, int length_arg, CHARSET_INFO *cs_arg)
  599.     :Item_typecast(a), cast_length(length_arg), cast_cs(cs_arg) {}
  600.   bool eq(const Item *item, bool binary_cmp) const;
  601.   const char *func_name() const { return "cast_as_char"; }
  602.   const char* cast_type() const { return "char"; };
  603.   String *val_str(String *a);
  604.   void fix_length_and_dec();
  605.   void print(String *str);
  606. };
  607. class Item_date_typecast :public Item_typecast_maybe_null
  608. {
  609. public:
  610.   Item_date_typecast(Item *a) :Item_typecast_maybe_null(a) {}
  611.   const char *func_name() const { return "cast_as_date"; }
  612.   String *val_str(String *str);
  613.   bool get_date(TIME *ltime, uint fuzzy_date);
  614.   const char *cast_type() const { return "date"; }
  615.   enum_field_types field_type() const { return MYSQL_TYPE_DATE; }
  616.   Field *tmp_table_field(TABLE *t_arg)
  617.   {
  618.     return (new Field_date(maybe_null, name, t_arg, &my_charset_bin));
  619.   }  
  620.   void fix_length_and_dec()
  621.   {
  622.     collation.set(&my_charset_bin);
  623.     max_length= 10;
  624.     maybe_null= 1;
  625.   }
  626. };
  627. class Item_time_typecast :public Item_typecast_maybe_null
  628. {
  629. public:
  630.   Item_time_typecast(Item *a) :Item_typecast_maybe_null(a) {}
  631.   const char *func_name() const { return "cast_as_time"; }
  632.   String *val_str(String *str);
  633.   bool get_time(TIME *ltime);
  634.   const char *cast_type() const { return "time"; }
  635.   enum_field_types field_type() const { return MYSQL_TYPE_TIME; }
  636.   Field *tmp_table_field(TABLE *t_arg)
  637.   {
  638.     return (new Field_time(maybe_null, name, t_arg, &my_charset_bin));
  639.   }
  640. };
  641. class Item_datetime_typecast :public Item_typecast_maybe_null
  642. {
  643. public:
  644.   Item_datetime_typecast(Item *a) :Item_typecast_maybe_null(a) {}
  645.   const char *func_name() const { return "cast_as_datetime"; }
  646.   String *val_str(String *str);
  647.   const char *cast_type() const { return "datetime"; }
  648.   enum_field_types field_type() const { return MYSQL_TYPE_DATETIME; }
  649.   Field *tmp_table_field(TABLE *t_arg)
  650.   {
  651.     return (new Field_datetime(maybe_null, name, t_arg, &my_charset_bin));
  652.   }
  653. };
  654. class Item_func_makedate :public Item_str_func
  655. {
  656. public:
  657.   Item_func_makedate(Item *a,Item *b) :Item_str_func(a,b) {}
  658.   String *val_str(String *str);
  659.   const char *func_name() const { return "makedate"; }
  660.   enum_field_types field_type() const { return MYSQL_TYPE_DATE; }
  661.   void fix_length_and_dec()
  662.   { 
  663.     decimals=0;
  664.     max_length=MAX_DATE_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  665.   }
  666.   Field *tmp_table_field(TABLE *t_arg)
  667.   {
  668.     return (new Field_date(maybe_null, name, t_arg, &my_charset_bin));
  669.   }
  670. };
  671. class Item_func_add_time :public Item_str_func
  672. {
  673.   const bool is_date;
  674.   int sign;
  675.   enum_field_types cached_field_type;
  676. public:
  677.   Item_func_add_time(Item *a, Item *b, bool type_arg, bool neg_arg)
  678.     :Item_str_func(a, b), is_date(type_arg) { sign= neg_arg ? -1 : 1; }
  679.   String *val_str(String *str);
  680.   enum_field_types field_type() const { return cached_field_type; }
  681.   void fix_length_and_dec();
  682. /*
  683.   TODO:
  684.        Change this when we support 
  685.        microseconds in TIME/DATETIME
  686. */
  687.   Field *tmp_table_field(TABLE *t_arg)
  688.   {
  689.     if (cached_field_type == MYSQL_TYPE_TIME)
  690.       return (new Field_time(maybe_null, name, t_arg, &my_charset_bin));
  691.     else if (cached_field_type == MYSQL_TYPE_DATETIME)
  692.       return (new Field_datetime(maybe_null, name, t_arg, &my_charset_bin));
  693.     return (new Field_string(max_length, maybe_null, name, t_arg, &my_charset_bin));
  694.   }
  695.   void print(String *str);
  696. };
  697. class Item_func_timediff :public Item_str_func
  698. {
  699. public:
  700.   Item_func_timediff(Item *a, Item *b)
  701.     :Item_str_func(a, b) {}
  702.   String *val_str(String *str);
  703.   const char *func_name() const { return "timediff"; }
  704.   enum_field_types field_type() const { return MYSQL_TYPE_TIME; }
  705.   void fix_length_and_dec()
  706.   {
  707.     decimals=0;
  708.     max_length=MAX_TIME_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  709.     maybe_null= 1;
  710.   }
  711.   Field *tmp_table_field(TABLE *t_arg)
  712.   {
  713.       return (new Field_time(maybe_null, name, t_arg, &my_charset_bin));
  714.   }
  715. };
  716. class Item_func_maketime :public Item_str_func
  717. {
  718. public:
  719.   Item_func_maketime(Item *a, Item *b, Item *c)
  720.     :Item_str_func(a, b ,c) {}
  721.   String *val_str(String *str);
  722.   const char *func_name() const { return "maketime"; }
  723.   enum_field_types field_type() const { return MYSQL_TYPE_TIME; }
  724.   void fix_length_and_dec()
  725.   {
  726.     decimals=0;
  727.     max_length=MAX_TIME_WIDTH*MY_CHARSET_BIN_MB_MAXLEN;
  728.   }
  729.   Field *tmp_table_field(TABLE *t_arg)
  730.   {
  731.     return (new Field_time(maybe_null, name, t_arg, &my_charset_bin));
  732.   }
  733. };
  734. class Item_func_microsecond :public Item_int_func
  735. {
  736. public:
  737.   Item_func_microsecond(Item *a) :Item_int_func(a) {}
  738.   longlong val_int();
  739.   const char *func_name() const { return "microsecond"; }
  740.   void fix_length_and_dec() 
  741.   { 
  742.     decimals=0;
  743.     maybe_null=1;
  744.   }
  745. };
  746. enum date_time_format
  747. {
  748.   USA_FORMAT, JIS_FORMAT, ISO_FORMAT, EUR_FORMAT, INTERNAL_FORMAT
  749. };
  750. class Item_func_get_format :public Item_str_func
  751. {
  752. public:
  753.   const timestamp_type type; // keep it public
  754.   Item_func_get_format(timestamp_type type_arg, Item *a)
  755.     :Item_str_func(a), type(type_arg)
  756.   {}
  757.   String *val_str(String *str);
  758.   const char *func_name() const { return "get_format"; }
  759.   void fix_length_and_dec()
  760.   {
  761.     maybe_null= 1;
  762.     decimals=0;
  763.     max_length=17*MY_CHARSET_BIN_MB_MAXLEN;
  764.   }
  765.   void print(String *str);
  766. };
  767. class Item_func_str_to_date :public Item_str_func
  768. {
  769.   enum_field_types cached_field_type;
  770.   date_time_format_types cached_format_type;
  771.   timestamp_type cached_timestamp_type;
  772.   bool const_item;
  773. public:
  774.   Item_func_str_to_date(Item *a, Item *b)
  775.     :Item_str_func(a, b)
  776.   {}
  777.   String *val_str(String *str);
  778.   bool get_date(TIME *ltime, uint fuzzy_date);
  779.   const char *func_name() const { return "str_to_date"; }
  780.   enum_field_types field_type() const { return cached_field_type; }
  781.   void fix_length_and_dec();
  782.   Field *tmp_table_field(TABLE *t_arg);
  783. };
  784. class Item_func_last_day :public Item_date
  785. {
  786. public:
  787.   Item_func_last_day(Item *a) :Item_date(a) {}
  788.   const char *func_name() const { return "last_day"; }
  789.   bool get_date(TIME *res, uint fuzzy_date);
  790. };