Github user LosD commented on a diff in the pull request: https://github.com/apache/metamodel/pull/153#discussion_r130092580 --- Diff: core/src/main/java/org/apache/metamodel/data/AbstractRowBuilder.java --- @@ -68,7 +71,7 @@ public AbstractRowBuilder(Column[] columns) { @Override public final Row toRow() { - return new DefaultRow(new SimpleDataSetHeader(_columns), _values); + return new DefaultRow(new SimpleDataSetHeader(Arrays.stream(_columns).map(SelectItem::new).collect(Collectors.toList())), _values); --- End diff -- Makes a lot of sense. We can always improve later
--- 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. ---