Return the first record batch read from the IPC File buffer using the FileDecoder API, disabling validation
(buf: Vec<u8>)
| 2431 | /// Return the first record batch read from the IPC File buffer |
| 2432 | /// using the FileDecoder API, disabling validation |
| 2433 | fn read_ipc_with_decoder_skip_validation(buf: Vec<u8>) -> Result<RecordBatch, ArrowError> { |
| 2434 | read_ipc_with_decoder_inner(buf, true) |
| 2435 | } |
| 2436 | |
| 2437 | fn read_ipc_with_decoder_inner( |
| 2438 | buf: Vec<u8>, |
no test coverage detected