~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/make_set.cc

Updated pandora-build files to version 0.133

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
34
34
}
35
35
 
36
36
 
37
 
void Item_func_make_set::split_sum_func(Session *session_arg, Item **ref_pointer_array,
 
37
void Item_func_make_set::split_sum_func(Session *session, Item **ref_pointer_array,
38
38
                                        List<Item> &fields)
39
39
{
40
 
  item->split_sum_func(session_arg, ref_pointer_array, fields, &item, true);
41
 
  Item_str_func::split_sum_func(session_arg, ref_pointer_array, fields);
 
40
  item->split_sum_func(session, ref_pointer_array, fields, &item, true);
 
41
  Item_str_func::split_sum_func(session, ref_pointer_array, fields);
42
42
}
43
43
 
44
44
 
124
124
    change records at each execution.
125
125
  */
126
126
  if (item != new_item)
127
 
    session.change_item_tree(&item, new_item);
128
 
 
 
127
    current_session->change_item_tree(&item, new_item);
129
128
  return Item_str_func::transform(transformer, arg);
130
129
}
131
130