You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by jo...@apache.org on 2016/02/10 21:46:17 UTC

spark git commit: [HOTFIX] Fix Scala 2.10 build break in TakeOrderedAndProjectSuite.

Repository: spark
Updated Branches:
  refs/heads/master 4b80026f0 -> ce3bdaeef


[HOTFIX] Fix Scala 2.10 build break in TakeOrderedAndProjectSuite.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/ce3bdaee
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/ce3bdaee
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/ce3bdaee

Branch: refs/heads/master
Commit: ce3bdaeeff718b7b5809eed15f7e4b5188e9fc7c
Parents: 4b80026
Author: Josh Rosen <jo...@databricks.com>
Authored: Wed Feb 10 12:44:14 2016 -0800
Committer: Josh Rosen <jo...@databricks.com>
Committed: Wed Feb 10 12:44:40 2016 -0800

----------------------------------------------------------------------
 .../apache/spark/sql/execution/TakeOrderedAndProjectSuite.scala  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/ce3bdaee/sql/core/src/test/scala/org/apache/spark/sql/execution/TakeOrderedAndProjectSuite.scala
----------------------------------------------------------------------
diff --git a/sql/core/src/test/scala/org/apache/spark/sql/execution/TakeOrderedAndProjectSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/execution/TakeOrderedAndProjectSuite.scala
index 03cb04a..a4c6d07 100644
--- a/sql/core/src/test/scala/org/apache/spark/sql/execution/TakeOrderedAndProjectSuite.scala
+++ b/sql/core/src/test/scala/org/apache/spark/sql/execution/TakeOrderedAndProjectSuite.scala
@@ -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)
     }
   }
@@ -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)
     }
   }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org