[bugfix](hive)Misspelling of class names (#34981)

This commit is contained in:
wuwenchi
2024-05-27 10:44:35 +08:00
committed by yiguolei
parent b1795d44ec
commit f98ed4e4c5
3 changed files with 204 additions and 3 deletions

View File

@ -263,7 +263,7 @@ public final class HiveUtil {
serDe = "org.apache.hadoop.hive.ql.io.orc.OrcSerde";
} else if (fileFormat.equalsIgnoreCase("parquet")) {
inputFormat = "org.apache.hadoop.hive.ql.io.parquet.MapredParquetInputFormat";
outputFormat = "'org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat";
outputFormat = "org.apache.hadoop.hive.ql.io.parquet.MapredParquetOutputFormat";
serDe = "org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe";
} else {
throw new IllegalArgumentException("Creating table with an unsupported file format: " + fileFormat);