comphead commented on issue #8824:
URL:
https://github.com/apache/arrow-datafusion/issues/8824#issuecomment-1907167127
Likely there is a support on Seek::StartFrom on a file level
```
let decoder = if is_whole_file_scanned {
// Don't seek if no range as breaks FIFO files
file_compression_type.convert_read(file)?
} else {
file.seek(SeekFrom::Start(result.range.start as _))?;
file_compression_type.convert_read(
file.take((result.range.end -
result.range.start) as u64),
)?
};
```
But imagine if there is parallel read for the source containing multiple csv
files, how skip_rows should work in this case? 🤔
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]