// A row key with a different hash but the same first component should be
// excluded by the filter. The hash is 0x9f0f
hbaseKey[0] = (byte) 0x7F;
hbaseKey[1] = (byte) 0xFF;
boolean filtered = hbaseFilter.filterRowKey(hbaseKey, 0, hbaseKey.length);
doInclusionAssert(rowKeyFormat, filter, entityId, hbaseFilter, hbaseKey, EXCLUDE);
}
@Test
public void testHashWildcardIsUsedForMissingHashComponents() throws Exception {