Abyss-lord commented on code in PR #6495: URL: https://github.com/apache/gravitino/pull/6495#discussion_r1967766920
########## clients/cli/src/main/java/org/apache/gravitino/cli/outputs/TableFormat.java: ########## @@ -540,4 +550,97 @@ public String getOutput(Catalog[] catalogs) { return getTableFormat(columnName); } } + + /** + * Formats a single {@link Schema} instance into a two-column table display. Displays catalog + * details including name and comment information. + */ + static final class SchemaTableFormat extends TableFormat<Schema> { + public SchemaTableFormat(CommandContext context) { + super(context); + } + + /** {@inheritDoc} */ + @Override + public String getOutput(Schema schema) { Review Comment: In this case, the template pattern is used, `BaseOutputFormat#output` is responsible for output, it fix the logic of output method, and the `getOutput` method is implemented by subclasses. -- 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: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org