VGalaxies commented on code in PR #13364:
URL: https://github.com/apache/iotdb/pull/13364#discussion_r1830634507


##########
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/dataregion/compaction/execute/utils/executor/fast/reader/CompactionChunkReader.java:
##########
@@ -126,8 +131,11 @@ public static ByteBuffer readCompressedPageData(PageHeader 
pageHeader, ByteBuffe
    */
   public TsBlock readPageData(PageHeader pageHeader, ByteBuffer 
compressedPageData)
       throws IOException {
-    // uncompress page data
-    ByteBuffer pageData = uncompressPageData(pageHeader, unCompressor, 
compressedPageData);
+    // decrypt and uncompress page data
+    IDecryptor decryptor = IDecryptor.getDecryptor(encryptParam);
+    ByteBuffer pageData =
+        decryptAndUncompressPageData(pageHeader, unCompressor, 
compressedPageData, decryptor);
+    ;

Review Comment:
   unexpected semicolon



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