mchades commented on code in PR #11203: URL: https://github.com/apache/gravitino/pull/11203#discussion_r3288437662
########## docs/open-api/schemas.yaml: ########## @@ -151,6 +153,21 @@ paths: components: + parameters: + parentSchema: + name: parentSchema + in: query + description: > + The parent schema whose direct child schemas are listed. Only meaningful for catalogs that + support hierarchical (multi-level) schemas, such as an Iceberg catalog accessed through the + Gravitino REST server with a configured schema separator (`gravitino.schema.separator`, + default `:`). For example, when the schemas `a`, `a:b` and `a:b:c` exist, listing with + `parentSchema=a:b` returns `[a:b:c]`. When omitted, all schemas under the catalog are + returned. Review Comment: When the variable is omitted, does it return all the schema or only the top-level schema? It appears that Iceberg only returns the root namespace. -- 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]
