| 13942 | // see if it is something that *could* represent a date value |
| 13943 | |
| 13944 | static bool couldBeDate(const dsc desc) |
| 13945 | { |
| 13946 | return DTYPE_IS_DATE(desc.dsc_dtype) || desc.dsc_dtype <= dtype_any_text; |
| 13947 | } |
| 13948 | |
| 13949 | // Take the input number, assume it represents a fractional count of days. |
| 13950 | // Convert it to a count of microseconds. |
no test coverage detected