| 20 | #include "parquet/arrow/fuzz_internal.h" |
| 21 | |
| 22 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
| 23 | auto status = parquet::fuzzing::internal::FuzzReader(data, static_cast<int64_t>(size)); |
| 24 | arrow::internal::LogFuzzStatus(status, data, static_cast<int64_t>(size)); |
| 25 | return 0; |
| 26 | } |
nothing calls this directly
no test coverage detected