@Test
public void testComplexRecordInColumnValueEqualsRowFilter() throws Exception {
byte[] bytes = new byte[100];
(new Random()).nextBytes(bytes);
ByteBuffer buffer = ByteBuffer.wrap(bytes);
TestComplexRecord record = TestComplexRecord.newBuilder()
.setA("a string value")
.setB(10)
.setD(buffer)
.setE(null)
.setF(true)
.setG("another string")
.build();
runTest(new ColumnValueEqualsRowFilter("family", "qualifier",
new DecodedCell<Object>(record.getSchema(), record)));
}