Github user gatorsmile commented on a diff in the pull request:
https://github.com/apache/spark/pull/11599#discussion_r55472012
--- Diff:
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/ColumnPruningSuite.scala
---
@@ -157,6 +157,14 @@ class ColumnPruningSuite extends PlanTest {
comparePlans(Optimize.execute(query), expected)
}
+ test("Eliminate the Project with an empty projectList") {
+ val input = OneRowRelation
+ val query =
+ Project(Literal(1).as("1") :: Nil, Project(Literal(1).as("1") ::
Nil, input)).analyze
--- End diff --
When running `Optimize.execute(query)`, the second Project's `projectList`
is pruned to empty at first. Then, the second Project will be removed.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]