| 986 | |
| 987 | |
| 988 | Time::Time(const Native &native) |
| 989 | { |
| 990 | uint dec= binary_length_to_precision(native.length()); |
| 991 | longlong tmp= my_time_packed_from_binary((const uchar *) native.ptr(), dec); |
| 992 | TIME_from_longlong_time_packed(this, tmp); |
| 993 | DBUG_ASSERT(is_valid_time()); |
| 994 | } |
| 995 | |
| 996 | |
| 997 | Time::Time(int *warn, const MYSQL_TIME *from, long curdays) |
nothing calls this directly
no test coverage detected