HBASE-27296 Some Cell's implementation of toString() such as IndividualBytesFieldCell prints out value and tags which is too verbose (#4695) (#4703)

Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
This commit is contained in:
huaxiangsun 2022-08-15 09:17:10 -07:00 committed by GitHub
parent 58f6bdfa51
commit a925b333c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -294,7 +294,7 @@ public class ByteBufferKeyValue extends ByteBufferExtendedCell {
@Override
public String toString() {
return CellUtil.toString(this, true);
return CellUtil.toString(this, false);
}
@Override

View File

@ -293,6 +293,6 @@ public class IndividualBytesFieldCell implements ExtendedCell, Cloneable {
@Override
public String toString() {
return CellUtil.toString(this, true);
return CellUtil.toString(this, false);
}
}

View File

@ -1506,7 +1506,7 @@ public abstract class HFileReaderImpl implements HFile.Reader, Configurable {
@Override
public String getKeyString() {
return CellUtil.toString(getKey(), true);
return CellUtil.toString(getKey(), false);
}
@Override