07ARB commented on a change in pull request #26216: [SPARK-29453][WEBUI] 
Improve tooltips information for SQL tab.
URL: https://github.com/apache/spark/pull/26216#discussion_r338903717
 
 

 ##########
 File path: 
sql/core/src/main/scala/org/apache/spark/sql/execution/ui/AllExecutionsPage.scala
 ##########
 @@ -290,6 +289,32 @@ private[ui] class ExecutionPagedTable(
         }
       }
 
+    var headerNameWithTooltips: Map[String, String] = Map("ID" -> "Execution 
ID of the SQL query.",
+      "Description" ->
+        ("Description of the SQL query. When click on the description link," +
+          " it will navigate to query details page."),
+      "Submitted" -> "Submitted",
+      "Duration" ->
+        "Difference between start time and close time.")
+
+      if (showRunningJobs && showSucceededJobs && showFailedJobs) {
 
 Review comment:
   @shahidki31 , this is added to check assert condition 
(headerNameWithTooltips  size must be same as header length ).
   because here header length will changed based on above condition.
   I followed same approach like you suggested (#25723)

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to