Fokko opened a new pull request, #8411:
URL: https://github.com/apache/iceberg/pull/8411

   Does not seem to be used. This is already in `manifest.py`:
   
   ```python
   class ManifestContent(int, Enum):
       DATA = 0
       DELETES = 1
   
       def __repr__(self) -> str:
           """Returns the string representation of the ManifestContent class."""
           return f"ManifestContent.{self.name}"
   
   class ManifestEntryStatus(int, Enum):
       EXISTING = 0
       ADDED = 1
       DELETED = 2
   
       def __repr__(self) -> str:
           """Returns the string representation of the ManifestEntryStatus 
class."""
           return f"ManifestEntryStatus.{self.name}"
   
   class FileFormat(str, Enum):
       AVRO = "AVRO"
       PARQUET = "PARQUET"
       ORC = "ORC"
   
       def __repr__(self) -> str:
           """Returns the string representation of the FileFormat class."""
           return f"FileFormat.{self.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]

Reply via email to