This is an automated email from the ASF dual-hosted git repository.
liuxiaocs7 pushed a commit to branch branch-3
in repository https://gitbox.apache.org/repos/asf/hbase.git
The following commit(s) were added to refs/heads/branch-3 by this push:
new 1069eccfbfa HBASE-30128 Fix WALCellCodec off-heap KV tags compression
test mismatch
1069eccfbfa is described below
commit 1069eccfbfaa6e44e480f1e1fcc57a608c478baf
Author: Xiao Liu <[email protected]>
AuthorDate: Tue May 5 13:29:00 2026 +0800
HBASE-30128 Fix WALCellCodec off-heap KV tags compression test mismatch
(cherry picked from commit 7fd14181b6cbc957f6aa409f304e551d2d3990de)
---
.../hbase/regionserver/wal/TestWALCellCodecWithCompression.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/TestWALCellCodecWithCompression.java
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/TestWALCellCodecWithCompression.java
index 32a2b06610b..4ecbfe32990 100644
---
a/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/TestWALCellCodecWithCompression.java
+++
b/hbase-server/src/test/java/org/apache/hadoop/hbase/regionserver/wal/TestWALCellCodecWithCompression.java
@@ -80,11 +80,11 @@ public class TestWALCellCodecWithCompression {
@Test
public void testEncodeDecodeOffKVsWithTagsWithTagsCompression() throws
Exception {
- doTest(true, false);
+ doTest(true, true);
}
@Test
- public void testValueCompressionEnabled() throws Exception {
+ public void testEncodeDecodeOffKVsWithTags() throws Exception {
doTest(false, true);
}