[GitHub] spark pull request #15899: [SPARK-18466] added withFilter method to RDD

2018-11-10 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/spark/pull/15899 --- - To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org

[GitHub] spark pull request #15899: [SPARK-18466] added withFilter method to RDD

2018-11-06 Thread rxin
Github user rxin commented on a diff in the pull request: https://github.com/apache/spark/pull/15899#discussion_r231390266 --- Diff: core/src/main/scala/org/apache/spark/rdd/RDD.scala --- @@ -387,6 +387,14 @@ abstract class RDD[T: ClassTag]( preservesPartitioning = true)

[GitHub] spark pull request #15899: [SPARK-18466] added withFilter method to RDD

2018-11-06 Thread dongjoon-hyun
Github user dongjoon-hyun commented on a diff in the pull request: https://github.com/apache/spark/pull/15899#discussion_r231389555 --- Diff: core/src/main/scala/org/apache/spark/rdd/RDD.scala --- @@ -387,6 +387,14 @@ abstract class RDD[T: ClassTag](

[GitHub] spark pull request #15899: [SPARK-18466] added withFilter method to RDD

2016-11-16 Thread reggert
Github user reggert commented on a diff in the pull request: https://github.com/apache/spark/pull/15899#discussion_r88267555 --- Diff: core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala --- @@ -70,6 +70,7 @@ class RDDSuite extends SparkFunSuite with SharedSparkContext {

[GitHub] spark pull request #15899: [SPARK-18466] added withFilter method to RDD

2016-11-15 Thread rxin
Github user rxin commented on a diff in the pull request: https://github.com/apache/spark/pull/15899#discussion_r88180989 --- Diff: core/src/test/scala/org/apache/spark/rdd/RDDSuite.scala --- @@ -70,6 +70,7 @@ class RDDSuite extends SparkFunSuite with SharedSparkContext {

[GitHub] spark pull request #15899: [SPARK-18466] added withFilter method to RDD

2016-11-15 Thread reggert
GitHub user reggert opened a pull request: https://github.com/apache/spark/pull/15899 [SPARK-18466] added withFilter method to RDD ## What changes were proposed in this pull request? A `withFilter` method has been added to `RDD` as an alias for the `filter` method. When