-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply new integration tests to existing framework to identify support…
…ed features (#691) * Implement integration test framework from core for dynamic tables * Fix `target_lag` input parameter * Identify working features and non-working features, skipped non-working feature tests
- Loading branch information
1 parent
641745f
commit b698480
Showing
9 changed files
with
551 additions
and
272 deletions.
There are no files selected for viewing
This file contains 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,6 @@ | ||
kind: Features | ||
body: Enumerate supported features for dynamic tables in 1.6.0rc1 | ||
time: 2023-07-14T22:40:33.694348-04:00 | ||
custom: | ||
Author: mikealfare | ||
Issue: dbt-labs/dbt-core#6911 |
This file contains 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 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 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,32 @@ | ||
MY_SEED = """ | ||
id,value | ||
1,100 | ||
2,200 | ||
3,300 | ||
""".strip() | ||
|
||
|
||
MY_TABLE = """ | ||
{{ config( | ||
materialized='table', | ||
) }} | ||
select * from {{ ref('my_seed') }} | ||
""" | ||
|
||
|
||
MY_VIEW = """ | ||
{{ config( | ||
materialized='view', | ||
) }} | ||
select * from {{ ref('my_seed') }} | ||
""" | ||
|
||
|
||
MY_DYNAMIC_TABLE = """ | ||
{{ config( | ||
materialized='dynamic_table', | ||
warehouse='DBT_TESTING', | ||
target_lag='60 seconds', | ||
) }} | ||
select * from {{ ref('my_seed') }} | ||
""" |
This file was deleted.
Oops, something went wrong.
213 changes: 0 additions & 213 deletions
213
tests/functional/adapter/dynamic_table_tests/test_dynamic_table.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.