This is an automated email from the ASF dual-hosted git repository.
codope 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 c7c08f3b914 Duplicate switch branch in HoodieInputFormatUtils (#9438)
c7c08f3b914 is described below
commit c7c08f3b914e7c865998cd4923b63c4914b3fbe1
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: