We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0915e23 commit 39b1bbaCopy full SHA for 39b1bba
sql/core/src/main/scala/org/apache/spark/sql/execution/stat/FrequentItems.scala
@@ -54,7 +54,7 @@ private[sql] object FrequentItems extends Logging {
54
* @param other The map containing the counts for that partition
55
*/
56
def merge(other: FreqItemCounter): this.type = {
57
- other.baseMap.toSeq.foreach { case (k, v) =>
+ other.baseMap.foreach { case (k, v) =>
58
add(k, v)
59
}
60
this
0 commit comments