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