Object[] o1Cols = { 10, 1 };
Object[] cCols = { 2, "c2" };
Object[] oCols = { 20, 2 };
Object[] iCols = { 200, 20, "i200" };
TestRow o1Row = new TestRow(oType, o1Cols);
TestRow cRow = new TestRow(cType, cCols);
TestRow oRow = new TestRow(oType, oCols);
TestRow iRow = new TestRow(iType, iCols);
// Unrelated o row, to demonstrate i ordering/adoption
writeRow(tids.o, o1Cols);
compareRows( new Row[] { o1Row }, adapter.newGroupCursor(cType.table().getGroup()) );