Skip to content
Closed
Show file tree
Hide file tree
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
8 changes: 2 additions & 6 deletions velox/experimental/cudf/exec/ExpressionEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1465,9 +1465,7 @@ std::reference_wrapper<const cudf::ast::expression> buildBigintRangeExpr(
return tree.push(Operation{Op::EQUAL, columnRef, columnRef});
}
} else {
VELOX_FAIL(
"Unsupported type for buildBigintRangeExpr: {}",
mapTypeKindToName(Kind));
VELOX_FAIL("Unsupported type for buildBigintRangeExpr: {}", Kind);
}
}

Expand Down Expand Up @@ -1592,9 +1590,7 @@ std::reference_wrapper<const cudf::ast::expression> buildIntegerInListExpr(
}
return std::ref(*result);
} else {
VELOX_FAIL(
"Unsupported type for buildIntegerInListExpr: {}",
mapTypeKindToName(Kind));
VELOX_FAIL("Unsupported type for buildIntegerInListExpr: {}", Kind);
}
}

Expand Down
3 changes: 1 addition & 2 deletions velox/experimental/cudf/tests/SubfieldFilterAstTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -649,8 +649,7 @@ TEST_P(IntInListParamTest, InListParam) {
}
}
EXPECT_EQ(scalars.size(), expectedScalars)
<< "Scalar count mismatch for IN list with kind "
<< mapTypeKindToName(p.kind);
<< "Scalar count mismatch for IN list with kind " << p.kind;

auto vec = makeTestVector(rowType, 100);
testFilterExecution(rowType, columnName, *filter, vec, expr);
Expand Down
Loading