Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,12 @@ public boolean supportPruneNestedColumn() {
if (table instanceof IcebergExternalTable) {
return true;
} else if (table instanceof HMSExternalTable) {
HMSExternalTable hmsTable = (HMSExternalTable) table;
if (hmsTable.getDlaType() == HMSExternalTable.DLAType.HUDI) {
// Don't prune nested column for HUDI table for now, because HUDI table
// may have some issues when pruning nested column.
return false;
}
try {
ConnectContext connectContext = ConnectContext.get();
SessionVariable sessionVariable = connectContext.getSessionVariable();
Expand Down
Loading