This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
Added optional projection
to IPC FileReader
#271
Labels
projection
to IPC FileReader
#271
ipc::read::FileReader::new
now accept a new parameterprojection: Option<Vec<usize>>
that can be used to filter columns.read::ipc::read_record_batch
now accept a new parameterprojection: Option<(&[usize], Arc<Schema>)>
that can be used to filter columns.where
usize
is the index of the column in the IPC schema (known from the file metadata).Pass
None
to both to recover the original behavior.The text was updated successfully, but these errors were encountered: