assertEquals("should not find other columns", 0, others);
}
@Test(expected = BlurException.class)
public void testMutationUpdateRowMissingRecordAppendColumns() throws Exception {
Column c1 = newColumn("testcol1", "value999");
Column c2 = newColumn("testcol2", "value9999");
Column c3 = newColumn("testcol4", "hmm");
String rec = "record-1B";
RecordMutation rm = newRecordMutation(APPEND_COLUMN_VALUES, FAMILY, rec, c1, c2, c3);
updateAndFetchRecord("row-1", rec, rm);
}