Skip to content

Commit

Permalink
Expose DeterministicLevel - this is required to override getOutputDet…
Browse files Browse the repository at this point in the history
…erministicLevel in child RDD
  • Loading branch information
Mridul Muralidharan committed Oct 20, 2023
1 parent cd827d1 commit 6cbf8e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/scala/org/apache/spark/rdd/RDD.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2176,6 +2176,6 @@ object RDD {
* Note that, the output of an RDD usually relies on the parent RDDs. When the parent RDD's output
* is INDETERMINATE, it's very likely the RDD's output is also INDETERMINATE.
*/
private[spark] object DeterministicLevel extends Enumeration {
object DeterministicLevel extends Enumeration {
val DETERMINATE, UNORDERED, INDETERMINATE = Value
}

0 comments on commit 6cbf8e2

Please sign in to comment.