| 120 | } // namespace arrow::csv |
| 121 | |
| 122 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
| 123 | auto status = arrow::csv::FuzzCsvReader(data, static_cast<int64_t>(size)); |
| 124 | arrow::internal::LogFuzzStatus(status, data, size); |
| 125 | return 0; |
| 126 | } |
nothing calls this directly
no test coverage detected