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 (apache#4695) (apache#4703)

Signed-off-by: Nick Dimiduk <[email protected]>
  • Loading branch information
huaxiangsun authored Aug 15, 2022
1 parent 58f6bdf commit a925b33
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 @@ -293,6 +293,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 @@ -1506,7 +1506,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 a925b33

Please sign in to comment.