In our Databricks workspace, we have several delta tables available in the hive_metastore catalog. we are able to access and query the data via Data Science & Engineering persona clusters with no issues.
The cluster have the credential passthrough enabled. Therefore, the delta table source files reside on Azure Storage Account blob.
However, under the same workspace, when I try to access the same delta tables under the SQL persona via SQL Warehouse cluster using the same query, we get the following error:
Error message from server: org.apache.hive.service.cli.HiveSQLException: Error running query: com.databricks.backend.daemon.data.common.InvalidMountException: Error while using path /mnt/gold/***/delta/tableName/_delta_log/00000000000000000000.checkpoint for resolving path '/***/delta/tableName/_delta_log/00000000000000000000.checkpoint' within mount at '/mnt/gold'.
Is the issue related to the credential passthrough that is enabled in the cluster? If so, how can we set Azure Storage account credentials onto the SQL Warehouse cluster?
Thanks