-
Notifications
You must be signed in to change notification settings - Fork 59
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 redshift_connector_2.0.914
- Loading branch information
Showing
13 changed files
with
124 additions
and
9 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: "Dependencies" | ||
body: "Update ddtrace requirement from ~=1.18 to ~=1.19" | ||
time: 2023-09-18T19:08:33.00000Z | ||
custom: | ||
Author: dependabot[bot] | ||
PR: 610 |
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-21T15:37:07.970722-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: Fixes | ||
body: Use the PID to terminate the session | ||
time: 2023-08-07T17:44:09.15097-06:00 | ||
custom: | ||
Author: dbeatty10 | ||
Issue: "553" |
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: Fixes | ||
body: avoid nested loop in query planner execution of redshift__get_relations | ||
time: 2023-09-23T09:11:55.2152725-04:00 | ||
custom: | ||
Author: slin30 | ||
Issue: "609" |
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: Add tests for inlined limit + sql_header in dbt show query | ||
time: 2023-09-25T15:01:32.025325+01:00 | ||
custom: | ||
Author: michelleark | ||
Issue: "616" |
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,30 @@ | ||
# **what?** | ||
# Cleanup branches left over from automation and testing. Also cleanup | ||
# draft releases from release testing. | ||
|
||
# **why?** | ||
# The automations are leaving behind branches and releases that clutter | ||
# the repository. Sometimes we need them to debug processes so we don't | ||
# want them immediately deleted. Running on Saturday to avoid running | ||
# at the same time as an actual release to prevent breaking a release | ||
# mid-release. | ||
|
||
# **when?** | ||
# Mainly on a schedule of 12:00 Saturday. | ||
# Manual trigger can also run on demand | ||
|
||
name: Repository Cleanup | ||
|
||
on: | ||
schedule: | ||
- cron: '0 12 * * SAT' # At 12:00 on Saturday - details in `why` above | ||
|
||
workflow_dispatch: # for manual triggering | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
cleanup-repo: | ||
uses: dbt-labs/actions/.github/workflows/repository-cleanup.yml@main | ||
secrets: inherit |
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
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,9 @@ | ||
from dbt.tests.adapter.dbt_show.test_dbt_show import BaseShowSqlHeader, BaseShowLimit | ||
|
||
|
||
class TestRedshiftShowLimit(BaseShowLimit): | ||
pass | ||
|
||
|
||
class TestRedshiftShowSqlHeader(BaseShowSqlHeader): | ||
pass |
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 RedshiftTestStoreTestFailures(TestStoreTestFailures): | ||
class TestRedshiftTestStoreTestFailures(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 |
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