Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
spark
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs525-sp18-g07
spark
Commits
553c578d
Commit
553c578d
authored
10 years ago
by
Patrick Wendell
Browse files
Options
Downloads
Patches
Plain Diff
HOTFIX: Remove persistently failing test in master.
Apparently this functionality is going to be removed soon anywyas.
parent
dd22bc2d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala
+0
-28
0 additions, 28 deletions
sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala
with
0 additions
and
28 deletions
sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala
+
0
−
28
View file @
553c578d
...
...
@@ -36,34 +36,6 @@ class JoinSuite extends QueryTest {
assert
(
planned
.
size
===
1
)
}
test
(
"plans broadcast hash join, given hints"
)
{
def
mkTest
(
buildSide
:
BuildSide
,
leftTable
:
String
,
rightTable
:
String
)
=
{
TestSQLContext
.
set
(
"spark.sql.join.broadcastTables"
,
s
"${if (buildSide == BuildRight) rightTable else leftTable}"
)
val
rdd
=
sql
(
s
"""SELECT * FROM $leftTable JOIN $rightTable ON key = a"""
)
// Using `sparkPlan` because for relevant patterns in HashJoin to be
// matched, other strategies need to be applied.
val
physical
=
rdd
.
queryExecution
.
sparkPlan
val
bhj
=
physical
.
collect
{
case
j
:
BroadcastHashJoin
if
j.buildSide
=
=
buildSide
=>
j
}
assert
(
bhj
.
size
===
1
,
"planner does not pick up hint to generate broadcast hash join"
)
checkAnswer
(
rdd
,
Seq
(
(
1
,
"1"
,
1
,
1
),
(
1
,
"1"
,
1
,
2
),
(
2
,
"2"
,
2
,
1
),
(
2
,
"2"
,
2
,
2
),
(
3
,
"3"
,
3
,
1
),
(
3
,
"3"
,
3
,
2
)
))
}
mkTest
(
BuildRight
,
"testData"
,
"testData2"
)
mkTest
(
BuildLeft
,
"testData"
,
"testData2"
)
}
test
(
"multiple-key equi-join is hash-join"
)
{
val
x
=
testData2
.
as
(
'x
)
val
y
=
testData2
.
as
(
'y
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment