You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug print_parquet_metadata always reports ZSTD compression level 1, regardless of the level used when creating the file:
compression: ZSTD(ZstdLevel(1))
The cause is that the compression level is not actually stored anywhere. The value 1 is just the Default of ZstdLevel, needed to construct the Compression enum.
To Reproduce
Call print_parquet_metadata on a file using ZSTD compression using a non-default level. E.g. I used level 6.
Describe the bug
print_parquet_metadata
always reports ZSTD compression level 1, regardless of the level used when creating the file:The cause is that the compression level is not actually stored anywhere. The value
1
is just theDefault
ofZstdLevel
, needed to construct theCompression
enum.To Reproduce
Call
print_parquet_metadata
on a file usingZSTD
compression using a non-default level. E.g. I used level 6.Expected behavior
Additional context
Discovered on manojkarthick/pqrs#53.
The text was updated successfully, but these errors were encountered: