aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-03-16 22:48:58 -0700
committerReynold Xin <rxin@databricks.com>2016-03-16 22:48:58 -0700
commitc890c359b1dfb64274d1d0067b1e16d834035f11 (patch)
treed0c2cd72ef3886cb09e72b59baedad2555b6e928 /sql/core/src
parent7eef2463ade693f8e87ecd913a5adf03b69ac14e (diff)
downloadspark-c890c359b1dfb64274d1d0067b1e16d834035f11.tar.gz
spark-c890c359b1dfb64274d1d0067b1e16d834035f11.tar.bz2
spark-c890c359b1dfb64274d1d0067b1e16d834035f11.zip
[MINOR][SQL][BUILD] Remove duplicated lines
## What changes were proposed in this pull request? This PR removes three minor duplicated lines. First one is making the following unreachable code warning. ``` JoinSuite.scala:52: unreachable code [warn] case j: BroadcastHashJoin => j ``` The other two are just consecutive repetitions in `Seq` of MiMa filters. ## How was this patch tested? Pass the existing Jenkins test. Author: Dongjoon Hyun <dongjoon@apache.org> Closes #11773 from dongjoon-hyun/remove_duplicated_line.
Diffstat (limited to 'sql/core/src')
-rw-r--r--sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala1
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala
index 41919910a9..03d6df8c28 100644
--- a/sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala
+++ b/sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala
@@ -49,7 +49,6 @@ class JoinSuite extends QueryTest with SharedSQLContext {
case j: BroadcastHashJoin => j
case j: CartesianProduct => j
case j: BroadcastNestedLoopJoin => j
- case j: BroadcastHashJoin => j
case j: SortMergeJoin => j
}