Github user liancheng commented on the pull request:
https://github.com/apache/spark/pull/11443#issuecomment-194252311
@marmbrus After this migration, the following Java code doesn't compile any
more:
```java
Array<Row> = df.collect()
```
This is because `Dataset.collect()` now returns `Array[T]`, while Java
doesn't allow returning generic array, and thus erased the type to `Object` on
Java side. I added `collectRows()`/`takeRows()` mostly for compiling existing
MLlib code without significant potential performance regression.
---
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]