Set MYSQL_TIME variable to maximum time value @param tm OUT The variable to set. @param neg Sign: 1 if negative, 0 if positive. */
| 90 | @param neg Sign: 1 if negative, 0 if positive. |
| 91 | */ |
| 92 | void set_max_time(MYSQL_TIME *tm, my_bool neg) |
| 93 | { |
| 94 | set_zero_time(tm, MYSQL_TIMESTAMP_TIME); |
| 95 | set_max_hhmmss(tm); |
| 96 | tm->neg= neg; |
| 97 | } |
| 98 | |
| 99 | |
| 100 | /** |
no test coverage detected