rdblue commented on a change in pull request #1893:
URL: https://github.com/apache/iceberg/pull/1893#discussion_r557537824
##########
File path: flink/src/main/java/org/apache/iceberg/flink/IcebergTableSource.java
##########
@@ -112,6 +120,10 @@ public String explainSource() {
explain += String.format(", LimitPushDown : %d", limit);
}
+ if (isFilterPushedDown()) {
+ explain += String.format(", FilterPushDown,the filters :%s",
Joiner.on(",").join(filters));
Review comment:
Nit: typos in this message. There should be a space after
`FilterPushDown,` and the space after `filters` should be after the `:`, not
before it. The Joiner should be on `", "` to separate the filters, and it
should be a private static final constant.
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]