~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/row.cc

  • Committer: Monty Taylor
  • Date: 2009-12-22 20:47:20 UTC
  • mto: This revision was merged to the branch mainline in revision 1253.
  • Revision ID: mordred@inaugust.com-20091222204720-7ynx08xryaihgj8h
Removed one more public IO_CACHE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include <drizzled/server_includes.h>
 
16
#include "config.h"
 
17
#include <drizzled/error.h>
 
18
#include <drizzled/session.h>
 
19
 
 
20
#include <drizzled/item/row.h>
17
21
 
18
22
/**
19
23
  Row items used for comparing rows and IN operations on rows:
39
43
  else
40
44
    items= 0;
41
45
  List_iterator<Item> li(arg);
42
 
  uint i= 0;
 
46
  uint32_t i= 0;
43
47
  Item *item;
44
48
  while ((item= li++))
45
49
  {
46
50
    items[i]= item;
47
 
    i++;    
 
51
    i++;
48
52
  }
49
53
}
50
54
 
51
 
void Item_row::illegal_method_call(const char *method __attribute__((unused)))
 
55
void Item_row::illegal_method_call(const char *)
52
56
{
53
57
  assert(0);
54
58
  my_error(ER_OPERAND_COLUMNS, MYF(0), 1);
55
59
  return;
56
60
}
57
61
 
58
 
bool Item_row::fix_fields(THD *thd, Item **ref __attribute__((unused)))
 
62
bool Item_row::fix_fields(Session *session, Item **)
59
63
{
60
64
  assert(fixed == 0);
61
65
  null_value= 0;
63
67
  Item **arg, **arg_end;
64
68
  for (arg= items, arg_end= items+arg_count; arg != arg_end ; arg++)
65
69
  {
66
 
    if ((*arg)->fix_fields(thd, arg))
 
70
    if ((*arg)->fix_fields(session, arg))
67
71
      return true;
68
72
    // we can't assign 'item' before, because fix_fields() can change arg
69
73
    Item *item= *arg;
99
103
}
100
104
 
101
105
 
102
 
void Item_row::split_sum_func(THD *thd, Item **ref_pointer_array,
 
106
void Item_row::split_sum_func(Session *session, Item **ref_pointer_array,
103
107
                              List<Item> &fields)
104
108
{
105
109
  Item **arg, **arg_end;
106
110
  for (arg= items, arg_end= items+arg_count; arg != arg_end ; arg++)
107
 
    (*arg)->split_sum_func2(thd, ref_pointer_array, fields, arg, true);
 
111
    (*arg)->split_sum_func(session, ref_pointer_array, fields, arg, true);
108
112
}
109
113
 
110
114
 
112
116
{
113
117
  used_tables_cache= 0;
114
118
  const_item_cache= 1;
115
 
  for (uint i= 0; i < arg_count; i++)
 
119
  for (uint32_t i= 0; i < arg_count; i++)
116
120
  {
117
121
    items[i]->update_used_tables();
118
122
    used_tables_cache|= items[i]->used_tables();
120
124
  }
121
125
}
122
126
 
123
 
void Item_row::fix_after_pullout(st_select_lex *new_parent,
124
 
                                 Item **ref __attribute__((unused)))
 
127
void Item_row::fix_after_pullout(Select_Lex *new_parent, Item **)
125
128
{
126
129
  used_tables_cache= 0;
127
130
  const_item_cache= 1;
128
 
  for (uint i= 0; i < arg_count; i++)
 
131
  for (uint32_t i= 0; i < arg_count; i++)
129
132
  {
130
133
    items[i]->fix_after_pullout(new_parent, &items[i]);
131
134
    used_tables_cache|= items[i]->used_tables();
133
136
  }
134
137
}
135
138
 
136
 
bool Item_row::check_cols(uint c)
 
139
bool Item_row::check_cols(uint32_t c)
137
140
{
138
141
  if (c != arg_count)
139
142
  {
146
149
void Item_row::print(String *str, enum_query_type query_type)
147
150
{
148
151
  str->append('(');
149
 
  for (uint i= 0; i < arg_count; i++)
 
152
  for (uint32_t i= 0; i < arg_count; i++)
150
153
  {
151
154
    if (i)
152
155
      str->append(',');
156
159
}
157
160
 
158
161
 
159
 
bool Item_row::walk(Item_processor processor, bool walk_subquery, uchar *arg)
 
162
bool Item_row::walk(Item_processor processor, bool walk_subquery, unsigned char *arg)
160
163
{
161
 
  for (uint i= 0; i < arg_count; i++)
 
164
  for (uint32_t i= 0; i < arg_count; i++)
162
165
  {
163
166
    if (items[i]->walk(processor, walk_subquery, arg))
164
167
      return 1;
167
170
}
168
171
 
169
172
 
170
 
Item *Item_row::transform(Item_transformer transformer, uchar *arg)
 
173
Item *Item_row::transform(Item_transformer transformer, unsigned char *arg)
171
174
{
172
 
  for (uint i= 0; i < arg_count; i++)
 
175
  for (uint32_t i= 0; i < arg_count; i++)
173
176
  {
174
177
    Item *new_item= items[i]->transform(transformer, arg);
175
178
    if (!new_item)
176
179
      return 0;
177
180
 
178
181
    /*
179
 
      THD::change_item_tree() should be called only if the tree was
 
182
      Session::change_item_tree() should be called only if the tree was
180
183
      really transformed, i.e. when a new item has been created.
181
184
      Otherwise we'll be allocating a lot of unnecessary memory for
182
185
      change records at each execution.
183
186
    */
184
187
    if (items[i] != new_item)
185
 
      current_thd->change_item_tree(&items[i], new_item);
 
188
      current_session->change_item_tree(&items[i], new_item);
186
189
  }
187
190
  return (this->*transformer)(arg);
188
191
}
189
192
 
190
193
void Item_row::bring_value()
191
194
{
192
 
  for (uint i= 0; i < arg_count; i++)
 
195
  for (uint32_t i= 0; i < arg_count; i++)
193
196
    items[i]->bring_value();
194
197
}