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
commit b1ead9bc387e532d561200aa86ddacdb2cca495b 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 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); }
