}
};
Operator groupScan = groupScan_Default(coi);
UpdatePlannable updateOperator = update_Default(groupScan, updateFunction);
UpdateResult result = updateOperator.run(queryContext, queryBindings);
assertEquals("rows modified", 2, result.rowsModified());
assertEquals("rows touched", db.length, result.rowsTouched());
Cursor executable = cursor(groupScan, queryContext, queryBindings);
Row[] expected = new Row[]{row(customerRowType, 1L, "XYZXYZ"),
row(orderRowType, 11L, 1L, "ori"),
row(itemRowType, 111L, 11L),