Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,8 @@ workflows:
- bigquery
- clickhouse-cloud
- athena
- fabric
# todo: enable fabric when cicd catalog create/drop implemented in manage-test-db.sh
#- fabric
filters:
branches:
only:
Expand Down
4 changes: 3 additions & 1 deletion sqlmesh/core/config/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -1735,7 +1735,9 @@ def create_fabric_connection(
def _extra_engine_config(self) -> t.Dict[str, t.Any]:
return {
"database": self.database,
"catalog_support": CatalogSupport.FULL_SUPPORT,
# more operations than not require a specific catalog to be already active
# in particular, create/drop view, create/drop schema and querying information_schema
"catalog_support": CatalogSupport.REQUIRES_SET_CATALOG,
"workspace_id": self.workspace_id,
"tenant_id": self.tenant_id,
"user": self.user,
Expand Down
Loading