From 8e9e8c3c7e965cfbbb8a10d79da673b549da9d5a Mon Sep 17 00:00:00 2001 From: xifeng yang Date: Thu, 30 Dec 2021 19:28:08 +0800 Subject: [PATCH] [KYUUBI #1597] fix row value in Query Execution should be queryExecution ### _Why are the changes needed?_ row value in Query Execution should be queryExecution ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [x] Add screenshots for manual tests if appropriate ![image](https://user-images.githubusercontent.com/12961802/147735708-bfb49799-1aa8-4eb2-8ef8-eda81fbfa869.png) - [ ] [Run test](https://kyuubi.readthedocs.io/en/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #1657 from xifeng/kyuubi-1597. Closes #1597 cf9f9aca [xifeng yang] [KYUUBI #1597] fix row value in Query Execution should be queryExecution Authored-by: xifeng yang Signed-off-by: Kent Yao --- .../src/main/scala/org/apache/spark/ui/EnginePage.scala | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/ui/EnginePage.scala b/externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/ui/EnginePage.scala index 00c5ff1d9..f9c4c5667 100644 --- a/externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/ui/EnginePage.scala +++ b/externals/kyuubi-spark-sql-engine/src/main/scala/org/apache/spark/ui/EnginePage.scala @@ -364,7 +364,9 @@ private class StatementStatsPagedTable( {event.state} - {errorMessageCell(event.exception.map(Utils.stringifyException).getOrElse(""))} + + {event.queryExecution} + }