Skip to content
Draft
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 @@ -321,7 +321,6 @@ trait RapidsTestsTrait extends RapidsTestsCommonTrait {

if(!isQualifiedForVectorizedParams(origExpr)) {
logInfo(s"$origExpr is being evaluated with Scalar Parameter")
println(s"$origExpr is being evaluated with Scalar Parameter")
expression = origExpr.transformUp {
case BoundReference(ordinal, dataType, _) =>
Literal(inputRow.asInstanceOf[GenericInternalRow].get(ordinal, dataType), dataType)
Expand All @@ -338,7 +337,6 @@ trait RapidsTestsTrait extends RapidsTestsCommonTrait {
}
} else {
logInfo(s"$expression is being evaluated with Vectorized Parameter")
println(s"$expression is being evaluated with Vectorized Parameter")
val typeHintForOrdinal : Map[Int, DataType] = expression.collect {
// In spark UT testing expressions, they typically use `val s = 's.string.at(0)`
// to define a bound reference with type string.
Expand Down