row(customerRowType, new Object[]{0, "zzz"}),
row(customerRowType, new Object[]{3, "jkl"}),
row(customerRowType, new Object[]{5, "ooo"})
};
UpdatePlannable insertPlan = insert_Default(rowsToValueScan(rows));
UpdateResult result = insertPlan.run(queryContext, queryBindings);
assertEquals("rows touched", rows.length, result.rowsTouched());
assertEquals("rows modified", rows.length, result.rowsModified());
}
}