item.h 27.9 KB
Newer Older
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1
/* Copyright (C) 2000-2003
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4 5 6
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
7

bk@work.mysql.com's avatar
bk@work.mysql.com committed
8 9 10 11
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
12

bk@work.mysql.com's avatar
bk@work.mysql.com committed
13 14 15 16 17 18 19 20 21
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


#ifdef __GNUC__
#pragma interface			/* gcc class implementation */
#endif

22
class Protocol;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
23
struct st_table_list;
24
void item_init(void);			/* Init item functions */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
25 26

class Item {
27 28
  uint loop_id;                         /* Used to find selfrefering loops */
  Item(const Item &);			/* Prevent use of these */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
29 30
  void operator=(Item &);
public:
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
31
  static void *operator new(size_t size) {return (void*) sql_alloc((uint) size); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
32 33
  static void operator delete(void *ptr,size_t size) {} /*lint -e715 */

34 35
  enum Type {FIELD_ITEM, FUNC_ITEM, SUM_FUNC_ITEM, STRING_ITEM,
	     INT_ITEM, REAL_ITEM, NULL_ITEM, VARBIN_ITEM,
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
36
	     COPY_STR_ITEM, FIELD_AVG_ITEM, DEFAULT_VALUE_ITEM,
37 38
	     PROC_ITEM,COND_ITEM, REF_ITEM, FIELD_STD_ITEM,
	     FIELD_VARIANCE_ITEM, INSERT_VALUE_ITEM,
39
             SUBSELECT_ITEM, ROW_ITEM, CACHE_ITEM};
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
40

bk@work.mysql.com's avatar
bk@work.mysql.com committed
41
  enum cond_result { COND_UNDEF,COND_OK,COND_TRUE,COND_FALSE };
42 43
  enum coercion    { COER_COERCIBLE=3, COER_IMPLICIT=2,
		     COER_NOCOLL=1,    COER_EXPLICIT=0  };
bk@work.mysql.com's avatar
bk@work.mysql.com committed
44 45 46 47 48 49 50 51

  String str_value;			/* used to store value */
  my_string name;			/* Name from select */
  Item *next;
  uint32 max_length;
  uint8 marker,decimals;
  my_bool maybe_null;			/* If item may be null */
  my_bool null_value;			/* if item is null */
52
  my_bool unsigned_flag;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
53
  my_bool with_sum_func;
54
  my_bool fixed;                        /* If item fixed with fix_fields */
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
55
  enum coercion coercibility;		/* Precedence order of collation */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
56 57 58

  // alloc & destruct is done as start of select using sql_alloc
  Item();
59 60 61 62 63 64
  /*
     Constructor used by Item_field, Item_ref & agregate (sum) functions.
     Used for duplicating lists in processing queries with temporary
     tables
  */
  Item(THD *thd, Item &item);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
65
  virtual ~Item() { name=0; }		/*lint -e1509 */
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
66
  void set_name(const char *str,uint length, CHARSET_INFO *cs);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
67
  void init_make_field(Send_field *tmp_field,enum enum_field_types type);
68
  virtual void make_field(Send_field *field);
69
  virtual bool fix_fields(THD *, struct st_table_list *, Item **);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
70
  virtual int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
71
  virtual void save_org_in_field(Field *field)
72
  { (void) save_in_field(field, 1); }
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
73
  virtual int save_safe_in_field(Field *field)
74
  { return save_in_field(field, 1); }
75
  virtual bool send(Protocol *protocol, String *str);
76
  virtual bool eq(const Item *, bool binary_cmp) const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
77
  virtual Item_result result_type () const { return REAL_RESULT; }
78
  virtual enum_field_types field_type() const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
79 80 81 82
  virtual enum Type type() const =0;
  virtual double val()=0;
  virtual longlong val_int()=0;
  virtual String *val_str(String*)=0;
83 84
  virtual Field *tmp_table_field() { return 0; }
  virtual Field *tmp_table_field(TABLE *t_arg) { return 0; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
85 86 87 88 89 90 91 92 93 94 95 96 97
  virtual const char *full_name() const { return name ? name : "???"; }
  virtual double  val_result() { return val(); }
  virtual longlong val_int_result() { return val_int(); }
  virtual String *str_result(String* tmp) { return val_str(tmp); }
  virtual table_map used_tables() const { return (table_map) 0L; }
  virtual bool basic_const_item() const { return 0; }
  virtual Item *new_item() { return 0; }	/* Only for const items */
  virtual cond_result eq_cmp_result() const { return COND_OK; }
  inline uint float_length(uint decimals_par) const
  { return decimals != NOT_FIXED_DEC ? (DBL_DIG+2+decimals_par) : DBL_DIG+8;}
  virtual bool const_item() const { return used_tables() == 0; }
  virtual void print(String *str_arg) { str_arg->append(full_name()); }
  virtual void update_used_tables() {}
98
  virtual void split_sum_func(Item **ref_pointer_array, List<Item> &fields) {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
99 100
  virtual bool get_date(TIME *ltime,bool fuzzydate);
  virtual bool get_time(TIME *ltime);
101 102
  virtual bool get_date_result(TIME *ltime,bool fuzzydate)
  { return get_date(ltime,fuzzydate); }
103
  virtual bool is_null() { return 0; }
104
  virtual void top_level_item() {}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
105 106 107
  virtual void set_result_field(Field *field) {}
  virtual bool is_result_field() { return 0; }
  virtual void save_in_result_field(bool no_conversions) {}
108
  virtual void no_rows_in_result() {}
109
  virtual Item *copy_or_same(THD *thd) { return this; }
110
  virtual Item *real_item() { return this; }
111
  virtual Item *get_tmp_table_item(THD *thd) { return copy_or_same(thd); }
112 113 114

  virtual bool binary() const
  { return str_value.charset()->state & MY_CS_BINSORT ? 1 : 0 ; }
115
  CHARSET_INFO *default_charset() const;
116 117
  CHARSET_INFO *charset() const { return str_value.charset(); };
  void set_charset(CHARSET_INFO *cs) { str_value.set_charset(cs); }
118 119 120 121 122 123 124
  void set_charset(CHARSET_INFO *cs, enum coercion coer)
  {
    str_value.set_charset(cs);
    coercibility= coer;
  }
  bool set_charset(CHARSET_INFO *cs1, enum coercion co1, 
  		   CHARSET_INFO *cs2, enum coercion co2);
125
  virtual void set_outer_resolving() {}
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
126 127 128 129

  // Row emulation
  virtual uint cols() { return 1; }
  virtual Item* el(uint i) { return this; }
130
  virtual Item** addr(uint i) { return 0; }
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
131
  virtual bool check_cols(uint c);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
132
  // It is not row => null inside is impossible
133 134 135
  virtual bool null_inside() { return 0; }
  // used in row subselects to get value of elements
  virtual void bring_value() {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
136 137 138
};


139
class st_select_lex;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
140 141 142 143 144 145
class Item_ident :public Item
{
public:
  const char *db_name;
  const char *table_name;
  const char *field_name;
146
  st_select_lex *depended_from;
147
  bool outer_resolving; /* used for items from reduced subselect */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
148 149
  Item_ident(const char *db_name_par,const char *table_name_par,
	     const char *field_name_par)
150 151
    :db_name(db_name_par), table_name(table_name_par),
     field_name(field_name_par), depended_from(0), outer_resolving(0)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
152
    { name = (char*) field_name_par; }
153 154
  // Constructor used by Item_field & Item_ref (see Item comment)
  Item_ident(THD *thd, Item_ident &item);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
155
  const char *full_name() const;
156
  void set_outer_resolving() { outer_resolving= 1; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
157 158
};

159

bk@work.mysql.com's avatar
bk@work.mysql.com committed
160 161 162 163 164 165 166 167 168 169
class Item_field :public Item_ident
{
  void set_field(Field *field);
public:
  Field *field,*result_field;
  // Item_field() {}

  Item_field(const char *db_par,const char *table_name_par,
	     const char *field_name_par)
    :Item_ident(db_par,table_name_par,field_name_par),field(0),result_field(0)
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
170
  { coercibility= COER_IMPLICIT; }
171 172
  // Constructor need to process subselect with temporary tables (see Item)
  Item_field(THD *thd, Item_field &item);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
173 174
  Item_field(Field *field);
  enum Type type() const { return FIELD_ITEM; }
175
  bool eq(const Item *item, bool binary_cmp) const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
176 177 178 179 180 181
  double val();
  longlong val_int();
  String *val_str(String*);
  double val_result();
  longlong val_int_result();
  String *str_result(String* tmp);
182
  bool send(Protocol *protocol, String *str_arg);
183
  bool fix_fields(THD *, struct st_table_list *, Item **);
184
  void make_field(Send_field *tmp_field);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
185
  int save_in_field(Field *field,bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
186 187 188 189 190 191
  void save_org_in_field(Field *field);
  table_map used_tables() const;
  enum Item_result result_type () const
  {
    return field->result_type();
  }
192
  enum_field_types field_type() const
193 194 195
  {
    return field->type();
  }
196 197
  Field *tmp_table_field() { return result_field; }
  Field *tmp_table_field(TABLE *t_arg) { return result_field; }
198 199 200
  bool get_date(TIME *ltime,bool fuzzydate);
  bool get_date_result(TIME *ltime,bool fuzzydate);
  bool get_time(TIME *ltime);
201
  bool is_null() { return field->is_null(); }
202
  Item *get_tmp_table_item(THD *thd);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
203
  friend class Item_default_value;
204
  friend class Item_insert_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
205 206 207 208 209 210 211 212
};

class Item_null :public Item
{
public:
  Item_null(char *name_par=0)
    { maybe_null=null_value=TRUE; name= name_par ? name_par : (char*) "NULL";}
  enum Type type() const { return NULL_ITEM; }
213
  bool eq(const Item *item, bool binary_cmp) const;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
214 215 216
  double val();
  longlong val_int();
  String *val_str(String *str);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
217
  int save_in_field(Field *field, bool no_conversions);
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
218
  int save_safe_in_field(Field *field);
hf@deer.mysql.r18.ru's avatar
Merging  
hf@deer.mysql.r18.ru committed
219
  bool send(Protocol *protocol, String *str);
220 221 222 223 224 225 226 227
  enum Item_result result_type () const { return STRING_RESULT; }
  enum_field_types field_type() const   { return MYSQL_TYPE_NULL; }
  bool fix_fields(THD *thd, struct st_table_list *list, Item **item)
  {
    bool res= Item::fix_fields(thd, list, item);
    max_length=0;
    return res;
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
228 229
  bool basic_const_item() const { return 1; }
  Item *new_item() { return new Item_null(name); }
230
  bool is_null() { return 1; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
231 232
};

233 234 235 236 237
class Item_param :public Item
{
public:    
  longlong int_value;
  double   real_value;
238
  TIME     ltime;
239 240 241
  enum Item_result item_result_type;
  enum Type item_type;
  enum enum_field_types buffer_type;
242
  bool item_is_time;
243 244
  bool long_data_supplied;
  uint pos_in_query;
245

246
  Item_param::Item_param(uint position)
247
  { 
248 249
    name= (char*) "?";
    pos_in_query= position;
venu@myvenu.com's avatar
venu@myvenu.com committed
250
    item_type= STRING_ITEM;
251
    item_result_type = STRING_RESULT;
252
    item_is_time= false;
253
    long_data_supplied= false;
254 255 256 257 258
  }
  enum Type type() const { return item_type; }
  double val();
  longlong val_int();
  String *val_str(String*);
venu@myvenu.com's avatar
venu@myvenu.com committed
259
  int  save_in_field(Field *field, bool no_conversions);
260 261 262
  void set_null();
  void set_int(longlong i);
  void set_double(double i);
venu@myvenu.com's avatar
venu@myvenu.com committed
263 264 265 266
  void set_value(const char *str, uint length);
  void set_long_str(const char *str, ulong length);
  void set_long_binary(const char *str, ulong length);
  void set_longdata(const char *str, ulong length);
267
  void set_long_end();
268 269
  void set_time(TIME *tm, timestamp_type type);
  bool get_time(TIME *tm);
270
  void reset() {}
venu@myvenu.com's avatar
venu@myvenu.com committed
271
  void (*setup_param_func)(Item_param *param, uchar **pos);
272
  enum Item_result result_type () const
273
  { return item_result_type; }
274
  String *query_val_str(String *str);
275
  enum_field_types field_type() const { return MYSQL_TYPE_STRING; }
276
  Item *new_item() { return new Item_param(pos_in_query); }
277
};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293

class Item_int :public Item
{
public:
  const longlong value;
  Item_int(int32 i,uint length=11) :value((longlong) i)
    { max_length=length;}
#ifdef HAVE_LONG_LONG
  Item_int(longlong i,uint length=21) :value(i)
    { max_length=length;}
#endif
  Item_int(const char *str_arg,longlong i,uint length) :value(i)
    { max_length=length; name=(char*) str_arg;}
  Item_int(const char *str_arg) :
    value(str_arg[0] == '-' ? strtoll(str_arg,(char**) 0,10) :
	  (longlong) strtoull(str_arg,(char**) 0,10))
monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
294
    { max_length= (uint) strlen(str_arg); name=(char*) str_arg;}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
295
  enum Type type() const { return INT_ITEM; }
296 297
  enum Item_result result_type () const { return INT_RESULT; }
  enum_field_types field_type() const { return MYSQL_TYPE_LONGLONG; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
298 299 300
  longlong val_int() { return value; }
  double val() { return (double) value; }
  String *val_str(String*);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
301
  int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
302 303 304 305 306 307
  bool basic_const_item() const { return 1; }
  Item *new_item() { return new Item_int(name,value,max_length); }
  void print(String *str);
};


308 309 310 311 312
class Item_uint :public Item_int
{
public:
  Item_uint(const char *str_arg, uint length) :
    Item_int(str_arg, (longlong) strtoull(str_arg,(char**) 0,10), length) {}
313
  Item_uint(uint32 i) :Item_int((longlong) i, 10) {}
314 315 316
  double val() { return ulonglong2double(value); }
  String *val_str(String*);
  Item *new_item() { return new Item_uint(name,max_length); }
317 318 319 320 321 322
  bool fix_fields(THD *thd, struct st_table_list *list, Item **item)
  {
    bool res= Item::fix_fields(thd, list, item);
    unsigned_flag= 1;
    return res;
  }
323 324 325 326
  void print(String *str);
};


bk@work.mysql.com's avatar
bk@work.mysql.com committed
327 328 329 330 331 332 333 334
class Item_real :public Item
{
public:
  const double value;
  // Item_real() :value(0) {}
  Item_real(const char *str_arg,uint length) :value(atof(str_arg))
  {
    name=(char*) str_arg;
335
    decimals=(uint8) nr_of_decimals(str_arg);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
336 337 338 339 340 341
    max_length=length;
  }
  Item_real(const char *str,double val_arg,uint decimal_par,uint length)
    :value(val_arg)
  {
    name=(char*) str;
342
    decimals=(uint8) decimal_par;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
343 344 345
    max_length=length;
  }
  Item_real(double value_par) :value(value_par) {}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
346
  int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
347
  enum Type type() const { return REAL_ITEM; }
348
  enum_field_types field_type() const { return MYSQL_TYPE_DOUBLE; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
  double val() { return value; }
  longlong val_int() { return (longlong) (value+(value > 0 ? 0.5 : -0.5));}
  String *val_str(String*);
  bool basic_const_item() const { return 1; }
  Item *new_item() { return new Item_real(name,value,decimals,max_length); }
};


class Item_float :public Item_real
{
public:
  Item_float(const char *str,uint length) :Item_real(str,length)
  {
    decimals=NOT_FIXED_DEC;
    max_length=DBL_DIG+8;
  }
};

class Item_string :public Item
{
public:
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
370 371
  Item_string(const char *str,uint length,
  	      CHARSET_INFO *cs, enum coercion coer= COER_COERCIBLE)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
372
  {
373
    str_value.set(str,length,cs);
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
374
    coercibility= coer;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
375
    max_length=length;
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
376
    set_name(str, length, cs);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
377 378
    decimals=NOT_FIXED_DEC;
  }
379
  Item_string(const char *name_par, const char *str, uint length,
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
380
	      CHARSET_INFO *cs, enum coercion coer= COER_COERCIBLE)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
381
  {
382
    str_value.set(str,length,cs);
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
383
    coercibility= coer;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
384
    max_length=length;
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
385
    set_name(name_par,0,cs);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
386 387 388 389
    decimals=NOT_FIXED_DEC;
  }
  ~Item_string() {}
  enum Type type() const { return STRING_ITEM; }
390 391
  double val()
  { 
392
    int err;
393
    return my_strntod(str_value.charset(), (char*) str_value.ptr(),
394
		      str_value.length(), (char**) 0, &err);
395 396 397
  }
  longlong val_int()
  {
398
    int err;
399
    return my_strntoll(str_value.charset(), str_value.ptr(),
400
		       str_value.length(), 10, (char**) 0, &err);
401
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
402
  String *val_str(String*) { return (String*) &str_value; }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
403
  int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
404
  enum Item_result result_type () const { return STRING_RESULT; }
405
  enum_field_types field_type() const { return MYSQL_TYPE_STRING; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
406
  bool basic_const_item() const { return 1; }
407
  bool eq(const Item *item, bool binary_cmp) const;
408 409
  Item *new_item() 
  {
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
410
    return new Item_string(name, str_value.ptr(), max_length, &my_charset_bin);
411
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
412
  String *const_string() { return &str_value; }
413
  inline void append(char *str, uint length) { str_value.append(str, length); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
414 415 416 417 418 419 420 421
  void print(String *str);
};

/* for show tables */

class Item_datetime :public Item_string
{
public:
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
422 423
  Item_datetime(const char *item_name): Item_string(item_name,"",0,
  						    &my_charset_bin)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
424
  { max_length=19;}
425
  enum_field_types field_type() const { return MYSQL_TYPE_DATETIME; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
426 427 428 429 430
};

class Item_empty_string :public Item_string
{
public:
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
431 432
  Item_empty_string(const char *header,uint length) :Item_string("",0,
  							&my_charset_bin)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
433 434 435
    { name=(char*) header; max_length=length;}
};

436 437 438 439 440 441 442 443 444 445 446 447 448 449
class Item_return_int :public Item_int
{
  enum_field_types int_field_type;
public:
  Item_return_int(const char *name, uint length,
		  enum_field_types field_type_arg)
    :Item_int(name, 0, length), int_field_type(field_type_arg)
  {
    unsigned_flag=1;
  }
  enum_field_types field_type() const { return int_field_type; }
};


bk@work.mysql.com's avatar
bk@work.mysql.com committed
450 451 452
class Item_varbinary :public Item
{
public:
453
  Item_varbinary(const char *str,uint str_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
454 455 456 457 458
  ~Item_varbinary() {}
  enum Type type() const { return VARBIN_ITEM; }
  double val() { return (double) Item_varbinary::val_int(); }
  longlong val_int();
  String *val_str(String*) { return &str_value; }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
459
  int save_in_field(Field *field, bool no_conversions);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
460
  enum Item_result result_type () const { return INT_RESULT; }
461
  enum_field_types field_type() const { return MYSQL_TYPE_STRING; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
462 463 464 465 466 467 468 469
};


class Item_result_field :public Item	/* Item with result field */
{
public:
  Field *result_field;				/* Save result here */
  Item_result_field() :result_field(0) {}
470 471 472 473
  // Constructor used for Item_sum (see Item comment)
  Item_result_field(THD *thd, Item_result_field &item):
    Item(thd, item), result_field(item.result_field)
  {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
474
  ~Item_result_field() {}			/* Required with gcc 2.95 */
475 476
  Field *tmp_table_field() { return result_field; }
  Field *tmp_table_field(TABLE *t_arg) { return result_field; }
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
477
  table_map used_tables() const { return 1; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
478
  virtual void fix_length_and_dec()=0;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
479 480 481 482 483 484
  void set_result_field(Field *field) { result_field= field; }
  bool is_result_field() { return 1; }
  void save_in_result_field(bool no_conversions)
  {
    save_in_field(result_field, no_conversions);
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
485 486 487 488 489 490
};


class Item_ref :public Item_ident
{
public:
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
491
  Field *result_field;				/* Save result here */
serg@serg.mysql.com's avatar
serg@serg.mysql.com committed
492
  Item **ref;
493 494
  Item_ref(const char *db_par, const char *table_name_par,
	   const char *field_name_par)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
495
    :Item_ident(db_par,table_name_par,field_name_par),ref(0) {}
496
  Item_ref(Item **item, const char *table_name_par, const char *field_name_par)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
497
    :Item_ident(NullS,table_name_par,field_name_par),ref(item) {}
498 499 500
  // Constructor need to process subselect with temporary tables (see Item)
  Item_ref(THD *thd, Item_ref &item)
    :Item_ident(thd, item), ref(item.ref) {}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
501
  enum Type type() const		{ return REF_ITEM; }
502
  bool eq(const Item *item, bool binary_cmp) const
503
  { return ref && (*ref)->eq(item, binary_cmp); }
504
  ~Item_ref() { if (ref && (*ref) && (*ref) != this) delete *ref; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
505 506 507
  double val()
  {
    double tmp=(*ref)->val_result();
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
508
    null_value=(*ref)->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
509 510 511 512 513
    return tmp;
  }
  longlong val_int()
  {
    longlong tmp=(*ref)->val_int_result();
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
514
    null_value=(*ref)->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
515 516 517 518 519
    return tmp;
  }
  String *val_str(String* tmp)
  {
    tmp=(*ref)->str_result(tmp);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
520
    null_value=(*ref)->null_value;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
521 522
    return tmp;
  }
523 524 525
  bool is_null()
  {
    (void) (*ref)->val_int_result();
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
526
    return (*ref)->null_value;
527
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
528
  bool get_date(TIME *ltime,bool fuzzydate)
529 530
  {
    return (null_value=(*ref)->get_date_result(ltime,fuzzydate));
bk@work.mysql.com's avatar
bk@work.mysql.com committed
531
  }
532
  bool send(Protocol *prot, String *tmp){ return (*ref)->send(prot, tmp); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
533
  void make_field(Send_field *field)	{ (*ref)->make_field(field); }
534
  bool fix_fields(THD *, struct st_table_list *, Item **);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
535
  int save_in_field(Field *field, bool no_conversions)
536
  { return (*ref)->save_in_field(field, no_conversions); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
537 538
  void save_org_in_field(Field *field)	{ (*ref)->save_org_in_field(field); }
  enum Item_result result_type () const { return (*ref)->result_type(); }
539
  enum_field_types field_type() const   { return (*ref)->field_type(); }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
540
  table_map used_tables() const		{ return (*ref)->used_tables(); }
541
  void set_result_field(Field *field)	{ result_field= field; }
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
542 543 544 545 546
  bool is_result_field() { return 1; }
  void save_in_result_field(bool no_conversions)
  {
    (*ref)->save_in_field(result_field, no_conversions);
  }
547
  Item *real_item() { return *ref; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
548 549
};

550 551 552 553 554 555 556
class Item_in_subselect;
class Item_ref_null_helper: public Item_ref
{
protected:
  Item_in_subselect* owner;
public:
  Item_ref_null_helper(Item_in_subselect* master, Item **item,
557
		       const char *table_name_par, const char *field_name_par):
558 559 560 561 562
    Item_ref(item, table_name_par, field_name_par), owner(master) {}
  double val();
  longlong val_int();
  String* val_str(String* s);
  bool get_date(TIME *ltime, bool fuzzydate);
563 564 565 566 567 568 569 570 571
  void print(String *str)
  {
    str->append("ref_null_helper(");
    if (ref && *ref)
      (*ref)->print(str);
    else
      str->append('?');
    str->append(')');
  }
572 573
};

574 575 576

/*
  Used to find item in list of select items after '*' items processing.
577 578 579 580

  Because item '*' can be used in item list. when we create
  Item_ref_on_list_position we do not know how item list will be changed, but
  we know number of item position (I mean queries like "select * from t").
581 582 583 584
*/
class Item_ref_on_list_position: public Item_ref_null_helper
{
protected:
585 586 587
  /* 
     select_lex used for:
     1) receiving expanded variant of item list (to check max possible 
588
        number of elements);
589 590
     2) to have access to  ref_pointer_array, via wich item will refered.
  */
591
  st_select_lex *select_lex;
592 593 594
  uint pos;
public:
  Item_ref_on_list_position(Item_in_subselect* master,
595
			    st_select_lex *sl, uint num,
596 597
			    char *table_name, char *field_name):
    Item_ref_null_helper(master, 0, table_name, field_name),
598
    select_lex(sl), pos(num) {}
599 600 601
  bool fix_fields(THD *, struct st_table_list *, Item ** ref);
};

602 603 604 605 606 607 608 609 610 611 612 613 614 615
/*
  To resolve '*' field moved to condition
  and register NULL values
*/
class Item_asterisk_remover :public Item_ref_null_helper
{
  Item *item;
public:
  Item_asterisk_remover(Item_in_subselect *master, Item *it,
			char *table, char *field):
    Item_ref_null_helper(master, &item, table, field),
    item(it) 
  {}
  bool fix_fields(THD *, struct st_table_list *, Item ** ref);
616
  Item **storage() {return &item;}
617 618 619 620 621 622 623 624 625
  void print(String *str)
  {
    str->append("ref_null_helper('");
    if (item)
      item->print(str);
    else
      str->append('?');
    str->append(')');
  }
626 627
};

628 629 630 631 632 633 634 635 636 637 638 639
/*
  The following class is used to optimize comparing of date columns
  We need to save the original item, to be able to set the field to the
  original value in 'opt_range'.
*/

class Item_int_with_ref :public Item_int
{
  Item *ref;
public:
  Item_int_with_ref(longlong i, Item *ref_arg) :Item_int(i), ref(ref_arg)
  {}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
640
  int save_in_field(Field *field, bool no_conversions)
641
  {
642
    return ref->save_in_field(field, no_conversions);
643 644 645 646
  }
};


647
#include "gstream.h"
648
#include "spatial.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
649 650
#include "item_sum.h"
#include "item_func.h"
651
#include "item_row.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
652 653 654 655
#include "item_cmpfunc.h"
#include "item_strfunc.h"
#include "item_timefunc.h"
#include "item_uniq.h"
656
#include "item_subselect.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
657 658 659

class Item_copy_string :public Item
{
660
  enum enum_field_types cached_field_type;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
661 662 663 664 665 666 667 668
public:
  Item *item;
  Item_copy_string(Item *i) :item(i)
  {
    null_value=maybe_null=item->maybe_null;
    decimals=item->decimals;
    max_length=item->max_length;
    name=item->name;
669
    cached_field_type= item->field_type();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
670 671 672 673
  }
  ~Item_copy_string() { delete item; }
  enum Type type() const { return COPY_STR_ITEM; }
  enum Item_result result_type () const { return STRING_RESULT; }
674
  enum_field_types field_type() const { return cached_field_type; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
675
  double val()
676
  {
677
    int err;
678 679
    return (null_value ? 0.0 :
	    my_strntod(str_value.charset(), (char*) str_value.ptr(),
680
		       str_value.length(),NULL,&err));
681
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
682
  longlong val_int()
683 684 685 686
  { 
    int err;
    return null_value ? LL(0) : my_strntoll(str_value.charset(),str_value.ptr(),str_value.length(),10, (char**) 0,&err); 
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
687 688 689 690 691
  String *val_str(String*);
  void make_field(Send_field *field) { item->make_field(field); }
  void copy();
  table_map used_tables() const { return (table_map) 1L; }
  bool const_item() const { return 0; }
692
  bool is_null() { return null_value; }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749
};


class Item_buff :public Sql_alloc
{
public:
  my_bool null_value;
  Item_buff() :null_value(0) {}
  virtual bool cmp(void)=0;
  virtual ~Item_buff(); /*line -e1509 */
};

class Item_str_buff :public Item_buff
{
  Item *item;
  String value,tmp_value;
public:
  Item_str_buff(Item *arg) :item(arg),value(arg->max_length) {}
  bool cmp(void);
  ~Item_str_buff();				// Deallocate String:s
};


class Item_real_buff :public Item_buff
{
  Item *item;
  double value;
public:
  Item_real_buff(Item *item_par) :item(item_par),value(0.0) {}
  bool cmp(void);
};

class Item_int_buff :public Item_buff
{
  Item *item;
  longlong value;
public:
  Item_int_buff(Item *item_par) :item(item_par),value(0) {}
  bool cmp(void);
};


class Item_field_buff :public Item_buff
{
  char *buff;
  Field *field;
  uint length;

public:
  Item_field_buff(Item_field *item)
  {
    field=item->field;
    buff= (char*) sql_calloc(length=field->pack_length());
  }
  bool cmp(void);
};

hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
750 751 752 753
class Item_default_value : public Item_field
{
public:
  Item *arg;
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
754 755
  Item_default_value() :
    Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(NULL) {}
756
  Item_default_value(Item *a) :
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
757
    Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(a) {}
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
758
  enum Type type() const { return DEFAULT_VALUE_ITEM; }
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
759 760
  bool eq(const Item *item, bool binary_cmp) const;
  bool fix_fields(THD *, struct st_table_list *, Item **);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
761 762
  void set_outer_resolving() { arg->set_outer_resolving(); }
  void print(String *str);
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
763 764 765 766 767 768 769 770 771 772
  virtual bool basic_const_item() const { return true; }
  int save_in_field(Field *field, bool no_conversions)
  {
    if (!arg)
    {
      field->set_default();
      return 0;
    }
    return Item_field::save_in_field(field, no_conversions);
  }
hf@deer.mysql.r18.ru's avatar
SCRUM  
hf@deer.mysql.r18.ru committed
773
  table_map used_tables() const { return (table_map)0L; }
hf@deer.mysql.r18.ru's avatar
hf@deer.mysql.r18.ru committed
774
};
hf@deer.mysql.r18.ru's avatar
hf@deer.mysql.r18.ru committed
775

776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793
class Item_insert_value : public Item_field
{
public:
  Item *arg;
  Item_insert_value(Item *a) :
    Item_field((const char *)NULL, (const char *)NULL, (const char *)NULL), arg(a) {}
  bool eq(const Item *item, bool binary_cmp) const;
  bool fix_fields(THD *, struct st_table_list *, Item **);
  void set_outer_resolving() { arg->set_outer_resolving(); }
  void print(String *str);
  virtual bool basic_const_item() const { return true; }
  int save_in_field(Field *field, bool no_conversions)
  {
    return Item_field::save_in_field(field, no_conversions);
  }
  table_map used_tables() const { return (table_map)0L; }
};

794 795
class Item_cache: public Item
{
796
  table_map used_table_map;
797
public:
798 799 800 801
  Item_cache(): used_table_map(0) {fixed= 1; null_value= 1;}

  void set_used_tables(table_map map) { used_table_map= map; }

802 803
  virtual bool allocate(uint i) { return 0; };
  virtual bool setup(Item *) { return 0; };
804 805 806 807 808 809 810
  virtual void store(Item *)= 0;
  void set_len_n_dec(uint32 max_len, uint8 dec)
  {
    max_length= max_len;
    decimals= dec;
  }
  enum Type type() const { return CACHE_ITEM; }
811
  static Item_cache* get_cache(Item_result type);
812
  table_map used_tables() const { return used_table_map; }
813 814 815 816 817 818
};

class Item_cache_int: public Item_cache
{
  longlong value;
public:
819
  Item_cache_int(): Item_cache() {}
820 821 822 823 824 825 826 827
  
  void store(Item *item)
  {
    value= item->val_int_result();
    null_value= item->null_value;
  }
  double val() { return (double) value; }
  longlong val_int() { return value; }
828
  String* val_str(String *str) { str->set(value, default_charset()); return str; }
829 830 831 832 833 834 835
  enum Item_result result_type() const { return INT_RESULT; }
};

class Item_cache_real: public Item_cache
{
  double value;
public:
836
  Item_cache_real(): Item_cache() {}
837 838 839 840 841 842 843 844 845 846
  
  void store(Item *item)
  {
    value= item->val_result();
    null_value= item->null_value;
  }
  double val() { return value; }
  longlong val_int() { return (longlong) (value+(value > 0 ? 0.5 : -0.5)); }
  String* val_str(String *str)
  {
847
    str->set(value, decimals, default_charset());
848 849 850 851 852 853 854 855 856 857
    return str;
  }
  enum Item_result result_type() const { return REAL_RESULT; }
};

class Item_cache_str: public Item_cache
{
  char buffer[80];
  String *value;
public:
858
  Item_cache_str(): Item_cache() { }
859
  
860 861 862
  void store(Item *item);
  double val();
  longlong val_int();
863 864 865 866 867
  String* val_str(String *) { return value; }
  enum Item_result result_type() const { return STRING_RESULT; }
  CHARSET_INFO *charset() const { return value->charset(); };
};

868 869 870
class Item_cache_row: public Item_cache
{
  Item_cache  **values;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
871
  uint item_count;
872
public:
873
  Item_cache_row(): Item_cache(), values(0), item_count(2) {}
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907
  
  /*
    'allocate' used only in row transformer, to preallocate space for row 
    cache.
  */
  bool allocate(uint num);
  /*
    'setup' is needed only by row => it not called by simple row subselect
    (only by IN subselect (in subselect optimizer))
  */
  bool setup(Item *item);
  void store(Item *item);
  void illegal_method_call(const char *);
  void make_field(Send_field *)
  {
    illegal_method_call((const char*)"make_field");
  };
  double val()
  {
    illegal_method_call((const char*)"val");
    return 0;
  };
  longlong val_int()
  {
    illegal_method_call((const char*)"val_int");
    return 0;
  };
  String *val_str(String *)
  {
    illegal_method_call((const char*)"val_str");
    return 0;
  };
  enum Item_result result_type() const { return ROW_RESULT; }
  
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
908
  uint cols() { return item_count; }
909 910 911 912 913 914 915
  Item* el(uint i) { return values[i]; }
  Item** addr(uint i) { return (Item **) (values + i); }
  bool check_cols(uint c);
  bool null_inside();
  void bring_value();
};

bk@work.mysql.com's avatar
bk@work.mysql.com committed
916 917 918 919
extern Item_buff *new_Item_buff(Item *item);
extern Item_result item_cmp_type(Item_result a,Item_result b);
extern Item *resolve_const_item(Item *item,Item *cmp_item);
extern bool field_is_equal_to_item(Field *field,Item *item);