Commit 53a4949d authored by evgen@moonbone.local's avatar evgen@moonbone.local

sql_select.cc:

  Fix for crashes on 64bit platforms after fixing bug#23417.
parent fcf2b139
...@@ -13416,10 +13416,12 @@ count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields, ...@@ -13416,10 +13416,12 @@ count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields,
param->quick_group=1; param->quick_group=1;
while ((field=li++)) while ((field=li++))
{ {
Item::Type type=field->real_item()->type(); Item::Type type=field->type();
if (type == Item::FIELD_ITEM) Item::Type real_type= field->real_item()->type();
if (type == Item::FIELD_ITEM || (real_type == Item::FIELD_ITEM &&
(type != Item::REF_ITEM || !((Item_ref *) field)->depended_from)))
param->field_count++; param->field_count++;
else if (type == Item::SUM_FUNC_ITEM) else if (real_type == Item::SUM_FUNC_ITEM)
{ {
if (! field->const_item()) if (! field->const_item())
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment