From: <tho...@us...> - 2014-01-04 21:46:42
|
Revision: 7725 http://bigdata.svn.sourceforge.net/bigdata/?rev=7725&view=rev Author: thompsonbry Date: 2014-01-04 21:46:36 +0000 (Sat, 04 Jan 2014) Log Message: ----------- Modified to NOT show the bopAnnotations for the "total" link of the Explain. Modified Paths: -------------- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/bop/engine/QueryLog.java Modified: branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/bop/engine/QueryLog.java =================================================================== --- branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/bop/engine/QueryLog.java 2014-01-04 21:46:02 UTC (rev 7724) +++ branches/BIGDATA_RELEASE_1_3_0/bigdata/src/java/com/bigdata/bop/engine/QueryLog.java 2014-01-04 21:46:36 UTC (rev 7725) @@ -1271,7 +1271,9 @@ if (detailedStats) { // bopAnnotations w.write(TD); - showAnnotations(w, bop.annotations()); + if (!summary) { + showAnnotations(w, bop.annotations()); + } w.write(TDx); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |