private void doUpdate() {
Row[] rows = {
row(customerRowType, new Object[]{2, "abc"})
};
UpdateFunction updateFunction = new UpdateFunction() {
@Override
public Row evaluate(Row original, QueryContext context, QueryBindings bindings) {
return row(customerRowType, 2L, "zzz");
}