aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/sql/tests.py
diff options
context:
space:
mode:
authorLiang-Chi Hsieh <simonh@tw.ibm.com>2016-04-22 09:19:36 -0700
committerDavies Liu <davies.liu@gmail.com>2016-04-22 09:19:36 -0700
commit056883e070bd258d193fd4d783ab608a19b86c36 (patch)
tree7072659655b15b2ed60c809efcd7af5c2b002e88 /python/pyspark/sql/tests.py
parent5bed13a872dc06d099c810cf4caa15b4f27a1e7c (diff)
downloadspark-056883e070bd258d193fd4d783ab608a19b86c36.tar.gz
spark-056883e070bd258d193fd4d783ab608a19b86c36.tar.bz2
spark-056883e070bd258d193fd4d783ab608a19b86c36.zip
[SPARK-13266] [SQL] None read/writer options were not transalated to "null"
## What changes were proposed in this pull request? In Python, the `option` and `options` method of `DataFrameReader` and `DataFrameWriter` were sending the string "None" instead of `null` when passed `None`, therefore making it impossible to send an actual `null`. This fixes that problem. This is based on #11305 from mathieulongtin. ## How was this patch tested? Added test to readwriter.py. Author: Liang-Chi Hsieh <simonh@tw.ibm.com> Author: mathieu longtin <mathieu.longtin@nuance.com> Closes #12494 from viirya/py-df-none-option.
Diffstat (limited to 'python/pyspark/sql/tests.py')
-rw-r--r--python/pyspark/sql/tests.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/python/pyspark/sql/tests.py b/python/pyspark/sql/tests.py
index 3b1b2948e9..42e283073f 100644
--- a/python/pyspark/sql/tests.py
+++ b/python/pyspark/sql/tests.py
@@ -859,6 +859,9 @@ class SQLTests(ReusedPySparkTestCase):
self.assertEqual(sorted(df.collect()), sorted(actual.collect()))
self.sqlCtx.sql("SET spark.sql.sources.default=" + defaultDataSourceName)
+ csvpath = os.path.join(tempfile.mkdtemp(), 'data')
+ df.write.option('quote', None).format('csv').save(csvpath)
+
shutil.rmtree(tmpPath)
def test_save_and_load_builder(self):