Skip to content
Open
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 @@ -190,7 +190,9 @@ object IcebergScanSupport extends Logging {
logWarning(
s"Failed to obtain input partitions via reflection for ${exec.getClass.getName}.",
t)
Seq.empty
throw new IllegalStateException(
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since we are throwing an exception anyways, do we need to catch it in L189?

s"Cannot resolve input partitions for ${exec.getClass.getName}",
t)
}
}

Expand Down
Loading