Github user tomatophantastico commented on a diff in the pull request: https://github.com/apache/metamodel/pull/153#discussion_r130074087 --- Diff: core/src/main/java/org/apache/metamodel/DeleteAndInsertBuilder.java --- @@ -103,7 +103,10 @@ private Row update(final Row original) { final DataContext dc = _updateCallback.getDataContext(); final Table table = getTable(); final List<FilterItem> whereItems = getWhereItems(); - final DataSet dataSet = dc.query().from(table).select(table.getColumns()).where(whereItems).execute(); + final DataSet dataSet = dc.query() + .from(table) + .select(table.getColumns().toArray(new Column[table.getColumns().size()])) --- End diff -- right, at first i did not want to change the query interface, but latter added during the refactor, because it was really missing. Updated it
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---