aboutsummaryrefslogtreecommitdiff
path: root/python/pyspark/sql.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/pyspark/sql.py')
-rw-r--r--python/pyspark/sql.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/pyspark/sql.py b/python/pyspark/sql.py
index d4ca0cc8f3..0ff6a548a8 100644
--- a/python/pyspark/sql.py
+++ b/python/pyspark/sql.py
@@ -186,15 +186,15 @@ class ArrayType(DataType):
"""
- def __init__(self, elementType, containsNull=False):
+ def __init__(self, elementType, containsNull=True):
"""Creates an ArrayType
:param elementType: the data type of elements.
:param containsNull: indicates whether the list contains None values.
- >>> ArrayType(StringType) == ArrayType(StringType, False)
+ >>> ArrayType(StringType) == ArrayType(StringType, True)
True
- >>> ArrayType(StringType, True) == ArrayType(StringType)
+ >>> ArrayType(StringType, False) == ArrayType(StringType)
False
"""
self.elementType = elementType