tengqm commented on code in PR #6495: URL: https://github.com/apache/gravitino/pull/6495#discussion_r1968645788
########## 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: The merit is that you don't need to instantiate the subclasses, you will save a lot of complicated `if...else if...else if...` calls when invoking this method. The subclasses provide the materials (columns), the superclass does the main logic. -- 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