Skip to content

Commit d17c7b6

Browse files
committed
[SPARK-29053][WEBUI] Updated for Execution Time column
1 parent f36a618 commit d17c7b6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

sql/hive-thriftserver/src/main/scala/org/apache/spark/sql/hive/thriftserver/ui/ThriftServerPage.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ private[ui] class ThriftServerPage(parent: ThriftServerTab) extends WebUIPage(""
9191
<td>{formatDate(info.startTimestamp)}</td>
9292
<td>{if (info.finishTimestamp > 0) formatDate(info.finishTimestamp)}</td>
9393
<td>{if (info.closeTimestamp > 0) formatDate(info.closeTimestamp)}</td>
94-
<td>{formatDurationOption(Some(info.totalTime(info.finishTimestamp)))}</td>
94+
<td sorttable_customkey={info.totalTime(info.finishTimestamp).toString}>
95+
{formatDurationOption(Some(info.totalTime(info.finishTimestamp)))} </td>
9596
<td sorttable_customkey={info.totalTime(info.closeTimestamp).toString}>
9697
{formatDurationOption(Some(info.totalTime(info.closeTimestamp)))} </td>
9798
<td>{info.statement}</td>

0 commit comments

Comments
 (0)