Github user squito commented on a diff in the pull request:

    https://github.com/apache/spark/pull/19388#discussion_r141924015
  
    --- Diff: 
core/src/test/scala/org/apache/spark/rdd/PairRDDFunctionsSuite.scala ---
    @@ -524,6 +525,13 @@ class PairRDDFunctionsSuite extends SparkFunSuite with 
SharedSparkContext {
         pairs.saveAsNewAPIHadoopFile[ConfigTestFormat]("ignored")
       }
     
    +  test("The JobId on driver and executor should be the same during the 
commit") {
    +    val pairs = sc.parallelize(Array((new Integer(1), new Integer(2))), 1).
    +      map( p => (new Integer(p._1 + 1), new Integer(p._2 + 1))).filter( p 
=> p._1 > 0)
    --- End diff --
    
    oh, of course on the pairs, sorry I missed that.


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to