aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorShixiong Zhu <shixiong@databricks.com>2016-05-31 14:50:07 -0700
committerShixiong Zhu <shixiong@databricks.com>2016-05-31 14:50:07 -0700
commit9a74de18a13d84805e1a448f858bb05ce30de87e (patch)
treedb75558e00e3e926bbb57070299187519d30adb7 /python
parentc6de5832bfad423e7d6f7e0a92a48170265f25cd (diff)
downloadspark-9a74de18a13d84805e1a448f858bb05ce30de87e.tar.gz
spark-9a74de18a13d84805e1a448f858bb05ce30de87e.tar.bz2
spark-9a74de18a13d84805e1a448f858bb05ce30de87e.zip
Revert "[SPARK-11753][SQL][TEST-HADOOP2.2] Make allowNonNumericNumbers option work
## What changes were proposed in this pull request? This reverts commit c24b6b679c3efa053f7de19be73eb36dc70d9930. Sent a PR to run Jenkins tests due to the revert conflicts of `dev/deps/spark-deps-hadoop*`. ## How was this patch tested? Jenkins unit tests, integration tests, manual tests) Author: Shixiong Zhu <shixiong@databricks.com> Closes #13417 from zsxwing/revert-SPARK-11753.
Diffstat (limited to 'python')
-rw-r--r--python/pyspark/sql/readwriter.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/pyspark/sql/readwriter.py b/python/pyspark/sql/readwriter.py
index 13d21d7143..73105f881b 100644
--- a/python/pyspark/sql/readwriter.py
+++ b/python/pyspark/sql/readwriter.py
@@ -193,9 +193,6 @@ class DataFrameReader(object):
set, it uses the default value, ``true``.
:param allowNumericLeadingZero: allows leading zeros in numbers (e.g. 00012). If None is
set, it uses the default value, ``false``.
- :param allowNonNumericNumbers: allows using non-numeric numbers such as "NaN", "Infinity",
- "-Infinity", "INF", "-INF", which are convertd to floating
- point numbers, ``true``.
:param allowBackslashEscapingAnyCharacter: allows accepting quoting of all character
using backslash quoting mechanism. If None is
set, it uses the default value, ``false``.