waukin commented on code in PR #5975: URL: https://github.com/apache/gravitino/pull/5975#discussion_r1923723692
########## clients/cli/src/main/java/org/apache/gravitino/cli/outputs/PlainFormat.java: ########## @@ -80,4 +83,11 @@ public void output(Catalog[] catalogs) { System.out.println(all); } } + + static final class SchemaPlainFormat implements OutputFormat<Schema> { + @Override + public void output(Schema schema) { + System.out.println(schema.name() + "," + schema.comment()); + } Review Comment: Hi @justinmclean, sorry it's been a while. I add the null check to `SchemaPlainFormat` and `SchemaTableFormat`. Please take a look. -- 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