diff --git a/presto-native-execution/presto_cpp/main/types/PrestoToVeloxConnector.cpp b/presto-native-execution/presto_cpp/main/types/PrestoToVeloxConnector.cpp index 6783b3ce96b8a..f55f7ef8830a6 100644 --- a/presto-native-execution/presto_cpp/main/types/PrestoToVeloxConnector.cpp +++ b/presto-native-execution/presto_cpp/main/types/PrestoToVeloxConnector.cpp @@ -77,6 +77,10 @@ dwio::common::FileFormat toVeloxFileFormat( } else if (format.serDe == "org.apache.hive.hcatalog.data.JsonSerDe") { return dwio::common::FileFormat::JSON; } + } else if (format.inputFormat == "org.apache.hadoop.hive.ql.io.SymlinkTextInputFormat") { + if (format.serDe == "org.apache.hadoop.hive.ql.io.parquet.serde.ParquetHiveSerDe") { + return dwio::common::FileFormat::PARQUET; + } } else if (format.inputFormat == "com.facebook.alpha.AlphaInputFormat") { return dwio::common::FileFormat::ALPHA; }