Browse Source

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

This caused Item_windowfunc to return garbage.
pull/216/head
Vicențiu Ciorbaru 10 years ago
parent
commit
333ac13be5
  1. 1
      sql/item_windowfunc.h

1
sql/item_windowfunc.h

@ -497,6 +497,7 @@ public:
res= window_func->val_real();
null_value= window_func->null_value;
}
return res;
}
longlong val_int()

Loading…
Cancel
Save