This is an automated email from the ASF dual-hosted git repository.
huaxiangsun pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-2 by this push:
new b25ded026b7 HBASE-27296 Some Cell's implementation of toString() such
as IndividualBytesFieldCell prints out value and tags which is too verbose
(#4695) (#4701)
b25ded026b7 is described below
commit b25ded026b7ce01e2b661352cce6464885a0d738
Author: huaxiangsun <[email protected]>
AuthorDate: Mon Aug 15 09:16:29 2022 -0700
HBASE-27296 Some Cell's implementation of toString() such as
IndividualBytesFieldCell prints out value and tags which is too verbose (#4695)
(#4701)
Signed-off-by: Nick Dimiduk <[email protected]>
---
.../src/main/java/org/apache/hadoop/hbase/ByteBufferKeyValue.java | 2 +-
.../src/main/java/org/apache/hadoop/hbase/IndividualBytesFieldCell.java | 2 +-
.../src/main/java/org/apache/hadoop/hbase/io/hfile/HFileReaderImpl.java | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/hbase-common/src/main/java/org/apache/hadoop/hbase/ByteBufferKeyValue.java
b/hbase-common/src/main/java/org/apache/hadoop/hbase/ByteBufferKeyValue.java
index 6c1c510ccb8..9c668c1cc3f 100644
--- a/hbase-common/src/main/java/org/apache/hadoop/hbase/ByteBufferKeyValue.java
+++ b/hbase-common/src/main/java/org/apache/hadoop/hbase/ByteBufferKeyValue.java
@@ -294,7 +294,7 @@ public class ByteBufferKeyValue extends
ByteBufferExtendedCell {
@Override
public String toString() {
- return CellUtil.toString(this, true);
+ return CellUtil.toString(this, false);
}
@Override
diff --git
a/hbase-common/src/main/java/org/apache/hadoop/hbase/IndividualBytesFieldCell.java
b/hbase-common/src/main/java/org/apache/hadoop/hbase/IndividualBytesFieldCell.java
index 77d35db3ffb..8601232b09d 100644
---
a/hbase-common/src/main/java/org/apache/hadoop/hbase/IndividualBytesFieldCell.java
+++
b/hbase-common/src/main/java/org/apache/hadoop/hbase/IndividualBytesFieldCell.java
@@ -293,6 +293,6 @@ public class IndividualBytesFieldCell implements
ExtendedCell, Cloneable {
@Override
public String toString() {
- return CellUtil.toString(this, true);
+ return CellUtil.toString(this, false);
}
}
diff --git
a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileReaderImpl.java
b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileReaderImpl.java
index 852306bd251..63d1cee2b13 100644
---
a/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileReaderImpl.java
+++
b/hbase-server/src/main/java/org/apache/hadoop/hbase/io/hfile/HFileReaderImpl.java
@@ -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