shuwenwei commented on code in PR #9536:
URL: https://github.com/apache/iotdb/pull/9536#discussion_r1162419239
##########
tsfile/src/main/java/org/apache/iotdb/tsfile/compress/IUnCompressor.java:
##########
Review Comment:
add LZMA2UnCompressor
```java
static IUnCompressor getUnCompressor(CompressionType name) {
if (name == null) {
throw new CompressionTypeNotSupportedException("NULL");
}
switch (name) {
case UNCOMPRESSED:
return new NoUnCompressor();
case SNAPPY:
return new SnappyUnCompressor();
case LZ4:
return new LZ4UnCompressor();
case GZIP:
return new GZIPUnCompressor();
case ZSTD:
return new ZstdUnCompressor();
default:
throw new CompressionTypeNotSupportedException(name.toString());
}
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]