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

    https://github.com/apache/spark/pull/5839#discussion_r29546030
  
    --- Diff: python/pyspark/sql/tests.py ---
    @@ -426,6 +426,12 @@ def test_rand_functions(self):
             for row in rndn:
                 assert row[1] >= -4.0 and row[1] <= 4.0, "got: %s" % row[1]
     
    +    def test_between_function(self):
    +        df = self.sqlCtx.parallelize([Row(a=1, b=2, c=3), Row(a=2, b=1, 
c=3), Row(a=4, b=1, c=4)]).toDF()
    --- End diff --
    
    i think this line would fail pep8 because it is over 100 chars


---
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