Commit 1df20594 authored by unknown's avatar unknown
Browse files

merging


sql/field.cc:
  here we can get negative values
parent 90d14d50
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
}