This is an automated email from the ASF dual-hosted git repository. lzljs3620320 pushed a commit to branch release-1.3 in repository https://gitbox.apache.org/repos/asf/paimon.git
commit 8152dda1baf447c220c48b57b968a3e093316715 Author: LsomeYeah <[email protected]> AuthorDate: Thu Oct 23 17:21:51 2025 +0800 [core] disable dv mode for incremental clustering table (#6461) --- .../src/main/java/org/apache/paimon/schema/SchemaValidation.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/paimon-core/src/main/java/org/apache/paimon/schema/SchemaValidation.java b/paimon-core/src/main/java/org/apache/paimon/schema/SchemaValidation.java index 09de891a37..572e8e17ee 100644 --- a/paimon-core/src/main/java/org/apache/paimon/schema/SchemaValidation.java +++ b/paimon-core/src/main/java/org/apache/paimon/schema/SchemaValidation.java @@ -661,6 +661,9 @@ public class SchemaValidation { schema.primaryKeys().isEmpty(), "Cannot define %s for incremental clustering table.", PRIMARY_KEY.key()); + checkArgument( + !options.deletionVectorsEnabled(), + "Cannot enable deletion vectors mode for incremental clustering table."); } } }
