File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
sql/core/src/main/scala/org/apache/spark/sql/execution/ui Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -486,7 +486,7 @@ private[ui] class ExecutionDataSource(
486486 case (_, jobStatus) => jobStatus == JobExecutionStatus .FAILED
487487 }.map { case (jobId, _) => jobId }.toSeq.sorted
488488 } else Seq .empty
489-
489+
490490 new ExecutionTableRowData (
491491 submissionTime,
492492 duration,
@@ -496,9 +496,7 @@ private[ui] class ExecutionDataSource(
496496 failedJobData)
497497 }
498498
499- /**
500- * Return Ordering according to sortColumn and desc
501- */
499+ /** Return Ordering according to sortColumn and desc. */
502500 private def ordering (sortColumn : String , desc : Boolean ): Ordering [ExecutionTableRowData ] = {
503501 val ordering : Ordering [ExecutionTableRowData ] = sortColumn match {
504502 case " ID" => Ordering .by(_.executionUIData.executionId)
You can’t perform that action at this time.
0 commit comments