You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hudi.apache.org by GitBox <gi...@apache.org> on 2022/04/04 01:01:42 UTC

[GitHub] [hudi] YannByron commented on a diff in pull request #5201: [HUDI-3748] write and select hudi table when enable hoodie.datasource.write.drop.partition.columns

YannByron commented on code in PR #5201:
URL: https://github.com/apache/hudi/pull/5201#discussion_r841307599


##########
hudi-common/src/main/java/org/apache/hudi/common/table/HoodieTableConfig.java:
##########
@@ -420,6 +425,9 @@ public static void create(FileSystem fs, Path metadataFolder, Properties propert
       if (hoodieConfig.contains(TIMELINE_TIMEZONE)) {
         HoodieInstantTimeGenerator.setCommitTimeZone(HoodieTimelineTimeZone.valueOf(hoodieConfig.getString(TIMELINE_TIMEZONE)));
       }
+      if (!hoodieConfig.contains(DROP_PARTITION_COLUMNS)) {
+        hoodieConfig.setDefaultValue(DROP_PARTITION_COLUMNS);
+      }

Review Comment:
   BOOTSTRAP_BASE_PATH is not a bug. Set a different config when BOOTSTRAP_BASE_PATH exists.



-- 
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: dev-unsubscribe@hudi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org