polyzos commented on PR #11248:
URL: https://github.com/apache/gravitino/pull/11248#issuecomment-4562654607
@xxubai This great work, thank you for driving this.. I left a few comments,
but I also think we need to introduce a
`FlussCatalogCapability` class.. WDYT?
```
public class FlussCatalogCapability implements Capability {}
```
and then write it to the `FlussCatalog`.
```
static final FlussCatalogCapability CATALOG_CAPABILITY = new
FlussCatalogCapability();
// add override after tablePropertiesMetadata() (after line 69)
@Override
public Capability capability() {
return CATALOG_CAPABILITY;
}
```
and maybe add some tests for this.
--
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]