Skip to content
Snippets Groups Projects
Commit 6ab75780 authored by zsxwing's avatar zsxwing Committed by Reynold Xin
Browse files

SPARK-1589: Fix the incorrect compare

JIRA: https://issues.apache.org/jira/browse/SPARK-1589

Author: zsxwing <zsxwing@gmail.com>

Closes #508 from zsxwing/SPARK-1589 and squashes the following commits:

570c67a [zsxwing] SPARK-1589: Fix the incorrect compare
parent 1d6abe3a
No related branches found
No related tags found
No related merge requests found
......@@ -292,7 +292,11 @@ class PairRDDFunctions[K, V](self: RDD[(K, V)])
if (keyClass.isArray && partitioner.isInstanceOf[HashPartitioner]) {
throw new SparkException("Default partitioner cannot partition array keys.")
}
if (self.partitioner == partitioner) self else new ShuffledRDD[K, V, (K, V)](self, partitioner)
if (self.partitioner == Some(partitioner)) {
self
} else {
new ShuffledRDD[K, V, (K, V)](self, partitioner)
}
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment