codec.verifiers.add(new ListMatchingVerifier("put state 1", allKvs, familyRef));
// do the actual put (no indexing will actually be done)
HTable primary = state.table;
primary.put(p);
primary.flushCommits();
// now we do another put to the same row. We should see just the old row state, followed by the
// new + old
p = new Put(row, ts + 1);
p.add(family, qual, Bytes.toBytes("v2"));