Github user LosD commented on a diff in the pull request:
https://github.com/apache/metamodel/pull/165#discussion_r148126842
--- Diff:
core/src/main/java/org/apache/metamodel/QueryPostprocessDataContext.java ---
@@ -128,7 +134,7 @@ public DataSet executeQuery(final Query query) {
logger.debug(
"DataContext did not return any
count query results. Proceeding with manual counting.");
} else {
- List<Row> data = new ArrayList<Row>(1);
+ final List<Row> data = new
ArrayList<Row>(1);
--- End diff --
Unrelated change.
---