alamb commented on code in PR #4434:
URL: https://github.com/apache/arrow-rs/pull/4434#discussion_r1238639606


##########
arrow-ipc/src/reader.rs:
##########
@@ -647,9 +649,18 @@ impl<R: Read + Seek> FileReader<R> {
         reader.seek(SeekFrom::End(-10 - footer_len as i64))?;
         reader.read_exact(&mut footer_data)?;
 
-        let footer = crate::root_as_footer(&footer_data[..]).map_err(|err| {
-            ArrowError::IoError(format!("Unable to get root as footer: 
{err:?}"))
-        })?;
+        // construct verifier options that reflect actual number of columns
+        // in file

Review Comment:
   ```suggestion
           // in file and avoid an error if the file contains more than 1M rows
   ```



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

Reply via email to