Skip to content

Commit cb83ca1

Browse files
bogdanrdcrxin
authored andcommitted
[SPARK-20854][TESTS] Removing duplicate test case
## What changes were proposed in this pull request? Removed a duplicate case in "SPARK-20854: select hint syntax with expressions" ## How was this patch tested? Existing tests. Author: Bogdan Raducanu <[email protected]> Closes #18217 from bogdanrdc/SPARK-20854-2.
1 parent c92949a commit cb83ca1

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/parser/PlanParserSuite.scala

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -575,14 +575,6 @@ class PlanParserSuite extends PlanTest {
575575
)
576576
)
577577

578-
comparePlans(
579-
parsePlan("SELECT /*+ HINT1(a, array(1, 2, 3)) */ * from t"),
580-
UnresolvedHint("HINT1", Seq($"a",
581-
UnresolvedFunction("array", Literal(1) :: Literal(2) :: Literal(3) :: Nil, false)),
582-
table("t").select(star())
583-
)
584-
)
585-
586578
comparePlans(
587579
parsePlan("SELECT /*+ HINT1(a, 5, 'a', b) */ * from t"),
588580
UnresolvedHint("HINT1", Seq($"a", Literal(5), Literal("a"), $"b"),

0 commit comments

Comments
 (0)