aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/sql/tests.py
diff options
context:
space:
mode:
authorfelixcheung <felixcheung_m@hotmail.com>2016-04-19 17:29:28 -0700
committerDavies Liu <davies.liu@gmail.com>2016-04-19 17:29:28 -0700
commit3664142350afb6bf40a8bcb3508b56670603dae4 (patch)
tree31d89a8d4f7ec6e57b61c404cafc3d34319428f5 /python/pyspark/sql/tests.py
parenta685e65a4ca0b300b12103fccbda29cb08221f5d (diff)
downloadspark-3664142350afb6bf40a8bcb3508b56670603dae4.tar.gz
spark-3664142350afb6bf40a8bcb3508b56670603dae4.tar.bz2
spark-3664142350afb6bf40a8bcb3508b56670603dae4.zip
[SPARK-14717] [PYTHON] Scala, Python APIs for Dataset.unpersist differ in default blocking value
## What changes were proposed in this pull request? Change unpersist blocking parameter default value to match Scala ## How was this patch tested? unit tests, manual tests jkbradley davies Author: felixcheung <felixcheung_m@hotmail.com> Closes #12507 from felixcheung/pyunpersist.
Diffstat (limited to 'python/pyspark/sql/tests.py')
-rw-r--r--python/pyspark/sql/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/pyspark/sql/tests.py b/python/pyspark/sql/tests.py
index e4f79c911c..d4c221d712 100644
--- a/python/pyspark/sql/tests.py
+++ b/python/pyspark/sql/tests.py
@@ -362,7 +362,7 @@ class SQLTests(ReusedPySparkTestCase):
# cache and checkpoint
self.assertFalse(df.is_cached)
df.persist()
- df.unpersist()
+ df.unpersist(True)
df.cache()
self.assertTrue(df.is_cached)
self.assertEqual(2, df.count())