| 450 | } |
| 451 | |
| 452 | void SplitStringMapOperation::handleValue(const char* start, const char* end, |
| 453 | const CSVOption* option) { |
| 454 | trimRightWhitespace(start, end); |
| 455 | CastString::copyStringToVector(StructVector::getFieldVector(resultVector, 1).get(), offset++, |
| 456 | std::string_view{start, (uint32_t)(end - start)}, option); |
| 457 | } |
| 458 | |
| 459 | template<typename T> |
| 460 | static bool parseKeyOrValue(const char*& input, const char* end, T& state, bool isKey, |
no test coverage detected