JingsongLi commented on code in PR #7948:
URL: https://github.com/apache/paimon/pull/7948#discussion_r3296913707
##########
paimon-core/src/main/java/org/apache/paimon/schema/SchemaValidation.java:
##########
@@ -620,6 +624,12 @@ private static void validateForDeletionVectors(CoreOptions
options) {
!options.mergeEngine().equals(MergeEngine.FIRST_ROW),
"First row merge engine does not need deletion vectors
because there is no deletion of old data in this merge engine.");
}
+
+ checkArgument(
+ !(options.deletionVectorsMergeOnRead() &&
options.visibilityCallbackEnabled()),
Review Comment:
visibilityCallbackEnabled also works for postpone bucket. So it is
meaningful to enable deletion-vectors.merge-on-read together with
visibility-callback.enabled
--
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]