Commit 34883792 authored by Alexey Kopytov's avatar Alexey Kopytov

Added a missing bit from the original patch for bug #27483 which was lost when re-applying

the patch manually to another tree. 
parent fbbcf450
...@@ -3473,7 +3473,7 @@ int Field_longlong::store(double nr) ...@@ -3473,7 +3473,7 @@ int Field_longlong::store(double nr)
error= 1; error= 1;
} }
else else
res=(longlong) (ulonglong) nr; res=(longlong) double2ulonglong(nr);
} }
else else
{ {
......
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