| 22 | |
| 23 | template<> |
| 24 | inline void CastStringHelper::cast(const char* input, uint64_t len, int128_t& result, |
| 25 | ValueVector* /*vector*/, uint64_t /*rowToAdd*/, const CSVOption* /*option*/) { |
| 26 | simpleIntegerCast<int128_t>(input, len, result, LogicalTypeID::INT128); |
| 27 | } |
| 28 | |
| 29 | template<> |
| 30 | inline void CastStringHelper::cast(const char* input, uint64_t len, uint128_t& result, |
no test coverage detected