1
0
mirror of https://github.com/MariaDB/server.git synced 2025-09-02 09:41:40 +03:00
sql/field.cc:
  here we can get negative values
This commit is contained in:
unknown
2006-11-08 20:41:47 +04:00
parent 90d14d50a9
commit 1df2059462

View File

@@ -4926,7 +4926,7 @@ int Field_time::store_time(TIME *ltime, timestamp_type type)
(ltime->minute * 100 + ltime->second);
if (ltime->neg)
tmp= -tmp;
return Field_time::store((longlong) tmp, TRUE);
return Field_time::store((longlong) tmp, FALSE);
}