| 902 | "expected format is (YYYY-MM-DD HH:MM:SS[.MS])", |
| 903 | std::string(str, len)); |
| 904 | } |
| 905 | |
| 906 | } // namespace |
| 907 | |
| 908 | Timestamp fromTimestampString(const char* str, size_t len, bool* nullOutput) { |
| 909 | size_t pos; |
| 910 | int64_t daysSinceEpoch; |
| 911 | int64_t microsSinceMidnight; |
| 912 |
no outgoing calls
no test coverage detected