iyupeng commented on a change in pull request #17344: URL: https://github.com/apache/flink/pull/17344#discussion_r735219348
########## File path: flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/factories/TestValuesTableFactory.java ########## @@ -867,27 +885,118 @@ public String asSummaryString() { allPartitions.isEmpty() ? Collections.singletonList(Collections.emptyMap()) : allPartitions; + int numRetained = 0; for (Map<String, String> partition : keys) { - for (Row row : data.get(partition)) { + Collection<Row> rowsInPartition = data.get(partition); + + // handle predicates and projection + List<Row> rowsRetained = + rowsInPartition.stream() + .filter( + row -> + FilterUtils.isRetainedAfterApplyingFilterPredicates( + filterPredicates, getValueGetter(row))) + .map( + row -> { + Row projectedRow = projectRow(row); + projectedRow.setKind(row.getKind()); + return projectedRow; + }) + .collect(Collectors.toList()); + + // handle aggregates + if (!aggregateExpressions.isEmpty()) { + rowsRetained = applyAggregatesToRows(rowsRetained); + } + + // handle row data + for (Row row : rowsRetained) { + final RowData rowData = (RowData) converter.toInternal(row); + if (rowData != null) { + if (numRetained >= numElementToSkip) { Review comment: skipping original elements now -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org