mapleFU commented on PR #101:
URL: https://github.com/apache/arrow-testing/pull/101#issuecomment-2318228011

   ```C++
   TEST(ReadFile, XXX) {
     auto read_options = IpcReadOptions::Defaults();
     ASSERT_OK_AND_ASSIGN(auto test_file, 
io::ReadableFile::Open("clusterfuzz-testcase-minimized-arrow-ipc-stream-fuzz-6234073570279424"));
     ASSERT_OK_AND_ASSIGN(auto reader,
                          RecordBatchStreamReader::Open(test_file, 
read_options));
     ASSERT_OK_AND_ASSIGN(auto record_batches, reader->ToRecordBatches());
     for (const auto& batch : record_batches) {
       std::cout << batch->num_rows() << std::endl;
     }
   }
   ```
   
   returns:
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to