| 67 | namespace { |
| 68 | |
| 69 | void ValidateOutputImpl(const ArrayData& output) { |
| 70 | ASSERT_OK(::arrow::internal::ValidateArrayFull(output)); |
| 71 | TestInitialized(output); |
| 72 | } |
| 73 | |
| 74 | void ValidateOutputImpl(const ChunkedArray& output) { |
| 75 | ASSERT_OK(output.ValidateFull()); |
no test coverage detected