-
Notifications
You must be signed in to change notification settings - Fork 179
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into paw/metadata-freshness
- Loading branch information
Showing
4 changed files
with
38 additions
and
2 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: Support storing test failures as views | ||
time: 2023-09-19T17:10:47.516098-04:00 | ||
custom: | ||
Author: mikealfare | ||
Issue: "6914" |
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: Under the Hood | ||
body: Remove manual refresh of dynamic table when created; Snowflake does this now | ||
time: 2023-10-10T18:29:04.451038-04:00 | ||
custom: | ||
Author: mikealfare | ||
Issue: "798" |
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 |
---|---|---|
|
@@ -7,6 +7,5 @@ | |
{{ sql }} | ||
) | ||
; | ||
{{ snowflake__refresh_dynamic_table(relation) }} | ||
|
||
{%- endmacro %} |
27 changes: 26 additions & 1 deletion
27
tests/functional/adapter/store_test_failures_tests/test_store_test_failures.py
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 |
---|---|---|
@@ -1,7 +1,32 @@ | ||
from dbt.tests.adapter.store_test_failures_tests import basic | ||
from dbt.tests.adapter.store_test_failures_tests.test_store_test_failures import ( | ||
TestStoreTestFailures, | ||
) | ||
|
||
|
||
class SnowflakeTestStoreTestFailures(TestStoreTestFailures): | ||
class TestSnowflakeStoreTestFailures(TestStoreTestFailures): | ||
pass | ||
|
||
|
||
class TestStoreTestFailuresAsInteractions(basic.StoreTestFailuresAsInteractions): | ||
pass | ||
|
||
|
||
class TestStoreTestFailuresAsProjectLevelOff(basic.StoreTestFailuresAsProjectLevelOff): | ||
pass | ||
|
||
|
||
class TestStoreTestFailuresAsProjectLevelView(basic.StoreTestFailuresAsProjectLevelView): | ||
pass | ||
|
||
|
||
class TestStoreTestFailuresAsGeneric(basic.StoreTestFailuresAsGeneric): | ||
pass | ||
|
||
|
||
class TestStoreTestFailuresAsProjectLevelEphemeral(basic.StoreTestFailuresAsProjectLevelEphemeral): | ||
pass | ||
|
||
|
||
class TestStoreTestFailuresAsExceptions(basic.StoreTestFailuresAsExceptions): | ||
pass |