Description
When adding zstd support, the following check was added:
if (logConfig.forall(_.compressionType == ZStdCompressionCodec.name) && versionId < 10) {
Instead of `forall`, it should have been `exists`.
Attachments
Issue Links
- links to
When adding zstd support, the following check was added:
if (logConfig.forall(_.compressionType == ZStdCompressionCodec.name) && versionId < 10) {
Instead of `forall`, it should have been `exists`.