Repository: incubator-drill Updated Branches: refs/heads/master c305c794a -> 1e21045bf
DRILL-1638: display list of files in the logical plan Project: http://git-wip-us.apache.org/repos/asf/incubator-drill/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-drill/commit/23d5c38f Tree: http://git-wip-us.apache.org/repos/asf/incubator-drill/tree/23d5c38f Diff: http://git-wip-us.apache.org/repos/asf/incubator-drill/diff/23d5c38f Branch: refs/heads/master Commit: 23d5c38f5379048e2ca69aa99d3720c99a1f677a Parents: c305c79 Author: Hanifi Gunes <hgu...@maprtech.com> Authored: Mon Nov 10 18:00:02 2014 -0800 Committer: Hanifi Gunes <hgu...@maprtech.com> Committed: Tue Nov 11 16:14:33 2014 -0800 ---------------------------------------------------------------------- .../java/org/apache/drill/exec/store/dfs/easy/EasyGroupScan.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-drill/blob/23d5c38f/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyGroupScan.java ---------------------------------------------------------------------- diff --git a/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyGroupScan.java b/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyGroupScan.java index e22e07e..b505535 100644 --- a/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyGroupScan.java +++ b/exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/easy/EasyGroupScan.java @@ -225,7 +225,8 @@ public class EasyGroupScan extends AbstractFileGroupScan{ @Override public String toString() { - return "EasyGroupScan [selectionRoot=" + selectionRoot + ", numFiles=" + getFiles().size() + ", columns = " + columns + "]"; + final String pattern = "EasyGroupScan [selectionRoot=%s, numFiles=%s, columns=%s, files=%s]"; + return String.format(pattern, selectionRoot, getFiles().size(), columns, getFiles()); } @Override