-
Notifications
You must be signed in to change notification settings - Fork 128
feat: add Microsoft Fabric DWH integration (ELE-5282) #962
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
2c08c87
feat: add Microsoft Fabric DWH integration (ELE-5282)
devin-ai-integration[bot] 4699b73
fix: add env_var function to profile generator for fabric password
devin-ai-integration[bot] a0a7285
fix: use sqlserver adapter for local CI testing, rename fabric__ macr…
devin-ai-integration[bot] 319dee6
fix: T-SQL compatibility for Elementary models (boolean literals, std…
devin-ai-integration[bot] ba6bece
fix: T-SQL GROUP BY positional refs, undefined macro, variance, maxre…
devin-ai-integration[bot] bea97a1
feat: refactor T-SQL macros to use fabric__ as primary implementation
devin-ai-integration[bot] d489172
refactor: remove sqlserver__ wrappers, use fabric__ as sole T-SQL dis…
devin-ai-integration[bot] 4a13b4e
ci: temporarily disable non-fabric targets to focus testing
devin-ai-integration[bot] a350671
fix: T-SQL compatibility fixes for all anomaly detection tests
devin-ai-integration[bot] 0505cde
ci: re-enable all CI targets (local + cloud) alongside new fabric target
devin-ai-integration[bot] dd0dedf
fix: reduce fabric max identifier length to 60 to prevent 128-char ov…
devin-ai-integration[bot] 00715f1
fix: CTE-in-subquery workaround, data type normalization, and test LI…
devin-ai-integration[bot] ddd219c
fix: dispatch render_value for Fabric boolean literal compatibility i…
devin-ai-integration[bot] f3e8a33
refactor: extract Fabric-specific logic to dispatched macros and use …
devin-ai-integration[bot] 1a8635c
fix: dispatch GROUP BY in get_columns_changes_query_generic for T-SQL…
devin-ai-integration[bot] e17d7eb
fix: use dbt.concat() for cross-DB string concatenation in schema cha…
devin-ai-integration[bot] 70dbd4b
fix: resolve Fabric Warehouse compatibility issues found in local tes…
haritamar 72c3f8e
ci: add Fabric Warehouse to CI test matrix
haritamar 9864781
ci: add 60-minute job timeout to prevent hung CI runs
devin-ai-integration[bot] fbd07fb
feat: add sqlserver__target_database() dispatch macro
devin-ai-integration[bot] 3d1aa76
feat: add comprehensive sqlserver__ dispatch macros delegating to fab…
devin-ai-integration[bot] 312ccbc
fix: use do return() for sqlserver dispatches returning objects/value…
devin-ai-integration[bot] 3bba723
fix: use return() instead of {{ }} for sqlserver__ dispatch macros re…
devin-ai-integration[bot] b04d35a
Merge branch 'devin/ELE-5282-1772640713' of https://git-manager.devin…
devin-ai-integration[bot] 241cb0b
revert: remove redundant sqlserver__ dispatch wrappers
devin-ai-integration[bot] b083d2b
refactor: hardcode SQL Server password directly, remove MSSQL_SA_PASS…
devin-ai-integration[bot] 0c30c35
refactor: address PR review comments - unify cross-adapter patterns
devin-ai-integration[bot] ed337d7
refactor: address PR review round 2 - is_tsql macro, merge render_val…
devin-ai-integration[bot] 1487485
fix: normalize TEXT to VARCHAR in sqlserver__get_normalized_data_type
devin-ai-integration[bot] a50077a
fix: restore positional GROUP BY for non-T-SQL adapters in schema cha…
devin-ai-integration[bot] 9e7778e
refactor: address PR review comments (samples query + T-SQL temp table)
devin-ai-integration[bot] 342f00f
fix: compute anomaly_score after window aggregates
devin-ai-integration[bot] 8821965
fix: inline T-SQL temp table logic into fabric__ macro, remove undefi…
devin-ai-integration[bot] ad1f9ac
refactor: add edr_condition_as_boolean, edr_is_true/edr_is_false, ren…
devin-ai-integration[bot] dd9bbca
refactor: simplify column_boolean_monitors with set variable, extract…
devin-ai-integration[bot] 12e20a1
refactor: move set variables to top of model_run_results.sql for read…
devin-ai-integration[bot] acb01a0
fix: use target.schema for temp view in fabric query_test_result_rows…
devin-ai-integration[bot] fd27dac
refactor: remove fabric__get_unified_metrics_query, use UNION ALL app…
devin-ai-integration[bot] a2978b5
fix: use elementary package schema for temp view in fabric query_test…
devin-ai-integration[bot] File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| version: "3.8" | ||
| services: | ||
| sqlserver: | ||
| image: mcr.microsoft.com/mssql/server:2022-latest | ||
| container_name: sqlserver | ||
| ports: | ||
| - "127.0.0.1:1433:1433" | ||
| environment: | ||
| ACCEPT_EULA: "Y" | ||
| MSSQL_SA_PASSWORD: "Elementary123!" | ||
| MSSQL_PID: "Developer" | ||
| healthcheck: | ||
| test: /opt/mssql-tools18/bin/sqlcmd -S localhost -U sa -P "Elementary123!" -C -Q "SELECT 1" -b | ||
| interval: 10s | ||
| timeout: 5s | ||
| retries: 10 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.