-
Notifications
You must be signed in to change notification settings - Fork 55
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
- Loading branch information
1 parent
023a839
commit 6c0ef24
Showing
3 changed files
with
16 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,7 @@ | ||
kind: Fixes | ||
body: Stop adding aliases to subqueries when calling with `--empty` | ||
time: 2024-05-06T13:06:45.642583+02:00 | ||
custom: | ||
Author: damian3031 | ||
Issue: "" | ||
PR: "408" |
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,12 @@ | ||
from dbt.tests.adapter.empty.test_empty import BaseTestEmpty | ||
from dbt.tests.adapter.empty.test_empty import ( | ||
BaseTestEmpty, | ||
BaseTestEmptyInlineSourceRef, | ||
) | ||
|
||
|
||
class TestTrinoEmpty(BaseTestEmpty): | ||
pass | ||
|
||
|
||
class TestTrinoEmptyInlineSourceRef(BaseTestEmptyInlineSourceRef): | ||
pass |