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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. class Item_row: public Item
  14. {
  15.   Item **items;
  16.   table_map used_tables_cache;
  17.   uint arg_count;
  18.   bool array_holder;
  19.   bool const_item_cache;
  20.   bool with_null;
  21. public:
  22.   Item_row(List<Item> &);
  23.   Item_row(Item_row *item):
  24.     Item(),
  25.     items(item->items),
  26.     used_tables_cache(item->used_tables_cache),
  27.     arg_count(item->arg_count),
  28.     array_holder(0), 
  29.     const_item_cache(item->const_item_cache),
  30.     with_null(0)
  31.   {}
  32.   enum Type type() const { return ROW_ITEM; };
  33.   void illegal_method_call(const char *);
  34.   bool is_null() { return null_value; }
  35.   void make_field(Send_field *)
  36.   {
  37.     illegal_method_call((const char*)"make_field");
  38.   };
  39.   double val()
  40.   {
  41.     illegal_method_call((const char*)"val");
  42.     return 0;
  43.   };
  44.   longlong val_int()
  45.   {
  46.     illegal_method_call((const char*)"val_int");
  47.     return 0;
  48.   };
  49.   String *val_str(String *)
  50.   {
  51.     illegal_method_call((const char*)"val_str");
  52.     return 0;
  53.   };
  54.   bool fix_fields(THD *thd, TABLE_LIST *tables, Item **ref);
  55.   void split_sum_func(THD *thd, Item **ref_pointer_array, List<Item> &fields);
  56.   table_map used_tables() const { return used_tables_cache; };
  57.   bool const_item() const { return const_item_cache; };
  58.   enum Item_result result_type() const { return ROW_RESULT; }
  59.   void update_used_tables();
  60.   void print(String *str);
  61.   bool walk(Item_processor processor, byte *arg);
  62.   uint cols() { return arg_count; }
  63.   Item* el(uint i) { return items[i]; }
  64.   Item** addr(uint i) { return items + i; }
  65.   bool check_cols(uint c);
  66.   bool null_inside() { return with_null; };
  67.   void bring_value();
  68. };