aokolnychyi commented on code in PR #50109: URL: https://github.com/apache/spark/pull/50109#discussion_r2008414173
########## sql/catalyst/src/main/java/org/apache/spark/sql/connector/catalog/CatalogPlugin.java: ########## @@ -74,4 +74,12 @@ public interface CatalogPlugin { default String[] defaultNamespace() { return new String[0]; } + + /** + * + * @return true if catalog supports multi-part namespaces + */ + default boolean supportsMultiPartNamespace() { + return false; Review Comment: Hm, is this a breaking change given that existing catalogs that actually support multi-part namespaces may be unaware of this method? -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org