Repository: incubator-impala
Updated Branches:
  refs/heads/master c7db60aa4 -> dc2f69e5a


IMPALA-4039: Increase width of Operator column in runtime profile

This patch changes the maximum column width in impala::PrintExecSummary
from 30 to 1000. It affects:
1. Summary page in web UI
2. "ExecSummary" section in runtime profile given by
    1). Profile command in impala-shell
    2). Profile page in web UI
Summary command in impala-shell is unaffected: there isn't a width limit
on client side.

Change-Id: I1ae559913a98e32f77782161aa2b76e7c8a5dabd
Reviewed-on: http://gerrit.cloudera.org:8080/7691
Reviewed-by: Lars Volker <[email protected]>
Tested-by: Impala Public Jenkins


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

Branch: refs/heads/master
Commit: da60a9a15ab21fd2569a90e1e91df56ae2640819
Parents: c7db60a
Author: Tianyi Wang <[email protected]>
Authored: Wed Aug 16 16:05:13 2017 -0700
Committer: Impala Public Jenkins <[email protected]>
Committed: Thu Aug 17 05:48:02 2017 +0000

----------------------------------------------------------------------
 be/src/util/summary-util.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/da60a9a1/be/src/util/summary-util.cc
----------------------------------------------------------------------
diff --git a/be/src/util/summary-util.cc b/be/src/util/summary-util.cc
index 5061efe..01b3d7e 100644
--- a/be/src/util/summary-util.cc
+++ b/be/src/util/summary-util.cc
@@ -113,7 +113,7 @@ string impala::PrintExecSummary(const TExecSummary& 
exec_summary) {
   if (!exec_summary.__isset.nodes) return "";
 
   TablePrinter printer;
-  printer.set_max_output_width(30);
+  printer.set_max_output_width(1000);
   printer.AddColumn("Operator", true);
   printer.AddColumn("#Hosts", false);
   printer.AddColumn("Avg Time", false);

Reply via email to