Repository: spark Updated Branches: refs/heads/branch-1.5 2195fec12 -> a3ab67146
[HOT-FIX] Remove unnessary changed introduced by the backport of SPARK-10577 (https://github.com/apache/spark/commit/30eea40fff97391b8ee3201dd7c6ea7440521386). Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/a3ab6714 Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/a3ab6714 Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/a3ab6714 Branch: refs/heads/branch-1.5 Commit: a3ab67146d2ab53626da477b13ef4b4f23df54e2 Parents: 2195fec Author: Yin Huai <[email protected]> Authored: Mon Oct 19 18:01:21 2015 -0700 Committer: Yin Huai <[email protected]> Committed: Mon Oct 19 18:01:21 2015 -0700 ---------------------------------------------------------------------- python/pyspark/sql/tests.py | 9 --------- 1 file changed, 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/a3ab6714/python/pyspark/sql/tests.py ---------------------------------------------------------------------- diff --git a/python/pyspark/sql/tests.py b/python/pyspark/sql/tests.py index 14414b3..490499a 100644 --- a/python/pyspark/sql/tests.py +++ b/python/pyspark/sql/tests.py @@ -1056,15 +1056,6 @@ class SQLTests(ReusedPySparkTestCase): keys = self.df.withColumn("key", self.df.key).select("key").collect() self.assertEqual([r.key for r in keys], list(range(100))) - # regression test for SPARK-10417 - def test_column_iterator(self): - - def foo(): - for x in self.df.key: - break - - self.assertRaises(TypeError, foo) - # add test for SPARK-10577 (test broadcast join hint) def test_functions_broadcast(self): from pyspark.sql.functions import broadcast --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
