| 81 | |
| 82 | template <typename TYPE, typename C_TYPE> |
| 83 | void CheckPrimitive(const std::shared_ptr<DataType>& type, |
| 84 | const PrettyPrintOptions& options, const std::vector<bool>& is_valid, |
| 85 | const std::vector<C_TYPE>& values, std::string_view expected, |
| 86 | bool check_operator = true) { |
| 87 | std::shared_ptr<Array> array; |
| 88 | ArrayFromVector<TYPE, C_TYPE>(type, is_valid, values, &array); |
| 89 | CheckArray(*array, options, expected, check_operator); |
| 90 | } |
| 91 | |
| 92 | template <typename TYPE, typename C_TYPE> |
| 93 | void CheckPrimitive(const PrettyPrintOptions& options, const std::vector<bool>& is_valid, |
nothing calls this directly
no test coverage detected