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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000-2003 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. #ifdef USE_PRAGMA_INTERFACE
  14. #pragma interface /* gcc class implementation */
  15. #endif
  16. class Protocol;
  17. struct st_table_list;
  18. void item_init(void); /* Init item functions */
  19. /*
  20.    "Declared Type Collation"
  21.    A combination of collation and its deriviation.
  22. */
  23. enum Derivation
  24. {
  25.   DERIVATION_IGNORABLE= 5,
  26.   DERIVATION_COERCIBLE= 4,
  27.   DERIVATION_SYSCONST= 3,
  28.   DERIVATION_IMPLICIT= 2,
  29.   DERIVATION_NONE= 1,
  30.   DERIVATION_EXPLICIT= 0
  31. };
  32. /*
  33.   Flags for collation aggregation modes:
  34.   MY_COLL_ALLOW_SUPERSET_CONV  - allow conversion to a superset
  35.   MY_COLL_ALLOW_COERCIBLE_CONV - allow conversion of a coercible value
  36.                                  (i.e. constant).
  37.   MY_COLL_ALLOW_CONV           - allow any kind of conversion
  38.                                  (combintion of the above two)
  39.   MY_COLL_DISALLOW_NONE        - don't allow return DERIVATION_NONE
  40.                                  (e.g. when aggregating for comparison)
  41.   MY_COLL_CMP_CONV             - combination of MY_COLL_ALLOW_CONV
  42.                                  and MY_COLL_DISALLOW_NONE
  43. */
  44. #define MY_COLL_ALLOW_SUPERSET_CONV   1
  45. #define MY_COLL_ALLOW_COERCIBLE_CONV  2
  46. #define MY_COLL_ALLOW_CONV            3
  47. #define MY_COLL_DISALLOW_NONE         4
  48. #define MY_COLL_CMP_CONV              7
  49. class DTCollation {
  50. public:
  51.   CHARSET_INFO     *collation;
  52.   enum Derivation derivation;
  53.   
  54.   DTCollation()
  55.   {
  56.     collation= &my_charset_bin;
  57.     derivation= DERIVATION_NONE;
  58.   }
  59.   DTCollation(CHARSET_INFO *collation_arg, Derivation derivation_arg)
  60.   {
  61.     collation= collation_arg;
  62.     derivation= derivation_arg;
  63.   }
  64.   void set(DTCollation &dt)
  65.   { 
  66.     collation= dt.collation;
  67.     derivation= dt.derivation;
  68.   }
  69.   void set(CHARSET_INFO *collation_arg, Derivation derivation_arg)
  70.   {
  71.     collation= collation_arg;
  72.     derivation= derivation_arg;
  73.   }
  74.   void set(CHARSET_INFO *collation_arg)
  75.   { collation= collation_arg; }
  76.   void set(Derivation derivation_arg)
  77.   { derivation= derivation_arg; }
  78.   bool aggregate(DTCollation &dt, uint flags= 0);
  79.   bool set(DTCollation &dt1, DTCollation &dt2, uint flags= 0)
  80.   { set(dt1); return aggregate(dt2, flags); }
  81.   const char *derivation_name() const
  82.   {
  83.     switch(derivation)
  84.     {
  85.       case DERIVATION_IGNORABLE: return "IGNORABLE";
  86.       case DERIVATION_COERCIBLE: return "COERCIBLE";
  87.       case DERIVATION_IMPLICIT:  return "IMPLICIT";
  88.       case DERIVATION_SYSCONST:  return "SYSCONST";
  89.       case DERIVATION_EXPLICIT:  return "EXPLICIT";
  90.       case DERIVATION_NONE:      return "NONE";
  91.       default: return "UNKNOWN";
  92.     }
  93.   }
  94. };
  95. typedef bool (Item::*Item_processor)(byte *arg);
  96. class Item {
  97.   Item(const Item &); /* Prevent use of these */
  98.   void operator=(Item &);
  99. public:
  100.   static void *operator new(size_t size) {return (void*) sql_alloc((uint) size); }
  101.   static void *operator new(size_t size, MEM_ROOT *mem_root)
  102.   { return (void*) alloc_root(mem_root, (uint) size); }
  103.   static void operator delete(void *ptr,size_t size) {}
  104.   static void operator delete(void *ptr, MEM_ROOT *mem_root) {}
  105.   enum Type {FIELD_ITEM, FUNC_ITEM, SUM_FUNC_ITEM, STRING_ITEM,
  106.      INT_ITEM, REAL_ITEM, NULL_ITEM, VARBIN_ITEM,
  107.      COPY_STR_ITEM, FIELD_AVG_ITEM, DEFAULT_VALUE_ITEM,
  108.      PROC_ITEM,COND_ITEM, REF_ITEM, FIELD_STD_ITEM,
  109.      FIELD_VARIANCE_ITEM, INSERT_VALUE_ITEM,
  110.              SUBSELECT_ITEM, ROW_ITEM, CACHE_ITEM, TYPE_HOLDER,
  111.              PARAM_ITEM};
  112.   enum cond_result { COND_UNDEF,COND_OK,COND_TRUE,COND_FALSE };
  113.   
  114.   /*
  115.     str_values's main purpose is to be used to cache the value in
  116.     save_in_field
  117.   */
  118.   String str_value;
  119.   my_string name; /* Name from select */
  120.   Item *next;
  121.   uint32 max_length;
  122.   uint8 marker,decimals;
  123.   my_bool maybe_null; /* If item may be null */
  124.   my_bool null_value; /* if item is null */
  125.   my_bool unsigned_flag;
  126.   my_bool with_sum_func;
  127.   my_bool fixed;                        /* If item fixed with fix_fields */
  128.   DTCollation collation;
  129.   // alloc & destruct is done as start of select using sql_alloc
  130.   Item();
  131.   /*
  132.      Constructor used by Item_field, Item_ref & agregate (sum) functions.
  133.      Used for duplicating lists in processing queries with temporary
  134.      tables
  135.      Also it used for Item_cond_and/Item_cond_or for creating
  136.      top AND/OR ctructure of WHERE clause to protect it of
  137.      optimisation changes in prepared statements
  138.   */
  139.   Item(THD *thd, Item *item);
  140.   virtual ~Item() { name=0; } /*lint -e1509 */
  141.   void set_name(const char *str,uint length, CHARSET_INFO *cs);
  142.   void init_make_field(Send_field *tmp_field,enum enum_field_types type);
  143.   virtual void cleanup()
  144.   {
  145.     DBUG_ENTER("Item::cleanup");
  146.     DBUG_PRINT("info", ("Type: %d", (int)type()));
  147.     fixed=0;
  148.     marker= 0;
  149.     DBUG_VOID_RETURN;
  150.   }
  151.   virtual void make_field(Send_field *field);
  152.   virtual bool fix_fields(THD *, struct st_table_list *, Item **);
  153.   /*
  154.     should be used in case where we are sure that we do not need
  155.     complete fix_fields() procedure.
  156.   */
  157.   inline void quick_fix_field() { fixed= 1; }
  158.   /* Function returns 1 on overflow and -1 on fatal errors */
  159.   virtual int save_in_field(Field *field, bool no_conversions);
  160.   virtual void save_org_in_field(Field *field)
  161.   { (void) save_in_field(field, 1); }
  162.   virtual int save_safe_in_field(Field *field)
  163.   { return save_in_field(field, 1); }
  164.   virtual bool send(Protocol *protocol, String *str);
  165.   virtual bool eq(const Item *, bool binary_cmp) const;
  166.   virtual Item_result result_type() const { return REAL_RESULT; }
  167.   virtual Item_result cast_to_int_type() const { return result_type(); }
  168.   virtual enum_field_types field_type() const;
  169.   virtual enum Type type() const =0;
  170.   /* valXXX methods must return NULL or 0 or 0.0 if null_value is set. */
  171.   virtual double val()=0;
  172.   virtual longlong val_int()=0;
  173.   /*
  174.     Return string representation of this item object.
  175.     The argument to val_str() is an allocated buffer this or any
  176.     nested Item object can use to store return value of this method.
  177.     This buffer should only be used if the item itself doesn't have an
  178.     own String buffer. In case when the item maintains it's own string
  179.     buffer, it's preferrable to return it instead to minimize number of
  180.     mallocs/memcpys.
  181.     The caller of this method can modify returned string, but only in
  182.     case when it was allocated on heap, (is_alloced() is true).  This
  183.     allows the caller to efficiently use a buffer allocated by a child
  184.     without having to allocate a buffer of it's own. The buffer, given
  185.     to val_str() as agrument, belongs to the caller and is later used
  186.     by the caller at it's own choosing.
  187.     A few implications from the above:
  188.     - unless you return a string object which only points to your buffer
  189.       but doesn't manages it you should be ready that it will be
  190.       modified.
  191.     - even for not allocated strings (is_alloced() == false) the caller
  192.       can change charset (see Item_func_{typecast/binary}. XXX: is this
  193.       a bug?
  194.     - still you should try to minimize data copying and return internal
  195.       object whenever possible.
  196.   */
  197.   virtual String *val_str(String*)=0;
  198.   virtual Field *get_tmp_table_field() { return 0; }
  199.   virtual Field *tmp_table_field(TABLE *t_arg) { return 0; }
  200.   virtual const char *full_name() const { return name ? name : "???"; }
  201.   virtual double  val_result() { return val(); }
  202.   virtual longlong val_int_result() { return val_int(); }
  203.   virtual String *str_result(String* tmp) { return val_str(tmp); }
  204.   /* bit map of tables used by item */
  205.   virtual table_map used_tables() const { return (table_map) 0L; }
  206.   /*
  207.     Return table map of tables that can't be NULL tables (tables that are
  208.     used in a context where if they would contain a NULL row generated
  209.     by a LEFT or RIGHT join, the item would not be true).
  210.     This expression is used on WHERE item to determinate if a LEFT JOIN can be
  211.     converted to a normal join.
  212.     Generally this function should return used_tables() if the function
  213.     would return null if any of the arguments are null
  214.     As this is only used in the beginning of optimization, the value don't
  215.     have to be updated in update_used_tables()
  216.   */
  217.   virtual table_map not_null_tables() const { return used_tables(); }
  218.   /*
  219.     Returns true if this is a simple constant item like an integer, not
  220.     a constant expression. Used in the optimizer to propagate basic constants.
  221.   */
  222.   virtual bool basic_const_item() const { return 0; }
  223.   /* cloning of constant items (0 if it is not const) */
  224.   virtual Item *new_item() { return 0; }
  225.   virtual cond_result eq_cmp_result() const { return COND_OK; }
  226.   inline uint float_length(uint decimals_par) const
  227.   { return decimals != NOT_FIXED_DEC ? (DBL_DIG+2+decimals_par) : DBL_DIG+8;}
  228.   /* 
  229.     Returns true if this is constant (during query execution, i.e. its value
  230.     will not change until next fix_fields) and its value is known.
  231.   */
  232.   virtual bool const_item() const { return used_tables() == 0; }
  233.   /* 
  234.     Returns true if this is constant but its value may be not known yet.
  235.     (Can be used for parameters of prep. stmts or of stored procedures.)
  236.   */
  237.   virtual bool const_during_execution() const 
  238.   { return (used_tables() & ~PARAM_TABLE_BIT) == 0; }
  239.   virtual void print(String *str_arg) { str_arg->append(full_name()); }
  240.   void print_item_w_name(String *);
  241.   virtual void update_used_tables() {}
  242.   virtual void split_sum_func(THD *thd, Item **ref_pointer_array,
  243.                               List<Item> &fields) {}
  244.   /* Called for items that really have to be split */
  245.   void split_sum_func2(THD *thd, Item **ref_pointer_array, List<Item> &fields,
  246.                        Item **ref);
  247.   virtual bool get_date(TIME *ltime,uint fuzzydate);
  248.   virtual bool get_time(TIME *ltime);
  249.   virtual bool get_date_result(TIME *ltime,uint fuzzydate)
  250.   { return get_date(ltime,fuzzydate); }
  251.   /*
  252.     This function is used only in Item_func_isnull/Item_func_isnotnull
  253.     (implementations of IS NULL/IS NOT NULL clauses). Item_func_is{not}null
  254.     calls this method instead of one of val/result*() methods, which
  255.     normally will set null_value. This allows to determine nullness of
  256.     a complex expression without fully evaluating it.
  257.     Any new item which can be NULL must implement this call.
  258.   */
  259.   virtual bool is_null() { return 0; }
  260.   /*
  261.     it is "top level" item of WHERE clause and we do not need correct NULL
  262.     handling
  263.   */
  264.   virtual void top_level_item() {}
  265.   /*
  266.     set field of temporary table for Item which can be switched on temporary
  267.     table during query processing (groupping and so on)
  268.   */
  269.   virtual void set_result_field(Field *field) {}
  270.   virtual bool is_result_field() { return 0; }
  271.   virtual bool is_bool_func() { return 0; }
  272.   virtual void save_in_result_field(bool no_conversions) {}
  273.   /*
  274.     set value of aggegate function in case of no rows for groupping were found
  275.   */
  276.   virtual void no_rows_in_result() {}
  277.   virtual Item *copy_or_same(THD *thd) { return this; }
  278.   virtual Item *copy_andor_structure(THD *thd) { return this; }
  279.   virtual Item *real_item() { return this; }
  280.   virtual Item *get_tmp_table_item(THD *thd) { return copy_or_same(thd); }
  281.   static CHARSET_INFO *default_charset();
  282.   virtual CHARSET_INFO *compare_collation() { return NULL; }
  283.   virtual bool walk(Item_processor processor, byte *arg)
  284.   {
  285.     return (this->*processor)(arg);
  286.   }
  287.   virtual bool remove_dependence_processor(byte * arg) { return 0; }
  288.   virtual bool remove_fixed(byte * arg) { fixed= 0; return 0; }
  289.   
  290.   // Row emulation
  291.   virtual uint cols() { return 1; }
  292.   virtual Item* el(uint i) { return this; }
  293.   virtual Item** addr(uint i) { return 0; }
  294.   virtual bool check_cols(uint c);
  295.   // It is not row => null inside is impossible
  296.   virtual bool null_inside() { return 0; }
  297.   // used in row subselects to get value of elements
  298.   virtual void bring_value() {}
  299.   Field *tmp_table_field_from_field_type(TABLE *table);
  300.   virtual Item *neg_transformer(THD *thd) { return NULL; }
  301.   virtual Item *safe_charset_converter(CHARSET_INFO *tocs);
  302.   void delete_self()
  303.   {
  304.     cleanup();
  305.     delete this;
  306.   }
  307. };
  308. bool agg_item_collations(DTCollation &c, const char *name,
  309.                          Item **items, uint nitems, uint flags= 0);
  310. bool agg_item_collations_for_comparison(DTCollation &c, const char *name,
  311.                                         Item **items, uint nitems,
  312.                                         uint flags= 0);
  313. bool agg_item_charsets(DTCollation &c, const char *name,
  314.                        Item **items, uint nitems, uint flags= 0);
  315. class Item_num: public Item
  316. {
  317. public:
  318.   virtual Item_num *neg()= 0;
  319.   Item *safe_charset_converter(CHARSET_INFO *tocs);
  320. };
  321. #define NO_CACHED_FIELD_INDEX ((uint)(-1))
  322. class st_select_lex;
  323. class Item_ident :public Item
  324. {
  325. protected:
  326.   /* 
  327.     We have to store initial values of db_name, table_name and field_name
  328.     to be able to restore them during cleanup() because they can be 
  329.     updated during fix_fields() to values from Field object and life-time 
  330.     of those is shorter than life-time of Item_field.
  331.   */
  332.   const char *orig_db_name;
  333.   const char *orig_table_name;
  334.   const char *orig_field_name;
  335. public:
  336.   const char *db_name;
  337.   const char *table_name;
  338.   const char *field_name;
  339.   /* 
  340.     Cached value of index for this field in table->field array, used by prep. 
  341.     stmts for speeding up their re-execution. Holds NO_CACHED_FIELD_INDEX 
  342.     if index value is not known.
  343.   */
  344.   uint cached_field_index;
  345.   /*
  346.     Cached pointer to table which contains this field, used for the same reason
  347.     by prep. stmt. too in case then we have not-fully qualified field.
  348.     0 - means no cached value.
  349.   */
  350.   TABLE_LIST *cached_table;
  351.   st_select_lex *depended_from;
  352.   Item_ident(const char *db_name_par,const char *table_name_par,
  353.      const char *field_name_par);
  354.   Item_ident(THD *thd, Item_ident *item);
  355.   const char *full_name() const;
  356.   void cleanup();
  357.   bool remove_dependence_processor(byte * arg);
  358. };
  359. class Item_field :public Item_ident
  360. {
  361.   void set_field(Field *field);
  362. public:
  363.   Field *field,*result_field;
  364.   Item_field(const char *db_par,const char *table_name_par,
  365.      const char *field_name_par)
  366.     :Item_ident(db_par,table_name_par,field_name_par),
  367.      field(0), result_field(0)
  368.   { collation.set(DERIVATION_IMPLICIT); }
  369.   /*
  370.     Constructor needed to process subselect with temporary tables (see Item)
  371.   */
  372.   Item_field(THD *thd, Item_field *item);
  373.   /*
  374.     Constructor used inside setup_wild(), ensures that field, table,
  375.     and database names will live as long as Item_field (this is important
  376.     in prepared statements).
  377.   */
  378.   Item_field(THD *thd, Field *field);
  379.   /*
  380.     If this constructor is used, fix_fields() won't work, because
  381.     db_name, table_name and column_name are unknown. It's necessary to call
  382.     reset_field() before fix_fields() for all fields created this way.
  383.   */
  384.   Item_field(Field *field);
  385.   enum Type type() const { return FIELD_ITEM; }
  386.   bool eq(const Item *item, bool binary_cmp) const;
  387.   double val();
  388.   longlong val_int();
  389.   String *val_str(String*);
  390.   double val_result();
  391.   longlong val_int_result();
  392.   String *str_result(String* tmp);
  393.   bool send(Protocol *protocol, String *str_arg);
  394.   void reset_field(Field *f);
  395.   bool fix_fields(THD *, struct st_table_list *, Item **);
  396.   void make_field(Send_field *tmp_field);
  397.   int save_in_field(Field *field,bool no_conversions);
  398.   void save_org_in_field(Field *field);
  399.   table_map used_tables() const;
  400.   enum Item_result result_type () const
  401.   {
  402.     return field->result_type();
  403.   }
  404.   Item_result cast_to_int_type() const
  405.   {
  406.     return field->cast_to_int_type();
  407.   }
  408.   enum_field_types field_type() const
  409.   {
  410.     return field->type();
  411.   }
  412.   Field *get_tmp_table_field() { return result_field; }
  413.   Field *tmp_table_field(TABLE *t_arg) { return result_field; }
  414.   bool get_date(TIME *ltime,uint fuzzydate);
  415.   bool get_date_result(TIME *ltime,uint fuzzydate);
  416.   bool get_time(TIME *ltime);
  417.   bool is_null() { return field->is_null(); }
  418.   Item *get_tmp_table_item(THD *thd);
  419.   void cleanup();
  420.   inline uint32 max_disp_length() { return field->max_length(); }
  421.   friend class Item_default_value;
  422.   friend class Item_insert_value;
  423.   friend class st_select_lex_unit;
  424. };
  425. class Item_null :public Item
  426. {
  427. public:
  428.   Item_null(char *name_par=0)
  429.   {
  430.     maybe_null= null_value= TRUE;
  431.     max_length= 0;
  432.     name= name_par ? name_par : (char*) "NULL";
  433.     fixed= 1;
  434.     collation.set(&my_charset_bin, DERIVATION_IGNORABLE);
  435.   }
  436.   enum Type type() const { return NULL_ITEM; }
  437.   bool eq(const Item *item, bool binary_cmp) const;
  438.   double val();
  439.   longlong val_int();
  440.   String *val_str(String *str);
  441.   int save_in_field(Field *field, bool no_conversions);
  442.   int save_safe_in_field(Field *field);
  443.   bool send(Protocol *protocol, String *str);
  444.   enum Item_result result_type () const { return STRING_RESULT; }
  445.   enum_field_types field_type() const   { return MYSQL_TYPE_NULL; }
  446.   // to prevent drop fixed flag (no need parent cleanup call)
  447.   void cleanup() {}
  448.   bool basic_const_item() const { return 1; }
  449.   Item *new_item() { return new Item_null(name); }
  450.   bool is_null() { return 1; }
  451.   void print(String *str) { str->append("NULL", 4); }
  452.   Item *safe_charset_converter(CHARSET_INFO *tocs);
  453. };
  454. class Item_null_result :public Item_null
  455. {
  456. public:
  457.   Field *result_field;
  458.   Item_null_result() : Item_null(), result_field(0) {}
  459.   bool is_result_field() { return result_field != 0; }
  460.   void save_in_result_field(bool no_conversions)
  461.   {
  462.     save_in_field(result_field, no_conversions);
  463.   }
  464. };  
  465. /* Item represents one placeholder ('?') of prepared statement */
  466. class Item_param :public Item
  467. {
  468. public:
  469.   enum enum_item_param_state
  470.   {
  471.     NO_VALUE, NULL_VALUE, INT_VALUE, REAL_VALUE,
  472.     STRING_VALUE, TIME_VALUE, LONG_DATA_VALUE
  473.   } state;
  474.   /*
  475.     A buffer for string and long data values. Historically all allocated
  476.     values returned from val_str() were treated as eligible to
  477.     modification. I. e. in some cases Item_func_concat can append it's
  478.     second argument to return value of the first one. Because of that we
  479.     can't return the original buffer holding string data from val_str(),
  480.     and have to have one buffer for data and another just pointing to
  481.     the data. This is the latter one and it's returned from val_str().
  482.     Can not be declared inside the union as it's not a POD type.
  483.   */
  484.   String str_value_ptr;
  485.   union
  486.   {
  487.     longlong integer;
  488.     double   real;
  489.     /*
  490.       Character sets conversion info for string values.
  491.       Character sets of client and connection defined at bind time are used
  492.       for all conversions, even if one of them is later changed (i.e.
  493.       between subsequent calls to mysql_stmt_execute).
  494.     */
  495.     struct CONVERSION_INFO
  496.     {
  497.       CHARSET_INFO *character_set_client;
  498.       CHARSET_INFO *character_set_of_placeholder;
  499.       /*
  500.         This points at character set of connection if conversion
  501.         to it is required (i. e. if placeholder typecode is not BLOB).
  502.         Otherwise it's equal to character_set_client (to simplify
  503.         check in convert_str_value()).
  504.       */
  505.       CHARSET_INFO *final_character_set_of_str_value;
  506.     } cs_info;
  507.     TIME     time;
  508.   } value;
  509.   /* Cached values for virtual methods to save us one switch.  */
  510.   enum Item_result item_result_type;
  511.   enum Type item_type;
  512.   /*
  513.     Used when this item is used in a temporary table.
  514.     This is NOT placeholder metadata sent to client, as this value
  515.     is assigned after sending metadata (in setup_one_conversion_function).
  516.     For example in case of 'SELECT ?' you'll get MYSQL_TYPE_STRING both
  517.     in result set and placeholders metadata, no matter what type you will
  518.     supply for this placeholder in mysql_stmt_execute.
  519.   */
  520.   enum enum_field_types param_type;
  521.   /*
  522.     Offset of placeholder inside statement text. Used to create
  523.     no-placeholders version of this statement for the binary log.
  524.   */
  525.   uint pos_in_query;
  526.   Item_param(uint pos_in_query_arg);
  527.   enum Item_result result_type () const { return item_result_type; }
  528.   enum Type type() const { return item_type; }
  529.   enum_field_types field_type() const { return param_type; }
  530.   double val();
  531.   longlong val_int();
  532.   String *val_str(String*);
  533.   bool get_time(TIME *tm);
  534.   bool get_date(TIME *tm, uint fuzzydate);
  535.   int  save_in_field(Field *field, bool no_conversions);
  536.   void set_null();
  537.   void set_int(longlong i, uint32 max_length_arg);
  538.   void set_double(double i);
  539.   bool set_str(const char *str, ulong length);
  540.   bool set_longdata(const char *str, ulong length);
  541.   void set_time(TIME *tm, timestamp_type type, uint32 max_length_arg);
  542.   bool set_from_user_var(THD *thd, const user_var_entry *entry);
  543.   void reset();
  544.   /*
  545.     Assign placeholder value from bind data.
  546.     Note, that 'len' has different semantics in embedded library (as we
  547.     don't need to check that packet is not broken there). See
  548.     sql_prepare.cc for details.
  549.   */
  550.   void (*set_param_func)(Item_param *param, uchar **pos, ulong len);
  551.   const String *query_val_str(String *str) const;
  552.   bool convert_str_value(THD *thd);
  553.   /*
  554.     If value for parameter was not set we treat it as non-const
  555.     so noone will use parameters value in fix_fields still
  556.     parameter is constant during execution.
  557.   */
  558.   virtual table_map used_tables() const
  559.   { return state != NO_VALUE ? (table_map)0 : PARAM_TABLE_BIT; }
  560.   void print(String *str) { str->append('?'); }
  561.   bool is_null()
  562.   { DBUG_ASSERT(state != NO_VALUE); return state == NULL_VALUE; }
  563.   bool basic_const_item() const;
  564.   /*
  565.     This method is used to make a copy of a basic constant item when
  566.     propagating constants in the optimizer. The reason to create a new
  567.     item and not use the existing one is not precisely known (2005/04/16).
  568.     Probably we are trying to preserve tree structure of items, in other
  569.     words, avoid pointing at one item from two different nodes of the tree.
  570.     Return a new basic constant item if parameter value is a basic
  571.     constant, assert otherwise. This method is called only if
  572.     basic_const_item returned TRUE.
  573.   */
  574.   Item *new_item();
  575.   Item *safe_charset_converter(CHARSET_INFO *tocs);
  576.   /*
  577.     Implement by-value equality evaluation if parameter value
  578.     is set and is a basic constant (integer, real or string).
  579.     Otherwise return FALSE.
  580.   */
  581.   bool eq(const Item *item, bool binary_cmp) const;
  582. };
  583. class Item_int :public Item_num
  584. {
  585. public:
  586.   longlong value;
  587.   Item_int(int32 i,uint length=11) :value((longlong) i)
  588.     { max_length=length; fixed= 1; }
  589. #ifdef HAVE_LONG_LONG
  590.   Item_int(longlong i,uint length=21) :value(i)
  591.     { max_length=length; fixed= 1;}
  592. #endif
  593.   Item_int(const char *str_arg,longlong i,uint length) :value(i)
  594.     { max_length=length; name=(char*) str_arg; fixed= 1; }
  595.   Item_int(const char *str_arg, uint length=64);
  596.   enum Type type() const { return INT_ITEM; }
  597.   enum Item_result result_type () const { return INT_RESULT; }
  598.   enum_field_types field_type() const { return MYSQL_TYPE_LONGLONG; }
  599.   longlong val_int() { DBUG_ASSERT(fixed == 1); return value; }
  600.   double val() { DBUG_ASSERT(fixed == 1); return (double) value; }
  601.   String *val_str(String*);
  602.   int save_in_field(Field *field, bool no_conversions);
  603.   bool basic_const_item() const { return 1; }
  604.   Item *new_item() { return new Item_int(name,value,max_length); }
  605.   // to prevent drop fixed flag (no need parent cleanup call)
  606.   void cleanup() {}
  607.   void print(String *str);
  608.   Item_num *neg() { value= -value; return this; }
  609.   bool eq(const Item *, bool binary_cmp) const;
  610. };
  611. class Item_uint :public Item_int
  612. {
  613. public:
  614.   Item_uint(const char *str_arg, uint length);
  615.   Item_uint(const char *str_arg, longlong i, uint length);
  616.   Item_uint(uint32 i) :Item_int((longlong) i, 10) 
  617.     { unsigned_flag= 1; }
  618.   double val()
  619.     { DBUG_ASSERT(fixed == 1); return ulonglong2double((ulonglong)value); }
  620.   String *val_str(String*);
  621.   Item *new_item() { return new Item_uint(name,max_length); }
  622.   int save_in_field(Field *field, bool no_conversions);
  623.   void print(String *str);
  624.   Item_num *neg ();
  625. };
  626. class Item_real :public Item_num
  627. {
  628. public:
  629.   double value;
  630.   // Item_real() :value(0) {}
  631.   Item_real(const char *str_arg, uint length) :value(my_atof(str_arg))
  632.   {
  633.     name=(char*) str_arg;
  634.     decimals=(uint8) nr_of_decimals(str_arg);
  635.     max_length=length;
  636.     fixed= 1;
  637.   }
  638.   Item_real(const char *str,double val_arg,uint decimal_par,uint length)
  639.     :value(val_arg)
  640.   {
  641.     name=(char*) str;
  642.     decimals=(uint8) decimal_par;
  643.     max_length=length;
  644.     fixed= 1;
  645.   }
  646.   Item_real(double value_par) :value(value_par) { fixed= 1; }
  647.   int save_in_field(Field *field, bool no_conversions);
  648.   enum Type type() const { return REAL_ITEM; }
  649.   enum_field_types field_type() const { return MYSQL_TYPE_DOUBLE; }
  650.   double val() { DBUG_ASSERT(fixed == 1); return value; }
  651.   longlong val_int()
  652.   {
  653.     DBUG_ASSERT(fixed == 1);
  654.     if (value <= (double) LONGLONG_MIN)
  655.     {
  656.        return LONGLONG_MIN;
  657.     }
  658.     else if (value >= (double) (ulonglong) LONGLONG_MAX)
  659.     {
  660.       return LONGLONG_MAX;
  661.     }
  662.     return (longlong) (value+(value > 0 ? 0.5 : -0.5));
  663.   }
  664.   String *val_str(String*);
  665.   bool basic_const_item() const { return 1; }
  666.   // to prevent drop fixed flag (no need parent cleanup call)
  667.   void cleanup() {}
  668.   Item *new_item() { return new Item_real(name,value,decimals,max_length); }
  669.   Item_num *neg() { value= -value; return this; }
  670.   bool eq(const Item *, bool binary_cmp) const;
  671. };
  672. class Item_float :public Item_real
  673. {
  674. public:
  675.   Item_float(const char *str,uint length) :Item_real(str,length)
  676.   {
  677.     decimals=NOT_FIXED_DEC;
  678.     max_length=DBL_DIG+8;
  679.   }
  680. };
  681. class Item_string :public Item
  682. {
  683. public:
  684.   Item_string(const char *str,uint length,
  685.          CHARSET_INFO *cs, Derivation dv= DERIVATION_COERCIBLE)
  686.   {
  687.     collation.set(cs, dv);
  688.     str_value.set_or_copy_aligned(str,length,cs);
  689.     /*
  690.       We have to have a different max_length than 'length' here to
  691.       ensure that we get the right length if we do use the item
  692.       to create a new table. In this case max_length must be the maximum
  693.       number of chars for a string of this type because we in create_field::
  694.       divide the max_length with mbmaxlen).
  695.     */
  696.     max_length= str_value.numchars()*cs->mbmaxlen;
  697.     set_name(str, length, cs);
  698.     decimals=NOT_FIXED_DEC;
  699.     // it is constant => can be used without fix_fields (and frequently used)
  700.     fixed= 1;
  701.   }
  702.   Item_string(const char *name_par, const char *str, uint length,
  703.       CHARSET_INFO *cs, Derivation dv= DERIVATION_COERCIBLE)
  704.   {
  705.     collation.set(cs, dv);
  706.     str_value.set_or_copy_aligned(str,length,cs);
  707.     max_length= str_value.numchars()*cs->mbmaxlen;
  708.     set_name(name_par,0,cs);
  709.     decimals=NOT_FIXED_DEC;
  710.     // it is constant => can be used without fix_fields (and frequently used)
  711.     fixed= 1;
  712.   }
  713.   enum Type type() const { return STRING_ITEM; }
  714.   double val()
  715.   {
  716.     DBUG_ASSERT(fixed == 1);
  717.     int err;
  718.     char *end_not_used;
  719.     return my_strntod(str_value.charset(), (char*) str_value.ptr(),
  720.       str_value.length(), &end_not_used, &err);
  721.   }
  722.   longlong val_int()
  723.   {
  724.     DBUG_ASSERT(fixed == 1);
  725.     int err;
  726.     return my_strntoll(str_value.charset(), str_value.ptr(),
  727.        str_value.length(), 10, (char**) 0, &err);
  728.   }
  729.   String *val_str(String*)
  730.   {
  731.     DBUG_ASSERT(fixed == 1);
  732.     return (String*) &str_value;
  733.   }
  734.   int save_in_field(Field *field, bool no_conversions);
  735.   enum Item_result result_type () const { return STRING_RESULT; }
  736.   enum_field_types field_type() const { return MYSQL_TYPE_STRING; }
  737.   bool basic_const_item() const { return 1; }
  738.   bool eq(const Item *item, bool binary_cmp) const;
  739.   Item *new_item() 
  740.   {
  741.     return new Item_string(name, str_value.ptr(), 
  742.         str_value.length(), collation.collation);
  743.   }
  744.   Item *safe_charset_converter(CHARSET_INFO *tocs);
  745.   String *const_string() { return &str_value; }
  746.   inline void append(char *str, uint length) { str_value.append(str, length); }
  747.   void print(String *str);
  748.   // to prevent drop fixed flag (no need parent cleanup call)
  749.   void cleanup() {}
  750. };
  751. /* for show tables */
  752. class Item_datetime :public Item_string
  753. {
  754. public:
  755.   Item_datetime(const char *item_name): Item_string(item_name,"",0,
  756.        &my_charset_bin)
  757.   { max_length=19;}
  758.   enum_field_types field_type() const { return MYSQL_TYPE_DATETIME; }
  759. };
  760. class Item_empty_string :public Item_string
  761. {
  762. public:
  763.   Item_empty_string(const char *header,uint length, CHARSET_INFO *cs= NULL) :
  764.     Item_string("",0, cs ? cs : &my_charset_bin)
  765.     { name=(char*) header; max_length= cs ? length * cs->mbmaxlen : length; }
  766.   void make_field(Send_field *field);
  767. };
  768. class Item_return_int :public Item_int
  769. {
  770.   enum_field_types int_field_type;
  771. public:
  772.   Item_return_int(const char *name, uint length,
  773.   enum_field_types field_type_arg)
  774.     :Item_int(name, 0, length), int_field_type(field_type_arg)
  775.   {
  776.     unsigned_flag=1;
  777.   }
  778.   enum_field_types field_type() const { return int_field_type; }
  779. };
  780. class Item_varbinary :public Item
  781. {
  782. public:
  783.   Item_varbinary(const char *str,uint str_length);
  784.   enum Type type() const { return VARBIN_ITEM; }
  785.   double val()
  786.     { DBUG_ASSERT(fixed == 1); return (double) Item_varbinary::val_int(); }
  787.   longlong val_int();
  788.   bool basic_const_item() const { return 1; }
  789.   String *val_str(String*) { DBUG_ASSERT(fixed == 1); return &str_value; }
  790.   int save_in_field(Field *field, bool no_conversions);
  791.   enum Item_result result_type () const { return STRING_RESULT; }
  792.   enum Item_result cast_to_int_type() const { return INT_RESULT; }
  793.   enum_field_types field_type() const { return MYSQL_TYPE_STRING; }
  794.   // to prevent drop fixed flag (no need parent cleanup call)
  795.   void cleanup() {}
  796.   bool eq(const Item *item, bool binary_cmp) const;
  797.   virtual Item *safe_charset_converter(CHARSET_INFO *tocs);
  798. };
  799. class Item_result_field :public Item /* Item with result field */
  800. {
  801. public:
  802.   Field *result_field; /* Save result here */
  803.   Item_result_field() :result_field(0) {}
  804.   // Constructor used for Item_sum/Item_cond_and/or (see Item comment)
  805.   Item_result_field(THD *thd, Item_result_field *item):
  806.     Item(thd, item), result_field(item->result_field)
  807.   {}
  808.   ~Item_result_field() {} /* Required with gcc 2.95 */
  809.   Field *get_tmp_table_field() { return result_field; }
  810.   Field *tmp_table_field(TABLE *t_arg) { return result_field; }
  811.   table_map used_tables() const { return 1; }
  812.   virtual void fix_length_and_dec()=0;
  813.   void set_result_field(Field *field) { result_field= field; }
  814.   bool is_result_field() { return 1; }
  815.   void save_in_result_field(bool no_conversions)
  816.   {
  817.     save_in_field(result_field, no_conversions);
  818.   }
  819.   void cleanup();
  820. };
  821. class Item_ref :public Item_ident
  822. {
  823. protected:
  824.   void set_properties();
  825. public:
  826.   Field *result_field;  /* Save result here */
  827.   Item **ref;
  828.   Item_ref(const char *db_par, const char *table_name_par,
  829.            const char *field_name_par)
  830.     :Item_ident(db_par, table_name_par, field_name_par), ref(0) {}
  831.   /*
  832.     This constructor is used in two scenarios:
  833.     A) *item = NULL
  834.       No initialization is performed, fix_fields() call will be necessary.
  835.       
  836.     B) *item points to an Item this Item_ref will refer to. This is 
  837.       used for GROUP BY. fix_fields() will not be called in this case,
  838.       so we call set_properties to make this item "fixed". set_properties
  839.       performs a subset of action Item_ref::fix_fields does, and this subset
  840.       is enough for Item_ref's used in GROUP BY.
  841.     
  842.     TODO we probably fix a superset of problems like in BUG#6658. Check this 
  843.          with Bar, and if we have a more broader set of problems like this.
  844.   */
  845.   Item_ref(Item **item, const char *table_name_par, const char *field_name_par)
  846.     :Item_ident(NullS, table_name_par, field_name_par), ref(item)
  847.   {
  848.     DBUG_ASSERT(item);
  849.     if (*item)
  850.       set_properties();
  851.   }
  852.   /* Constructor need to process subselect with temporary tables (see Item) */
  853.   Item_ref(THD *thd, Item_ref *item) :Item_ident(thd, item), ref(item->ref) {}
  854.   enum Type type() const { return REF_ITEM; }
  855.   bool eq(const Item *item, bool binary_cmp) const
  856.   { return ref && (*ref)->eq(item, binary_cmp); }
  857.   double val()
  858.   {
  859.     DBUG_ASSERT(fixed);
  860.     double tmp=(*ref)->val_result();
  861.     null_value=(*ref)->null_value;
  862.     return tmp;
  863.   }
  864.   longlong val_int()
  865.   {
  866.     DBUG_ASSERT(fixed);
  867.     longlong tmp=(*ref)->val_int_result();
  868.     null_value=(*ref)->null_value;
  869.     return tmp;
  870.   }
  871.   String *val_str(String* tmp)
  872.   {
  873.     DBUG_ASSERT(fixed);
  874.     tmp=(*ref)->str_result(tmp);
  875.     null_value=(*ref)->null_value;
  876.     return tmp;
  877.   }
  878.   bool is_null()
  879.   {
  880.     DBUG_ASSERT(fixed);
  881.     (void) (*ref)->val_int_result();
  882.     return (*ref)->null_value;
  883.   }
  884.   bool get_date(TIME *ltime,uint fuzzydate)
  885.   {
  886.     DBUG_ASSERT(fixed);
  887.     return (null_value=(*ref)->get_date_result(ltime,fuzzydate));
  888.   }
  889.   bool send(Protocol *prot, String *tmp){ return (*ref)->send(prot, tmp); }
  890.   void make_field(Send_field *field) { (*ref)->make_field(field); }
  891.   bool fix_fields(THD *, struct st_table_list *, Item **);
  892.   int save_in_field(Field *field, bool no_conversions)
  893.   { return (*ref)->save_in_field(field, no_conversions); }
  894.   void save_org_in_field(Field *field) { (*ref)->save_org_in_field(field); }
  895.   enum Item_result result_type () const { return (*ref)->result_type(); }
  896.   enum_field_types field_type() const   { return (*ref)->field_type(); }
  897.   Field *get_tmp_table_field() { return result_field; }
  898.   table_map used_tables() const
  899.   { 
  900.     return depended_from ? OUTER_REF_TABLE_BIT : (*ref)->used_tables(); 
  901.   }
  902.   void set_result_field(Field *field) { result_field= field; }
  903.   bool is_result_field() { return 1; }
  904.   void save_in_result_field(bool no_conversions)
  905.   {
  906.     (*ref)->save_in_field(result_field, no_conversions);
  907.   }
  908.   Item *real_item() { return *ref; }
  909.   void print(String *str);
  910. };
  911. /*
  912.   The same as Item_ref, but get value from val_* family of method to get
  913.   value of item on which it referred instead of result* family.
  914. */
  915. class Item_direct_ref :public Item_ref
  916. {
  917. public:
  918.   Item_direct_ref(Item **item, const char *table_name_par,
  919.                   const char *field_name_par)
  920.     :Item_ref(item, table_name_par, field_name_par) {}
  921.   /* Constructor need to process subselect with temporary tables (see Item) */
  922.   Item_direct_ref(THD *thd, Item_direct_ref *item) : Item_ref(thd, item) {}
  923.   double val()
  924.   {
  925.     double tmp=(*ref)->val();
  926.     null_value=(*ref)->null_value;
  927.     return tmp;
  928.   }
  929.   longlong val_int()
  930.   {
  931.     longlong tmp=(*ref)->val_int();
  932.     null_value=(*ref)->null_value;
  933.     return tmp;
  934.   }
  935.   String *val_str(String* tmp)
  936.   {
  937.     tmp=(*ref)->val_str(tmp);
  938.     null_value=(*ref)->null_value;
  939.     return tmp;
  940.   }
  941.   bool is_null()
  942.   {
  943.     (void) (*ref)->val_int();
  944.     return (*ref)->null_value;
  945.   }
  946.   bool get_date(TIME *ltime,uint fuzzydate)
  947.   {
  948.     return (null_value=(*ref)->get_date(ltime,fuzzydate));
  949.   }
  950. };
  951. class Item_in_subselect;
  952. class Item_ref_null_helper: public Item_ref
  953. {
  954. protected:
  955.   Item_in_subselect* owner;
  956. public:
  957.   Item_ref_null_helper(Item_in_subselect* master, Item **item,
  958.        const char *table_name_par, const char *field_name_par):
  959.     Item_ref(item, table_name_par, field_name_par), owner(master) {}
  960.   double val();
  961.   longlong val_int();
  962.   String* val_str(String* s);
  963.   bool get_date(TIME *ltime, uint fuzzydate);
  964.   void print(String *str);
  965.   /*
  966.     we add RAND_TABLE_BIT to prevent moving this item from HAVING to WHERE
  967.   */
  968.   table_map used_tables() const
  969.   {
  970.     return (depended_from ?
  971.             OUTER_REF_TABLE_BIT :
  972.             (*ref)->used_tables() | RAND_TABLE_BIT);
  973.   }
  974. };
  975. class Item_null_helper :public Item_ref_null_helper
  976. {
  977.   Item *store;
  978. public:
  979.   Item_null_helper(Item_in_subselect* master, Item *item,
  980.    const char *table_name_par, const char *field_name_par)
  981.     :Item_ref_null_helper(master, &item, table_name_par, field_name_par),
  982.      store(item)
  983.     { ref= &store; }
  984.   void print(String *str);
  985. };
  986. /*
  987.   The following class is used to optimize comparing of date and bigint columns
  988.   We need to save the original item ('ref') to be able to call
  989.   ref->save_in_field(). This is used to create index search keys.
  990.   
  991.   An instance of Item_int_with_ref may have signed or unsigned integer value.
  992.   
  993. */
  994. class Item_int_with_ref :public Item_int
  995. {
  996.   Item *ref;
  997. public:
  998.   Item_int_with_ref(longlong i, Item *ref_arg) :Item_int(i), ref(ref_arg)
  999.   {
  1000.     unsigned_flag= ref_arg->unsigned_flag;
  1001.   }
  1002.   int save_in_field(Field *field, bool no_conversions)
  1003.   {
  1004.     return ref->save_in_field(field, no_conversions);
  1005.   }
  1006.   Item *new_item();
  1007. };
  1008. #include "gstream.h"
  1009. #include "spatial.h"
  1010. #include "item_sum.h"
  1011. #include "item_func.h"
  1012. #include "item_row.h"
  1013. #include "item_cmpfunc.h"
  1014. #include "item_strfunc.h"
  1015. #include "item_geofunc.h"
  1016. #include "item_timefunc.h"
  1017. #include "item_uniq.h"
  1018. #include "item_subselect.h"
  1019. class Item_copy_string :public Item
  1020. {
  1021.   enum enum_field_types cached_field_type;
  1022. public:
  1023.   Item *item;
  1024.   Item_copy_string(Item *i) :item(i)
  1025.   {
  1026.     null_value=maybe_null=item->maybe_null;
  1027.     decimals=item->decimals;
  1028.     max_length=item->max_length;
  1029.     name=item->name;
  1030.     cached_field_type= item->field_type();
  1031.   }
  1032.   enum Type type() const { return COPY_STR_ITEM; }
  1033.   enum Item_result result_type () const { return STRING_RESULT; }
  1034.   enum_field_types field_type() const { return cached_field_type; }
  1035.   double val()
  1036.   {
  1037.     int err;
  1038.     char *end_not_used;
  1039.     return (null_value ? 0.0 :
  1040.     my_strntod(str_value.charset(), (char*) str_value.ptr(),
  1041.        str_value.length(), &end_not_used, &err));
  1042.   }
  1043.   longlong val_int()
  1044.   { 
  1045.     int err;
  1046.     return null_value ? LL(0) : my_strntoll(str_value.charset(),str_value.ptr(),str_value.length(),10, (char**) 0,&err); 
  1047.   }
  1048.   String *val_str(String*);
  1049.   void make_field(Send_field *field) { item->make_field(field); }
  1050.   void copy();
  1051.   int save_in_field(Field *field, bool no_conversions);
  1052.   table_map used_tables() const { return (table_map) 1L; }
  1053.   bool const_item() const { return 0; }
  1054.   bool is_null() { return null_value; }
  1055. };
  1056. class Item_buff :public Sql_alloc
  1057. {
  1058. public:
  1059.   my_bool null_value;
  1060.   Item_buff() :null_value(0) {}
  1061.   virtual bool cmp(void)=0;
  1062.   virtual ~Item_buff(); /*line -e1509 */
  1063. };
  1064. class Item_str_buff :public Item_buff
  1065. {
  1066.   Item *item;
  1067.   String value,tmp_value;
  1068. public:
  1069.   Item_str_buff(THD *thd, Item *arg);
  1070.   bool cmp(void);
  1071.   ~Item_str_buff(); // Deallocate String:s
  1072. };
  1073. class Item_real_buff :public Item_buff
  1074. {
  1075.   Item *item;
  1076.   double value;
  1077. public:
  1078.   Item_real_buff(Item *item_par) :item(item_par),value(0.0) {}
  1079.   bool cmp(void);
  1080. };
  1081. class Item_int_buff :public Item_buff
  1082. {
  1083.   Item *item;
  1084.   longlong value;
  1085. public:
  1086.   Item_int_buff(Item *item_par) :item(item_par),value(0) {}
  1087.   bool cmp(void);
  1088. };
  1089. class Item_field_buff :public Item_buff
  1090. {
  1091.   char *buff;
  1092.   Field *field;
  1093.   uint length;
  1094. public:
  1095.   Item_field_buff(Item_field *item)
  1096.   {
  1097.     field=item->field;
  1098.     buff= (char*) sql_calloc(length=field->pack_length());
  1099.   }
  1100.   bool cmp(void);
  1101. };
  1102. class Item_default_value : public Item_field
  1103. {
  1104. public:
  1105.   Item *arg;
  1106.   Item_default_value() :
  1107.     Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(NULL) {}
  1108.   Item_default_value(Item *a) :
  1109.     Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(a) {}
  1110.   enum Type type() const { return DEFAULT_VALUE_ITEM; }
  1111.   bool eq(const Item *item, bool binary_cmp) const;
  1112.   bool fix_fields(THD *, struct st_table_list *, Item **);
  1113.   void print(String *str);
  1114.   int save_in_field(Field *field_arg, bool no_conversions)
  1115.   {
  1116.     if (!arg)
  1117.     {
  1118.       field_arg->set_default();
  1119.       return 0;
  1120.     }
  1121.     return Item_field::save_in_field(field_arg, no_conversions);
  1122.   }
  1123.   table_map used_tables() const { return (table_map)0L; }
  1124.   
  1125.   bool walk(Item_processor processor, byte *args)
  1126.   {
  1127.     return arg->walk(processor, args) ||
  1128.       (this->*processor)(args);
  1129.   }
  1130. };
  1131. class Item_insert_value : public Item_field
  1132. {
  1133. public:
  1134.   Item *arg;
  1135.   Item_insert_value(Item *a) :
  1136.     Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(a) {}
  1137.   bool eq(const Item *item, bool binary_cmp) const;
  1138.   bool fix_fields(THD *, struct st_table_list *, Item **);
  1139.   void print(String *str);
  1140.   int save_in_field(Field *field_arg, bool no_conversions)
  1141.   {
  1142.     return Item_field::save_in_field(field_arg, no_conversions);
  1143.   }
  1144.   table_map used_tables() const { return (table_map)0L; }
  1145.   bool walk(Item_processor processor, byte *args)
  1146.   {
  1147.     return arg->walk(processor, args) ||
  1148.     (this->*processor)(args);
  1149.   }
  1150. };
  1151. class Item_cache: public Item
  1152. {
  1153. protected:
  1154.   Item *example;
  1155.   table_map used_table_map;
  1156. public:
  1157.   Item_cache(): example(0), used_table_map(0) {fixed= 1; null_value= 1;}
  1158.   void set_used_tables(table_map map) { used_table_map= map; }
  1159.   virtual bool allocate(uint i) { return 0; }
  1160.   virtual bool setup(Item *item)
  1161.   {
  1162.     example= item;
  1163.     max_length= item->max_length;
  1164.     decimals= item->decimals;
  1165.     collation.set(item->collation);
  1166.     return 0;
  1167.   };
  1168.   virtual void store(Item *)= 0;
  1169.   enum Type type() const { return CACHE_ITEM; }
  1170.   static Item_cache* get_cache(Item_result type);
  1171.   table_map used_tables() const { return used_table_map; }
  1172.   virtual void keep_array() {}
  1173.   // to prevent drop fixed flag (no need parent cleanup call)
  1174.   void cleanup() {}
  1175.   void print(String *str);
  1176. };
  1177. class Item_cache_int: public Item_cache
  1178. {
  1179.   longlong value;
  1180. public:
  1181.   Item_cache_int(): Item_cache(), value(0) {}
  1182.   
  1183.   void store(Item *item);
  1184.   double val() { DBUG_ASSERT(fixed == 1); return (double) value; }
  1185.   longlong val_int() { DBUG_ASSERT(fixed == 1); return value; }
  1186.   String* val_str(String *str)
  1187.   {
  1188.     DBUG_ASSERT(fixed == 1);
  1189.     str->set(value, default_charset());
  1190.     return str;
  1191.   }
  1192.   enum Item_result result_type() const { return INT_RESULT; }
  1193. };
  1194. class Item_cache_real: public Item_cache
  1195. {
  1196.   double value;
  1197. public:
  1198.   Item_cache_real(): Item_cache(), value(0) {}
  1199.   void store(Item *item);
  1200.   double val() { DBUG_ASSERT(fixed == 1); return value; }
  1201.   longlong val_int()
  1202.   {
  1203.     DBUG_ASSERT(fixed == 1);
  1204.     return (longlong) (value+(value > 0 ? 0.5 : -0.5));
  1205.   }
  1206.   String* val_str(String *str)
  1207.   {
  1208.     str->set(value, decimals, default_charset());
  1209.     return str;
  1210.   }
  1211.   enum Item_result result_type() const { return REAL_RESULT; }
  1212. };
  1213. class Item_cache_str: public Item_cache
  1214. {
  1215.   char buffer[80];
  1216.   String *value, value_buff;
  1217. public:
  1218.   Item_cache_str(): Item_cache(), value(0) { }
  1219.   
  1220.   void store(Item *item);
  1221.   double val();
  1222.   longlong val_int();
  1223.   String* val_str(String *) { DBUG_ASSERT(fixed == 1); return value; }
  1224.   enum Item_result result_type() const { return STRING_RESULT; }
  1225.   CHARSET_INFO *charset() const { return value->charset(); };
  1226. };
  1227. class Item_cache_row: public Item_cache
  1228. {
  1229.   Item_cache  **values;
  1230.   uint item_count;
  1231.   bool save_array;
  1232. public:
  1233.   Item_cache_row()
  1234.     :Item_cache(), values(0), item_count(2), save_array(0) {}
  1235.   
  1236.   /*
  1237.     'allocate' used only in row transformer, to preallocate space for row 
  1238.     cache.
  1239.   */
  1240.   bool allocate(uint num);
  1241.   /*
  1242.     'setup' is needed only by row => it not called by simple row subselect
  1243.     (only by IN subselect (in subselect optimizer))
  1244.   */
  1245.   bool setup(Item *item);
  1246.   void store(Item *item);
  1247.   void illegal_method_call(const char *);
  1248.   void make_field(Send_field *)
  1249.   {
  1250.     illegal_method_call((const char*)"make_field");
  1251.   };
  1252.   double val()
  1253.   {
  1254.     illegal_method_call((const char*)"val");
  1255.     return 0;
  1256.   };
  1257.   longlong val_int()
  1258.   {
  1259.     illegal_method_call((const char*)"val_int");
  1260.     return 0;
  1261.   };
  1262.   String *val_str(String *)
  1263.   {
  1264.     illegal_method_call((const char*)"val_str");
  1265.     return 0;
  1266.   };
  1267.   enum Item_result result_type() const { return ROW_RESULT; }
  1268.   
  1269.   uint cols() { return item_count; }
  1270.   Item* el(uint i) { return values[i]; }
  1271.   Item** addr(uint i) { return (Item **) (values + i); }
  1272.   bool check_cols(uint c);
  1273.   bool null_inside();
  1274.   void bring_value();
  1275.   void keep_array() { save_array= 1; }
  1276.   void cleanup()
  1277.   {
  1278.     DBUG_ENTER("Item_cache_row::cleanup");
  1279.     Item_cache::cleanup();
  1280.     if (save_array)
  1281.       bzero(values, item_count*sizeof(Item**));
  1282.     else
  1283.       values= 0;
  1284.     DBUG_VOID_RETURN;
  1285.   }
  1286. };
  1287. /*
  1288.   Item_type_holder used to store type. name, length of Item for UNIONS &
  1289.   derived tables.
  1290.   Item_type_holder do not need cleanup() because its time of live limited by
  1291.   single SP/PS execution.
  1292. */
  1293. class Item_type_holder: public Item
  1294. {
  1295. protected:
  1296.   TYPELIB *enum_set_typelib;
  1297.   enum_field_types fld_type;
  1298.   void get_full_info(Item *item);
  1299. public:
  1300.   Item_type_holder(THD*, Item*);
  1301.   Item_result result_type() const;
  1302.   virtual enum_field_types field_type() const { return fld_type; };
  1303.   enum Type type() const { return TYPE_HOLDER; }
  1304.   double val();
  1305.   longlong val_int();
  1306.   String *val_str(String*);
  1307.   bool join_types(THD *thd, Item *);
  1308.   Field *make_field_by_type(TABLE *table);
  1309.   static uint32 display_length(Item *item);
  1310.   static enum_field_types get_real_type(Item *);
  1311. };
  1312. extern Item_buff *new_Item_buff(THD *thd, Item *item);
  1313. extern Item_result item_cmp_type(Item_result a,Item_result b);
  1314. extern void resolve_const_item(THD *thd, Item **ref, Item *cmp_item);
  1315. extern bool field_is_equal_to_item(Field *field,Item *item);