-
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.
Stop adding aliases to render_limited output (#980)
* add test * add changie * add changie * fix unit test import * remove branch pointer from dev-requirements.txt
- Loading branch information
1 parent
3dfff6b
commit 0153bd0
Showing
3 changed files
with
12 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: Fixes | ||
body: Fix duplicate alias being added when running a model with inline refs and `--empty` | ||
time: 2024-04-18T16:02:40.488967-07:00 | ||
custom: | ||
Author: colin-rogers-dbt | ||
Issue: "980" |
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 TestSnowflakeEmpty(BaseTestEmpty): | ||
pass | ||
|
||
|
||
class TestSnowflakeEmptyInlineSourceRef(BaseTestEmptyInlineSourceRef): | ||
pass |