dongjoon-hyun commented on code in PR #1743:
URL: https://github.com/apache/orc/pull/1743#discussion_r1451022748


##########
java/core/src/java/org/apache/orc/impl/WriterImpl.java:
##########
@@ -288,8 +297,12 @@ public static CompressionCodec createCodec(CompressionKind 
kind) {
         return new AircompressorCodec(kind, new Lz4Compressor(),
             new Lz4Decompressor());
       case ZSTD:
-        return new AircompressorCodec(kind, new ZstdCompressor(),
-            new ZstdDecompressor());
+        if (com.github.luben.zstd.util.Native.isLoaded()) {

Review Comment:
   Use `import` statement.



-- 
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]

Reply via email to