rdblue commented on code in PR #18138: URL: https://github.com/apache/iceberg/pull/18138#discussion_r4030178282
########## 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: How about `mdv`? This name is very long. -- 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]
