You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/optimizer/RemoveRedundantAliasAndProjectSuite.scala
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -124,4 +124,11 @@ class RemoveRedundantAliasAndProjectSuite extends PlanTest with PredicateHelper
124
124
valexpected=Subquery(relation.select('a as "a", 'b).where('b<10).select('a).analyze)
125
125
comparePlans(optimized, expected)
126
126
}
127
+
128
+
test("SPARK-25691: RemoveRedundantProject works also with different cases") {
0 commit comments