Commit 333ac13b authored by Vicențiu Ciorbaru's avatar Vicențiu Ciorbaru

Make sure to return the result value when calling Item_windowfunc::val_real()

This caused Item_windowfunc to return garbage.
parent 83330431
......@@ -497,6 +497,7 @@ class Item_window_func : public Item_result_field
res= window_func->val_real();
null_value= window_func->null_value;
}
return res;
}
longlong val_int()
......
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