anoopj commented on code in PR #18138: URL: https://github.com/apache/iceberg/pull/18138#discussion_r4031030867
########## core/src/main/java/org/apache/iceberg/ManifestInfoStruct.java: ########## @@ -53,7 +53,8 @@ class ManifestInfoStruct extends SupportsIndexProjection implements ManifestInfo private long replacedRowsCount = -1L; private long minSequenceNumber = -1L; private byte[] dv = null; - private Long dvCardinality = null; + + private transient ManifestBitmap manifestDeletionVector = null; Review Comment: Renamed to `mdv`. I chose the original name to be consistent with `Manifestfile.manifestDeletionVector` which is also long. I can send a quick followup rename that one if you prefer. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
