assertEquals(1, legacyRow.get(cA));
assertEquals(1, legacyRow.get(cB));
assertEquals(1, legacyRow.get(cC));
// Convert to LegacyRow and check NiceRow created from the legacy row's RowData
RowDef rowDef = getRowDef(t);
niceRow = (NiceRow) NiceRow.fromRowData(legacyRow.toRowData(), rowDef);
assertEquals(1, niceRow.get(cA));
assertEquals(1, niceRow.get(cB));
assertEquals(1, niceRow.get(cC));
// Convert back to NiceRow and check state again
legacyRow.put(cA, 2);