Github user gatorsmile commented on a diff in the pull request:
https://github.com/apache/spark/pull/16988#discussion_r102531794
--- Diff:
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/parser/PlanParserSuite.scala
---
@@ -152,10 +152,7 @@ class PlanParserSuite extends PlanTest {
val orderSortDistrClusterClauses = Seq(
("", basePlan),
(" order by a, b desc", basePlan.orderBy('a.asc, 'b.desc)),
- (" sort by a, b desc", basePlan.sortBy('a.asc, 'b.desc)),
- (" distribute by a, b", basePlan.distribute('a, 'b)()),
- (" distribute by a sort by b",
basePlan.distribute('a)().sortBy('b.asc)),
- (" cluster by a, b", basePlan.distribute('a, 'b)().sortBy('a.asc,
'b.asc))
--- End diff --
These three test cases are moved to `SparkSqlParserSuite.scala`
---
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]