aokolnychyi commented on pull request #2255:
URL: https://github.com/apache/iceberg/pull/2255#issuecomment-790085690


   Here is an example of what I mean:
   
   ```
   public interface ActionsProvider<I> {
   
     default SnapshotTable<I> snapshotTable(I sourceTableIdent) {
       ...
     }
   
     default MigrateTable<I> migrateTable(I tableIdent) {
       ...
     }
   
     default RewriteManifests rewriteManifests(I tableIdent) {
       ...
     }
   
     default RewriteManifests rewriteManifests(Table table) {
       ...
     }
   
     ...
   }
   
   class SparkActions implements 
ActionsProvider<org.apache.spark.sql.connector.Identifier> {
   }
   ```


----------------------------------------------------------------
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]

Reply via email to