-
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.
Stop adding aliases to render_limited output (#782)
* Stop adding aliases to render_limited output * add changie
- Loading branch information
1 parent
32410a6
commit 6031b23
Showing
3 changed files
with
12 additions
and
1 deletion.
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: Fixes | ||
body: Stop adding aliases to subqueries when calling with `--empty` | ||
time: 2024-04-23T13:15:03.118968-07:00 | ||
custom: | ||
Author: colin-rogers-dbt | ||
Issue: "782" |
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
from dbt.tests.adapter.empty.test_empty import BaseTestEmpty | ||
from dbt.tests.adapter.empty.test_empty import BaseTestEmpty, BaseTestEmptyInlineSourceRef | ||
|
||
|
||
class TestRedshiftEmpty(BaseTestEmpty): | ||
pass | ||
|
||
|
||
class TestRedshiftEmptyInlineSourceRef(BaseTestEmptyInlineSourceRef): | ||
pass |