Commit bc231c3d authored by ram@gw.mysql.r18.ru's avatar ram@gw.mysql.r18.ru

A fix. Why didn't we use UINT_MAX32?

parent 9e467cc0
......@@ -1863,9 +1863,9 @@ int Field_long::store(double nr)
res=0;
error= 1;
}
else if (nr > (double) (ulong) ~0L)
else if (nr > (double) UINT_MAX32)
{
res=(int32) (uint32) ~0L;
res= UINT_MAX32;
error= 1;
}
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