Return the first record batch read from the IPC File buffer using the FileDecoder API
(buf: Vec<u8>)
| 2425 | /// Return the first record batch read from the IPC File buffer |
| 2426 | /// using the FileDecoder API |
| 2427 | fn read_ipc_with_decoder(buf: Vec<u8>) -> Result<RecordBatch, ArrowError> { |
| 2428 | read_ipc_with_decoder_inner(buf, false) |
| 2429 | } |
| 2430 | |
| 2431 | /// Return the first record batch read from the IPC File buffer |
| 2432 | /// using the FileDecoder API, disabling validation |
no test coverage detected