You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by ja...@apache.org on 2017/11/15 18:35:07 UTC

[39/40] phoenix git commit: Remove print outs to stdout from GroupByIT

Remove print outs to stdout from GroupByIT


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

Branch: refs/heads/4.x-HBase-1.2
Commit: 0519782c494d7c1aecbcb8ec270cbdc7bb76fb27
Parents: 2c43068
Author: James Taylor <jt...@salesforce.com>
Authored: Wed Nov 15 10:12:27 2017 -0800
Committer: James Taylor <jt...@salesforce.com>
Committed: Wed Nov 15 10:22:00 2017 -0800

----------------------------------------------------------------------
 .../src/it/java/org/apache/phoenix/end2end/GroupByCaseIT.java      | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/0519782c/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByCaseIT.java
----------------------------------------------------------------------
diff --git a/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByCaseIT.java b/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByCaseIT.java
index cc850b7..ea3194a 100644
--- a/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByCaseIT.java
+++ b/phoenix-core/src/it/java/org/apache/phoenix/end2end/GroupByCaseIT.java
@@ -972,8 +972,6 @@ public class GroupByCaseIT extends ParallelStatsDisabledIT {
             conn.createStatement().execute("UPSERT INTO "+intTableName+" VALUES (5,1)");
             conn.commit();
 
-            TestUtil.dumpTable(conn.unwrap(PhoenixConnection.class).getQueryServices().getTable(Bytes.toBytes(intTableName)));
-
             sql="select count(*) from "+intTableName;
             ResultSet rs=conn.createStatement().executeQuery(sql);
             assertTrue(rs.next());