Github user viirya commented on a diff in the pull request:
https://github.com/apache/spark/pull/21745#discussion_r201718356
--- Diff:
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/plans/logical/LogicalPlan.scala
---
@@ -60,7 +60,8 @@ abstract class LogicalPlan
* [[org.apache.spark.sql.catalyst.analysis.UnresolvedRelation
UnresolvedRelation]]
* should return `false`).
*/
- lazy val resolved: Boolean = expressions.forall(_.resolved) &&
childrenResolved
+ lazy val resolved: Boolean = expressions.forall(_.resolved) &&
childrenResolved &&
+ missingInput.isEmpty
--- End diff --
Yeah, I found that this change causes one test failure.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]