We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41edeb2 commit cc4150bCopy full SHA for cc4150b
pyiceberg/manifest.py
@@ -865,9 +865,8 @@ def _convert_entry(entry: Any) -> ManifestEntry:
865
data_file = DataFile(
866
DataFileContent(entry.data_file.content),
867
entry.data_file.file_path,
868
- # FileFormat(entry.data_file.file_format),
869
- FileFormat.PARQUET,
870
- entry.data_file.partition,
+ FileFormat(entry.data_file.file_format),
+ [p.value() if p is not None else None for p in entry.data_file.partition],
871
entry.data_file.record_count,
872
entry.data_file.file_size_in_bytes,
873
entry.data_file.column_sizes,
0 commit comments