1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-392 Fix case

This commit is contained in:
Andrew Hutchings
2018-04-30 10:41:52 +01:00
parent fc05a9c6c2
commit a5f2f80bed
2 changed files with 46 additions and 5 deletions

View File

@ -146,7 +146,7 @@ int64_t addTime(Time& dt1, Time& dt2)
dt.second = 0;
dt.msecond = 0;
int64_t hour, min, sec, msec, tmp;
int64_t min, sec, msec, tmp;
msec = (signed)(dt1.msecond + dt2.msecond);
dt.msecond = tmp = msec % 1000000;