nastra commented on code in PR #9584:
URL: https://github.com/apache/iceberg/pull/9584#discussion_r1471391266
##########
api/src/main/java/org/apache/iceberg/actions/ExpireSnapshots.java:
##########
@@ -99,6 +99,11 @@ public interface ExpireSnapshots extends
Action<ExpireSnapshots, ExpireSnapshots
/** The action result that contains a summary of the execution. */
interface Result {
+ /** Return the number of deleted snapshots. */
+ default long deletedSnapshotsCount() {
+ return 0;
Review Comment:
```suggestion
return 0L;
```
--
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]