Check if TIME fields are fatally bad and cannot be further adjusted. @param ltime Time value. @retval TRUE if the value is fatally bad. @retval FALSE if the value is Ok. */
| 153 | @retval FALSE if the value is Ok. |
| 154 | */ |
| 155 | inline my_bool check_time_mmssff_range(const MYSQL_TIME *ltime) |
| 156 | { |
| 157 | return ltime->minute >= 60 || ltime->second >= 60 || |
| 158 | ltime->second_part > 999999; |
| 159 | } |
| 160 | |
| 161 | |
| 162 | /** |
no outgoing calls
no test coverage detected