rdblue commented on code in PR #16408:
URL: https://github.com/apache/iceberg/pull/16408#discussion_r3344846611


##########
core/src/main/java/org/apache/iceberg/ManifestInfoStruct.java:
##########
@@ -339,7 +339,7 @@ Builder dv(ByteBuffer buffer) {
 
     Builder dvCardinality(long cardinality) {
       Preconditions.checkArgument(
-          cardinality > 0, "Invalid DV cardinality: %s (must be positive)", 
cardinality);
+          cardinality >= 0, "Invalid DV cardinality: %s (must be >= 0)", 
cardinality);

Review Comment:
   We shouldn't worry about this. The field is going to be removed.



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

Reply via email to