Set MYSQL_TIME structure to 0000-00-00 00:00:00.000000 @param tm[OUT] The value to set. @param time_type Timestasmp type */
| 65 | @param time_type Timestasmp type |
| 66 | */ |
| 67 | inline void set_zero_time(MYSQL_TIME *tm, |
| 68 | enum enum_mysql_timestamp_type time_type) |
| 69 | { |
| 70 | memset(tm, 0, sizeof(*tm)); |
| 71 | tm->time_type= time_type; |
| 72 | } |
| 73 | |
| 74 | |
| 75 | /** |
no outgoing calls
no test coverage detected