Skip to content

Commit 3f93d07

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 <bogdan@databricks.com> Closes #18217 from bogdanrdc/SPARK-20854-2. (cherry picked from commit cb83ca1) Signed-off-by: Reynold Xin <rxin@databricks.com>
1 parent 421d8ec commit 3f93d07

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
@@ -544,14 +544,6 @@ class PlanParserSuite extends PlanTest {
544544
)
545545
)
546546

547-
comparePlans(
548-
parsePlan("SELECT /*+ HINT1(a, array(1, 2, 3)) */ * from t"),
549-
UnresolvedHint("HINT1", Seq($"a",
550-
UnresolvedFunction("array", Literal(1) :: Literal(2) :: Literal(3) :: Nil, false)),
551-
table("t").select(star())
552-
)
553-
)
554-
555547
comparePlans(
556548
parsePlan("SELECT /*+ HINT1(a, 5, 'a', b) */ * from t"),
557549
UnresolvedHint("HINT1", Seq($"a", Literal(5), Literal("a"), $"b"),

0 commit comments

Comments
 (0)