Skip to content

Commit

Permalink
HBASE-27296 Some Cell's implementation of toString() such as Individu…
Browse files Browse the repository at this point in the history
…alBytesFieldCell prints out value and tags which is too verbose (#4695)

Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
  • Loading branch information
huaxiangsun authored Aug 12, 2022
1 parent 97fb5cc commit 73759be
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ public void write(ByteBuffer buf, int offset) {

@Override
public String toString() {
return CellUtil.toString(this, true);
return CellUtil.toString(this, false);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,6 @@ public void setTimestamp(byte[] ts) {

@Override
public String toString() {
return CellUtil.toString(this, true);
return CellUtil.toString(this, false);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1510,7 +1510,7 @@ public Cell getCell() {

@Override
public String getKeyString() {
return CellUtil.toString(getKey(), true);
return CellUtil.toString(getKey(), false);
}

@Override
Expand Down

0 comments on commit 73759be

Please sign in to comment.