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 1e01101 commit 7be5cf2Copy full SHA for 7be5cf2
pyiceberg/table/inspect.py
@@ -207,7 +207,7 @@ def _readable_metrics_struct(bound_type: PrimitiveType) -> pa.StructType:
207
"column_sizes": dict(entry.data_file.column_sizes),
208
"value_counts": dict(entry.data_file.value_counts),
209
"null_value_counts": dict(entry.data_file.null_value_counts),
210
- "nan_value_counts": entry.data_file.nan_value_counts,
+ "nan_value_counts": dict(entry.data_file.nan_value_counts),
211
"lower_bounds": entry.data_file.lower_bounds,
212
"upper_bounds": entry.data_file.upper_bounds,
213
"key_metadata": entry.data_file.key_metadata,
0 commit comments