You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by jd...@apache.org on 2017/01/13 16:36:11 UTC

[2/2] kudu git commit: Remove Schema#toString from RowResult#toString

Remove Schema#toString from RowResult#toString

In RowResult#toString, the result string is consists of some strings including
the result of Schema#toString but Schema doesn't explicitly declare the method
so we should remove it.

Change-Id: Id2e01cc1cc52958c73dfd75304a826ea033ce785
Reviewed-on: http://gerrit.cloudera.org:8080/5534
Tested-by: Kudu Jenkins
Reviewed-by: Jean-Daniel Cryans <jd...@apache.org>


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

Branch: refs/heads/master
Commit: b7e2089f870cf35d3bb95ac0a099e661df392cdc
Parents: ef710cd
Author: Kousuke Saruta <sa...@oss.nttdata.co.jp>
Authored: Fri Dec 16 14:01:33 2016 +0900
Committer: Jean-Daniel Cryans <jd...@apache.org>
Committed: Fri Jan 13 16:35:38 2017 +0000

----------------------------------------------------------------------
 .../src/main/java/org/apache/kudu/client/RowResult.java           | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/b7e2089f/java/kudu-client/src/main/java/org/apache/kudu/client/RowResult.java
----------------------------------------------------------------------
diff --git a/java/kudu-client/src/main/java/org/apache/kudu/client/RowResult.java b/java/kudu-client/src/main/java/org/apache/kudu/client/RowResult.java
index d85e777..7a10380 100644
--- a/java/kudu-client/src/main/java/org/apache/kudu/client/RowResult.java
+++ b/java/kudu-client/src/main/java/org/apache/kudu/client/RowResult.java
@@ -507,8 +507,7 @@ public class RowResult {
 
   @Override
   public String toString() {
-    return "RowResult index: " + this.index + ", size: " + this.rowSize + ", " +
-        "schema: " + this.schema;
+    return "RowResult index: " + this.index + ", size: " + this.rowSize;
   }
 
   /**