Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

[NSE-602] don't enable columnar shuffle on unsupported data types #608

Merged
merged 2 commits into from
Dec 7, 2021
Merged
Changes from 1 commit
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 @@ -97,11 +97,11 @@ case class ColumnarShuffleExchangeExec(
// check input datatype
for (attr <- child.output) {
try {
ConverterUtils.createArrowField(attr)
ConverterUtils.checkIfTypeSupported(attr.dataType)
} catch {
case e: UnsupportedOperationException =>
throw new UnsupportedOperationException(
s"${attr.dataType} is not supported in ColumnarShuffleExchange")
s"${attr.dataType} is not supported in ColumnarShuffledHashJoinExec.")
zhouyuan marked this conversation as resolved.
Show resolved Hide resolved
}
}
}
Expand Down