Github user viirya commented on a diff in the pull request:
https://github.com/apache/spark/pull/13036#discussion_r84476560
--- Diff: python/pyspark/sql/tests.py ---
@@ -799,25 +799,30 @@ def test_first_last_ignorenulls(self):
def test_approxQuantile(self):
df = self.sc.parallelize([Row(a=i) for i in range(10)]).toDF()
- aq = df.stat.approxQuantile("a", [0.1, 0.5, 0.9], 0.1)
+ aq = df.stat.approxQuantile(u"a", [0.1, 0.5, 0.9], 0.1)
--- End diff --
Basically in these tests the field names are all ascii characters. Is it
possibly to add tests using non-ascii characters so we can make sure it works?
---
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]