pudidic opened a new issue, #7510:
URL: https://github.com/apache/iceberg/issues/7510

   ### Feature Request / Improvement
   
   I'm designing a service that transforms absolute paths in metadata layers. 
It needs to replace TableMetadata.MetadataLogEntry objects with new absolute 
paths. I tried to expand TableMetadata.MetadataLogEntry. However, 
TableMetadata.MetadataLogEntry has only package-private constructor. A 
protected TableMetadata.MetadataLogEntry(long, String) constructor is required 
for the inheritance.
   
   Current:
   ```
     public static class MetadataLogEntry {
       private final long timestampMillis;
       private final String file;
   
       MetadataLogEntry(long timestampMillis, String file) {
         this.timestampMillis = timestampMillis;
         this.file = file;
       }
   ```
   
   Expected:
   ```
     public static class MetadataLogEntry {
       private final long timestampMillis;
       private final String file;
   
       protected MetadataLogEntry(long timestampMillis, String file) {
         this.timestampMillis = timestampMillis;
         this.file = file;
       }
   ```
   
   
   ### Query engine
   
   None


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

Reply via email to