| 260 | } |
| 261 | |
| 262 | Status ValidateFull(int64_t length, std::vector<offset_type> offsets, |
| 263 | std::string_view data, int64_t offset = 0) { |
| 264 | ArrayType arr(length, Buffer::Wrap(offsets), std::make_shared<Buffer>(data), |
| 265 | /*null_bitmap=*/nullptr, /*null_count=*/0, offset); |
| 266 | return arr.ValidateFull(); |
| 267 | } |
| 268 | |
| 269 | Status ValidateFull(const std::string& json) { |
| 270 | auto ty = TypeTraits<T>::type_singleton(); |
no test coverage detected