Github user ashashwat commented on the issue:
https://github.com/apache/spark/pull/20503
@HyukjinKwon `return "<Row(%s)>" % ", ".join("%s" % (fields) for fields in
self)` takes care of everything.
```
>>> Row ("aa", 11)
<Row(aa, 11)>
>>> Row (u"ì", 11)
<Row(ì, 11)>
>>> Row ("ì", 11)
<Row(ì, 11)>
```--- --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
