Skip to content

Commit

Permalink
[HOTFIX] Fix Scala 2.10 build break in TakeOrderedAndProjectSuite.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshRosen committed Feb 10, 2016
1 parent 4b80026 commit ce3bdae
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class TakeOrderedAndProjectSuite extends SparkPlanTest with SharedSQLContext {
input =>
GlobalLimit(limit,
LocalLimit(limit,
Sort(sortOrder, global = true, input))),
Sort(sortOrder, true, input))),
sortAnswers = false)
}
}
Expand All @@ -78,7 +78,7 @@ class TakeOrderedAndProjectSuite extends SparkPlanTest with SharedSQLContext {
GlobalLimit(limit,
LocalLimit(limit,
Project(Seq(input.output.last),
Sort(sortOrder, global = true, input)))),
Sort(sortOrder, true, input)))),
sortAnswers = false)
}
}
Expand Down

0 comments on commit ce3bdae

Please sign in to comment.