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:
parent
97fb5cc6d2
commit
73759be396
|
@ -294,7 +294,7 @@ public class ByteBufferKeyValue extends ByteBufferExtendedCell {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return CellUtil.toString(this, true);
|
||||
return CellUtil.toString(this, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -288,6 +288,6 @@ public class IndividualBytesFieldCell implements ExtendedCell, Cloneable {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return CellUtil.toString(this, true);
|
||||
return CellUtil.toString(this, false);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue