From 52c60537a274af5414f6b0340a4bd7488ef35280 Mon Sep 17 00:00:00 2001 From: MechCoder Date: Thu, 20 Aug 2015 10:05:31 -0700 Subject: [MINOR] [SQL] Fix sphinx warnings in PySpark SQL Author: MechCoder Closes #8171 from MechCoder/sql_sphinx. --- python/pyspark/sql/types.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python/pyspark/sql') diff --git a/python/pyspark/sql/types.py b/python/pyspark/sql/types.py index c083bf8990..ed4e5b594b 100644 --- a/python/pyspark/sql/types.py +++ b/python/pyspark/sql/types.py @@ -467,9 +467,11 @@ class StructType(DataType): """ Construct a StructType by adding new elements to it to define the schema. The method accepts either: + a) A single parameter which is a StructField object. b) Between 2 and 4 parameters as (name, data_type, nullable (optional), - metadata(optional). The data_type parameter may be either a String or a DataType object + metadata(optional). The data_type parameter may be either a String or a + DataType object. >>> struct1 = StructType().add("f1", StringType(), True).add("f2", StringType(), True, None) >>> struct2 = StructType([StructField("f1", StringType(), True),\ -- cgit v1.2.3