We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 824eb6e commit 42f71e0Copy full SHA for 42f71e0
velox/substrait/SubstraitToVeloxPlan.cpp
@@ -1195,7 +1195,8 @@ int32_t SubstraitVeloxPlanConverter::streamIsInput(
1195
if (sRead.has_local_files()) {
1196
const auto& fileList = sRead.local_files().items();
1197
if (fileList.size() == 0) {
1198
- VELOX_FAIL("At least one file path is expected.");
+ // bucketed scan may contains empty file list
1199
+ return -1;
1200
}
1201
1202
// The stream input will be specified with the format of
0 commit comments