Skip to content

Commit

Permalink
Symlink table mapping for Delta table access
Browse files Browse the repository at this point in the history
  • Loading branch information
agrawalreetika committed Apr 22, 2024
1 parent f697be7 commit 8760651
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -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;
}
Expand Down

0 comments on commit 8760651

Please sign in to comment.