This is an automated email from the ASF dual-hosted git repository.
liuxiaocs7 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 b9422ff607e HBASE-30128 Fix WALCellCodec off-heap KV tags compression
test mismatch
b9422ff607e is described below
commit b9422ff607e7039191b1596812bd5d39ab920318
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
Signed-off-by: Duo Zhang <[email protected]>
(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 e54284bae0d..1dd8d2ab140 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);
}