Github user sun-rui commented on a diff in the pull request:
https://github.com/apache/spark/pull/12836#discussion_r64873380
--- Diff: core/src/main/scala/org/apache/spark/api/r/RRunner.scala ---
@@ -149,12 +150,23 @@ private[spark] class RRunner[U](
dataOut.writeInt(numPartitions)
- dataOut.writeInt(if (isDataFrame) 1 else 0)
+ val mode = if (isDataFrame && key != null) {
+ 2 // gapply
+ } else if (isDataFrame) {
+ 1 // dapply
+ } else {
+ 0 // RDD
+ }
+ dataOut.writeInt(mode)
if (isDataFrame) {
SerDe.writeObject(dataOut, colNames)
}
+ if (key != null) {
--- End diff --
what is this piece of code for?
---
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]