While configuring databricks, we've set the "default_catalog_name", which sets the default schema when users connect via an ODBC connection. While the naming isn't consistent, this does have one desired effect, that is, when users connect, it defaults to showing the gold schema. However, for some tools, it also limits users to that schema. I also cannot find the equivalent option in the UI in databricks. Does anyone know where this option is located? I'd like to find more documentation on this setting if possible since it is having undesired side effects
https://registry.terraform.io/providers/databricks/databricks/latest/docs/resources/metastore_assign...
resource "databricks_metastore_assignment" "this" {
metastore_id = databricks_metastore.myco_metastore.id
workspace_id = local.workspace_id
default_catalog_name = "gold"
}