Github user davies commented on a diff in the pull request:

    https://github.com/apache/spark/pull/2563#discussion_r18384024
  
    --- Diff: python/pyspark/sql.py ---
    @@ -312,42 +343,24 @@ def __repr__(self):
             return ("StructType(List(%s))" %
                     ",".join(str(field) for field in self.fields))
     
    +    def jsonValue(self):
    +        return {self.simpleString():
    +                {'fields': map(lambda f: f.jsonValue(), self.fields)}}
     
    -def _parse_datatype_list(datatype_list_string):
    -    """Parses a list of comma separated data types."""
    -    index = 0
    -    datatype_list = []
    -    start = 0
    -    depth = 0
    -    while index < len(datatype_list_string):
    -        if depth == 0 and datatype_list_string[index] == ",":
    -            datatype_string = datatype_list_string[start:index].strip()
    -            datatype_list.append(_parse_datatype_string(datatype_string))
    -            start = index + 1
    -        elif datatype_list_string[index] == "(":
    -            depth += 1
    -        elif datatype_list_string[index] == ")":
    -            depth -= 1
    -
    -        index += 1
    -
    -    # Handle the last data type
    -    datatype_string = datatype_list_string[start:index].strip()
    -    datatype_list.append(_parse_datatype_string(datatype_string))
    -    return datatype_list
     
    +_all_primitive_types = dict((_get_simple_string(v), v)
    +                            for v in globals().itervalues()
    --- End diff --
    
    it's better to call v.simpleString(), maybe call it `typeName` ?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to