Skip to content

Commit 1b7079e

Browse files
committed
chore: check missingInput for Comet plan nodes
1 parent 11e9ffe commit 1b7079e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spark/src/test/scala/org/apache/spark/sql/CometTestBase.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,9 @@ abstract class CometTestBase
419419
val isCometNode = plan.nodeName.startsWith("Comet")
420420

421421
if (isCometNode && hasMissingInput(plan)) {
422-
assert(false, s"Plan node `${plan.nodeName}` has invalid missingInput: ${plan.missingInput}")
422+
assert(
423+
false,
424+
s"Plan node `${plan.nodeName}` has invalid missingInput: ${plan.missingInput}")
423425
}
424426

425427
// Otherwise recursively check children

0 commit comments

Comments
 (0)