| 138 | return ltime->year || ltime->month || ltime->day; |
| 139 | } |
| 140 | static inline bool |
| 141 | non_zero_date(const MYSQL_TIME *ltime) |
| 142 | { |
| 143 | return non_zero_YYMMDD(ltime) || |
| 144 | (ltime->time_type == MYSQL_TIMESTAMP_DATETIME && |
| 145 | non_zero_hhmmssuu(ltime)); |
| 146 | } |
| 147 | static inline bool |
| 148 | check_date(const MYSQL_TIME *ltime, date_conv_mode_t flags, int *was_cut) |
| 149 | { |
no test coverage detected