HBASE-26742 Comparator of NOT_EQUAL NULL is invalid for checkAndMutate (#4105)
Signed-off-by: Duo Zhang <zhangduo@apache.org>
This commit is contained in:
parent
407c6e7b22
commit
1b47575214
|
@ -4937,11 +4937,11 @@ public class HRegion implements HeapSize, PropagatingConfigurationObserver, Regi
|
||||||
boolean valueIsNull =
|
boolean valueIsNull =
|
||||||
comparator.getValue() == null || comparator.getValue().length == 0;
|
comparator.getValue() == null || comparator.getValue().length == 0;
|
||||||
if (result.isEmpty() && valueIsNull) {
|
if (result.isEmpty() && valueIsNull) {
|
||||||
matches = true;
|
matches = op != CompareOperator.NOT_EQUAL;
|
||||||
} else if (result.size() > 0 && result.get(0).getValueLength() == 0 && valueIsNull) {
|
} else if (result.size() > 0 && valueIsNull) {
|
||||||
matches = true;
|
matches = (result.get(0).getValueLength() == 0) == (op != CompareOperator.NOT_EQUAL);
|
||||||
cellTs = result.get(0).getTimestamp();
|
cellTs = result.get(0).getTimestamp();
|
||||||
} else if (result.size() == 1 && !valueIsNull) {
|
} else if (result.size() == 1) {
|
||||||
Cell kv = result.get(0);
|
Cell kv = result.get(0);
|
||||||
cellTs = kv.getTimestamp();
|
cellTs = kv.getTimestamp();
|
||||||
int compareResult = PrivateCellUtil.compareValue(kv, comparator);
|
int compareResult = PrivateCellUtil.compareValue(kv, comparator);
|
||||||
|
|
|
@ -24,7 +24,6 @@ import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.assertNull;
|
import static org.junit.Assert.assertNull;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
import static org.junit.Assert.fail;
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
@ -1216,4 +1215,54 @@ public class TestCheckAndMutate {
|
||||||
assertEquals("h", Bytes.toString(result.getValue(FAMILY, Bytes.toBytes("H"))));
|
assertEquals("h", Bytes.toString(result.getValue(FAMILY, Bytes.toBytes("H"))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testCheckAndMutateForNull() throws Exception {
|
||||||
|
byte[] qualifier = Bytes.toBytes("Q");
|
||||||
|
try (Table table = createTable()) {
|
||||||
|
byte [] row1 = Bytes.toBytes("testRow1");
|
||||||
|
Put put = new Put(row1);
|
||||||
|
put.addColumn(FAMILY, qualifier, Bytes.toBytes("v0"));
|
||||||
|
table.put(put);
|
||||||
|
assertEquals("v0", Bytes.toString(
|
||||||
|
table.get(new Get(row1).addColumn(FAMILY, qualifier)).getValue(FAMILY, qualifier)));
|
||||||
|
|
||||||
|
CheckAndMutate checkAndMutate1 = CheckAndMutate.newBuilder(row1)
|
||||||
|
.ifMatches(FAMILY, qualifier, CompareOperator.NOT_EQUAL, new byte[] {})
|
||||||
|
.build(new Put(row1).addColumn(FAMILY, qualifier, Bytes.toBytes("v1")));
|
||||||
|
table.checkAndMutate(checkAndMutate1);
|
||||||
|
assertEquals("v1", Bytes.toString(
|
||||||
|
table.get(new Get(row1).addColumn(FAMILY, qualifier)).getValue(FAMILY, qualifier)));
|
||||||
|
|
||||||
|
byte [] row2 = Bytes.toBytes("testRow2");
|
||||||
|
put = new Put(row2);
|
||||||
|
put.addColumn(FAMILY, qualifier, new byte[] {});
|
||||||
|
table.put(put);
|
||||||
|
assertEquals(0,
|
||||||
|
table.get(new Get(row2).addColumn(FAMILY, qualifier)).getValue(FAMILY, qualifier).length);
|
||||||
|
|
||||||
|
CheckAndMutate checkAndMutate2 = CheckAndMutate.newBuilder(row2)
|
||||||
|
.ifMatches(FAMILY, qualifier, CompareOperator.EQUAL, new byte[] {})
|
||||||
|
.build(new Put(row2).addColumn(FAMILY, qualifier, Bytes.toBytes("v2")));
|
||||||
|
table.checkAndMutate(checkAndMutate2);
|
||||||
|
assertEquals("v2", Bytes.toString(
|
||||||
|
table.get(new Get(row2).addColumn(FAMILY, qualifier)).getValue(FAMILY, qualifier)));
|
||||||
|
|
||||||
|
byte [] row3 = Bytes.toBytes("testRow3");
|
||||||
|
put = new Put(row3).addColumn(FAMILY, qualifier, Bytes.toBytes("v0"));
|
||||||
|
assertNull(table.get(new Get(row3).addColumn(FAMILY, qualifier)).getValue(FAMILY, qualifier));
|
||||||
|
CheckAndMutate checkAndMutate3 = CheckAndMutate.newBuilder(row3)
|
||||||
|
.ifMatches(FAMILY, qualifier, CompareOperator.NOT_EQUAL, new byte[] {})
|
||||||
|
.build(put);
|
||||||
|
table.checkAndMutate(checkAndMutate3);
|
||||||
|
assertNull(table.get(new Get(row3).addColumn(FAMILY, qualifier)).getValue(FAMILY, qualifier));
|
||||||
|
|
||||||
|
CheckAndMutate checkAndMutate4 = CheckAndMutate.newBuilder(row3)
|
||||||
|
.ifMatches(FAMILY, qualifier, CompareOperator.EQUAL, new byte[] {})
|
||||||
|
.build(put);
|
||||||
|
table.checkAndMutate(checkAndMutate4);
|
||||||
|
assertEquals("v0", Bytes.toString(
|
||||||
|
table.get(new Get(row3).addColumn(FAMILY, qualifier)).getValue(FAMILY, qualifier)));
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue