betodealmeida commented on issue #32993: URL: https://github.com/apache/superset/issues/32993#issuecomment-2779146785
@Vitor-Avila one thing different here is that Postgres (and RDS, which is what @arafoperata is using) **does not allow** cross-catalog queries. Unlike BigQuery, this syntax is invalid: ```sql SELECT * FROM other_database.public.table ``` For databases like this we could have an attribute `allow_cross_catalog_queries` set to false, and when that's the case we don't create permissions for non-default catalogs when multi-catalog is disabled. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
