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

    https://github.com/apache/spark/pull/17469#discussion_r110800343
  
    --- Diff: python/pyspark/sql/column.py ---
    @@ -250,11 +250,50 @@ def __iter__(self):
             raise TypeError("Column is not iterable")
     
         # string methods
    +    _rlike_doc = """
    +    Return a Boolean :class:`Column` based on a regex match.
    +
    +    :param other: an extended regex expression
    +
    +    >>> df.filter(df.name.rlike('ice$')).collect()
    +    [Row(name=u'Alice', age=1)]
    --- End diff --
    
    It sounds the test failure is here. If you click the link, the full logs 
can be checked (e.g., 
https://amplab.cs.berkeley.edu/jenkins/job/SparkPullRequestBuilder/75622/console).
    
    Up to my knowledge, Row in python sorts the field names and therefore I 
guess it should be `[Row(age=1, name=u'Alice')]`. 


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to