mirror of
https://github.com/MariaDB/server.git
synced 2026-04-22 08:15:31 +02:00
various fixes for buildbot failures
This commit is contained in:
parent
10fedf675a
commit
f1a5c49c4e
19 changed files with 193 additions and 271 deletions
|
|
@ -1280,7 +1280,7 @@ int number_to_time(my_bool neg, longlong nr, ulong sec_part,
|
|||
sec_part= TIME_MAX_SECOND_PART;
|
||||
*was_cut= MYSQL_TIME_WARN_OUT_OF_RANGE;
|
||||
}
|
||||
ltime->hour = nr/100/100;
|
||||
ltime->hour = (uint)(nr/100/100);
|
||||
ltime->minute= nr/100%100;
|
||||
ltime->second= nr%100;
|
||||
ltime->second_part= sec_part;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue