| 2610 | public: |
| 2611 | using ScalarType = typename TypeTraits<ArrowType>::ScalarType; |
| 2612 | void AssertIndexIs(const std::string& json, const std::shared_ptr<ScalarType>& value, |
| 2613 | int64_t expected) { |
| 2614 | SCOPED_TRACE("Value: " + value->ToString()); |
| 2615 | SCOPED_TRACE("Input: " + json); |
| 2616 | auto array = ArrayFromJSON(type_singleton(), json); |
| 2617 | CheckIndex(array, value, expected); |
| 2618 | } |
| 2619 | |
| 2620 | void AssertIndexIs(const std::vector<std::string>& json, |
| 2621 | const std::shared_ptr<ScalarType>& value, int64_t expected) { |
no test coverage detected