Commit 1df20594 authored by unknown's avatar unknown

merging


sql/field.cc:
  here we can get negative values
parent 90d14d50
...@@ -4926,7 +4926,7 @@ int Field_time::store_time(TIME *ltime, timestamp_type type) ...@@ -4926,7 +4926,7 @@ int Field_time::store_time(TIME *ltime, timestamp_type type)
(ltime->minute * 100 + ltime->second); (ltime->minute * 100 + ltime->second);
if (ltime->neg) if (ltime->neg)
tmp= -tmp; tmp= -tmp;
return Field_time::store((longlong) tmp, TRUE); return Field_time::store((longlong) tmp, FALSE);
} }
......
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