summaryrefslogtreecommitdiff
path: root/sql/item_row.cc
diff options
context:
space:
mode:
authorhf@deer.(none) <>2003-12-30 14:08:19 +0400
committerhf@deer.(none) <>2003-12-30 14:08:19 +0400
commitbfe134b86fad8eaa46196c8283cc91e6c77769b0 (patch)
tree2ae6e41d1324a906e2f8a6868b34fe75950e736f /sql/item_row.cc
parent1547a03c797fa547f1664d9c56a313daf62972bc (diff)
downloadmariadb-git-bfe134b86fad8eaa46196c8283cc91e6c77769b0.tar.gz
Fix for prepared statements
Here i added Item_*::cleanup() functions, removed a lot of ~Item_*'s, added code to restore order_list and group_list
Diffstat (limited to 'sql/item_row.cc')
-rw-r--r--sql/item_row.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_row.cc b/sql/item_row.cc
index 89b38c8a753..7f847bd1d4e 100644
--- a/sql/item_row.cc
+++ b/sql/item_row.cc
@@ -91,7 +91,7 @@ void Item_row::split_sum_func(Item **ref_pointer_array, List<Item> &fields)
uint el= fields.elements;
fields.push_front(*arg);
ref_pointer_array[el]= *arg;
- *arg= new Item_ref(ref_pointer_array + el, 0, (*arg)->name);
+ *arg= new Item_ref(ref_pointer_array + el, arg, 0, (*arg)->name);
}
}
}