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 5d3c5e48bcb2817a68f76b394d41e9b61a1c37c8 Author: liuxiaocs7 <[email protected]> AuthorDate: Thu May 7 00:44:33 2026 +0800 Revert "HBASE-30128 Fix WALCellCodec off-heap KV tags compression test mismatch" This reverts commit 1069eccfbfaa6e44e480f1e1fcc57a608c478baf because the commit message is incorrect. --- .../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 4ecbfe32990..32a2b06610b 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, true); + doTest(true, false); } @Test - public void testEncodeDecodeOffKVsWithTags() throws Exception { + public void testValueCompressionEnabled() throws Exception { doTest(false, true); }
