Github user reggert commented on the issue:

    https://github.com/apache/spark/pull/15899
  
    The only other weird case I've run into is trying to `flatMap` across 
multiple RDDs, e.g., `for (x <- rdd1; y <- rdd2) yield x + y`, but it simply 
won't compile because `RDD.flatMap` doesn't support it (for good reason). You 
_can_ do it for an RDD and a regular collection, e.g., `for (x <- rdd; y <- 1 
to 10) yield x + y`, which is a perfectly reasonable use case. Other than that, 
the only issues that I'm aware of are ones that would also affect regular 
(desugared) chained method calls.


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