ggershinsky commented on code in PR #6762: URL: https://github.com/apache/iceberg/pull/6762#discussion_r1361569389
########## core/src/main/java/org/apache/iceberg/encryption/BaseEncryptedOutputFile.java: ########## @@ -24,10 +24,19 @@ class BaseEncryptedOutputFile implements EncryptedOutputFile { private final OutputFile encryptingOutputFile; private final EncryptionKeyMetadata keyMetadata; + private final OutputFile rawOutputFile; BaseEncryptedOutputFile(OutputFile encryptingOutputFile, EncryptionKeyMetadata keyMetadata) { + this(encryptingOutputFile, keyMetadata, encryptingOutputFile); + } + + BaseEncryptedOutputFile( + OutputFile encryptingOutputFile, + EncryptionKeyMetadata keyMetadata, + OutputFile rawOutputFile) { Review Comment: I've reverted the `BaseEncryptedOutputFile` class. There is a new implementation of the updated `EncryptedOutputFile`, residing inside the encryption manager that provides the native Parquet encryption. -- 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: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org