aokolnychyi commented on code in PR #6919:
URL: https://github.com/apache/iceberg/pull/6919#discussion_r1151433130
##########
api/src/main/java/org/apache/iceberg/Scan.java:
##########
@@ -171,4 +172,10 @@ default ThisT select(String... columns) {
/** Returns the split open file cost for this scan. */
long splitOpenFileCost();
+
+ /** Create a new scan that will report the scan metrics to the {@code
reporter} */
+ default ThisT metricsReporter(MetricsReporter reporter) {
+ throw new UnsupportedOperationException(
+ this.getClass().getName() + " doesn't implement metricReporter");
Review Comment:
Looks like this comment was missed. The exception message should include the
correct method name.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]