MCPcopy Create free account
hub / github.com/apache/arrow-rs / read_ipc_with_decoder_skip_validation

Function read_ipc_with_decoder_skip_validation

arrow-ipc/src/reader.rs:2433–2435  ·  view source on GitHub ↗

Return the first record batch read from the IPC File buffer using the FileDecoder API, disabling validation

(buf: Vec<u8>)

Source from the content-addressed store, hash-verified

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>,

Callers 1

Calls 1

Tested by

no test coverage detected