Fix for MIX and MAX. Item must be checked against binary().

This commit is contained in:
bar@bar.mysql.r18.ru 2003-02-26 10:33:45 +04:00
parent f4e1a2f292
commit 850768e741

View File

@ -188,7 +188,7 @@ Item_sum_hybrid::fix_fields(THD *thd, TABLE_LIST *tables, Item **ref)
max_length=float_length(decimals);
else
{
str_cmp_function= binary() ? stringcmp : sortcmp;
str_cmp_function= item->binary() ? stringcmp : sortcmp;
max_length=item->max_length;
}
decimals=item->decimals;