This is an automated email from the ASF dual-hosted git repository. pwason pushed a commit to branch release-0.14.0 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 529fc04488b759e1d572389436ee564c61056b1c Author: empcl <[email protected]> AuthorDate: Mon Aug 14 18:22:15 2023 +0800 Duplicate switch branch in HoodieInputFormatUtils (#9438) Co-authored-by: chenlei677 <[email protected]> --- .../main/java/org/apache/hudi/hadoop/utils/HoodieInputFormatUtils.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/utils/HoodieInputFormatUtils.java b/hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/utils/HoodieInputFormatUtils.java index c3984c5d171..80e1186776f 100644 --- a/hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/utils/HoodieInputFormatUtils.java +++ b/hudi-hadoop-mr/src/main/java/org/apache/hudi/hadoop/utils/HoodieInputFormatUtils.java @@ -149,7 +149,6 @@ public class HoodieInputFormatUtils { public static String getOutputFormatClassName(HoodieFileFormat baseFileFormat) { switch (baseFileFormat) { case PARQUET: - return MapredParquetOutputFormat.class.getName(); case HFILE: return MapredParquetOutputFormat.class.getName(); case ORC: @@ -162,7 +161,6 @@ public class HoodieInputFormatUtils { public static String getSerDeClassName(HoodieFileFormat baseFileFormat) { switch (baseFileFormat) { case PARQUET: - return ParquetHiveSerDe.class.getName(); case HFILE: return ParquetHiveSerDe.class.getName(); case ORC:
