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

Signed-off-by: Nick Dimiduk <ndimiduk@apache.org>
This commit is contained in:
huaxiangsun 2022-08-12 12:17:14 -07:00 committed by GitHub
parent 97fb5cc6d2
commit 73759be396
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

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

View File

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