We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a317af2 commit 6e53a99Copy full SHA for 6e53a99
1 file changed
sql/core/src/main/scala/org/apache/spark/sql/execution/SortExec.scala
@@ -63,7 +63,7 @@ case class SortExec(
63
"spillSize" -> SQLMetrics.createSizeMetric(sparkContext, "spill size"))
64
65
// WARNING: This is a shared mutable var on the SortExec instance. Do not access it from
66
- // multiple threads concurrently — Spark operators do not guarantee thread-safety and one
+ // multiple threads concurrently - Spark operators do not guarantee thread-safety and one
67
// task's sorter could overwrite another's, causing a race condition.
68
private[sql] var rowSorter: UnsafeExternalRowSorter = _
69
0 commit comments