This is an automated email from the ASF dual-hosted git repository.

sivabalan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/master by this push:
     new c7c3532477a [MINOR] Remove warning around table version six (#13080)
c7c3532477a is described below

commit c7c3532477a611d94b8bb53af592bde2f151d764
Author: Lokesh Jain <[email protected]>
AuthorDate: Thu Apr 3 20:15:41 2025 +0530

    [MINOR] Remove warning around table version six (#13080)
---
 .../src/main/java/org/apache/hudi/config/HoodieWriteConfig.java      | 5 -----
 1 file changed, 5 deletions(-)

diff --git 
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
 
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
index a665d53a51a..103462a11c9 100644
--- 
a/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
+++ 
b/hudi-client/hudi-client-common/src/main/java/org/apache/hudi/config/HoodieWriteConfig.java
@@ -3617,11 +3617,6 @@ public class HoodieWriteConfig extends HoodieConfig {
     }
 
     private void validate() {
-      if (HoodieTableVersion.SIX.equals(writeConfig.getWriteVersion())) {
-        LOG.warn("HoodieTableVersion.SIX is not yet fully supported by the 
writer. "
-            + "Please expect some unexpected behavior, until its fully 
implemented.");
-      }
-
       String layoutVersion = 
writeConfig.getString(TIMELINE_LAYOUT_VERSION_NUM);
       // Ensure Layout Version is good
       new TimelineLayoutVersion(Integer.parseInt(layoutVersion));

Reply via email to