-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add metadata_size_hint for optimistic fetching of parquet metadata (#…
…2946) * Add metadata_size_hint for optimistic fetching of parquet metadata * Formatting * Update datafusion/core/src/datasource/file_format/parquet.rs Co-authored-by: Andrew Lamb <[email protected]> * Update datafusion/core/src/datasource/file_format/parquet.rs Co-authored-by: Andrew Lamb <[email protected]> * PR comments: Guard against size_hint larger than file size and verify request counts in unit test * Update datafusion/core/src/datasource/file_format/parquet.rs Co-authored-by: Andrew Lamb <[email protected]> Co-authored-by: Andrew Lamb <[email protected]>
- Loading branch information
1 parent
b49093c
commit 834924f
Showing
3 changed files
with
276 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -271,6 +271,7 @@ mod tests { | |
table_partition_cols: vec![], | ||
}, | ||
None, | ||
None, | ||
)) | ||
} | ||
|
||
|
Oops, something went wrong.