You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2017/07/17 08:22:39 UTC

[02/21] ignite git commit: IGNITE-5639 Added duration for empty result set.

IGNITE-5639 Added duration for empty result set.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/f3828261
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/f3828261
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/f3828261

Branch: refs/heads/ignite-5578-locJoin
Commit: f3828261b30c12d5aa181914033afe46c787f87e
Parents: 707c454
Author: Alexey Kuznetsov <ak...@apache.org>
Authored: Wed Jul 12 14:57:50 2017 +0700
Committer: Alexey Kuznetsov <ak...@apache.org>
Committed: Wed Jul 12 14:57:50 2017 +0700

----------------------------------------------------------------------
 modules/web-console/frontend/views/sql/sql.tpl.pug | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/f3828261/modules/web-console/frontend/views/sql/sql.tpl.pug
----------------------------------------------------------------------
diff --git a/modules/web-console/frontend/views/sql/sql.tpl.pug b/modules/web-console/frontend/views/sql/sql.tpl.pug
index f215c43..0b8011a 100644
--- a/modules/web-console/frontend/views/sql/sql.tpl.pug
+++ b/modules/web-console/frontend/views/sql/sql.tpl.pug
@@ -196,7 +196,7 @@ mixin paragraph-scan
 
         .col-sm-12.sql-result(ng-if='paragraph.queryExecuted()' ng-switch='paragraph.resultType()')
             .error(ng-switch-when='error') Error: {{paragraph.error.message}}
-            .empty(ng-switch-when='empty') Result set is empty
+            .empty(ng-switch-when='empty') Result set is empty. Duration: #[b {{paragraph.duration | duration}}]
             .table(ng-switch-when='table')
                 +table-result-heading-scan
                 +table-result-body
@@ -247,7 +247,7 @@ mixin paragraph-query
                 label Error: {{paragraph.error.message}}
                 br
                 a(ng-show='paragraph.resultType() === "error"' ng-click='showStackTrace(paragraph)') Show more
-            .empty(ng-switch-when='empty') Result set is empty
+            .empty(ng-switch-when='empty') Result set is empty. Duration: #[b {{paragraph.duration | duration}}]
             .table(ng-switch-when='table')
                 +table-result-heading-query
                 +table-result-body