TAJO-2163: No error message is showed when query execution failed.

Signed-off-by: Jihoon Son <jihoonson@apache.org>
diff --git a/CHANGES b/CHANGES
index 6819aa5..155aad0 100644
--- a/CHANGES
+++ b/CHANGES
@@ -151,6 +151,8 @@
 
   BUG FIXES
 
+    TAJO-2163: No error message is showed when query execution failed. (Wonjun Hong via jihoon)
+
     TAJO-2150: Fix invalid implementation of date time in jdbc. (jinho)
 
     TAJO-2151: Fix broken CI. (jihoon)
diff --git a/tajo-core/src/main/resources/webapps/admin/query_executor.jsp b/tajo-core/src/main/resources/webapps/admin/query_executor.jsp
index f359c99..01b164d 100644
--- a/tajo-core/src/main/resources/webapps/admin/query_executor.jsp
+++ b/tajo-core/src/main/resources/webapps/admin/query_executor.jsp
@@ -112,6 +112,7 @@
     if(resultJson.success == "false") {
       clearTimer();
       alert("query execution failed.");
+      $("#queryStatus").html(getQueryStatusHtml(resultJson));
       return;
     }
     queryRunnerId = resultJson.queryRunnerId;