Skip to content

Commit

Permalink
Stop adding aliases to render_limited output (#1190)
Browse files Browse the repository at this point in the history
* use dynamic schema in test_grant_access_to.py

* use dynamic schema in test_grant_access_to.py

* revert setup

* Stop adding aliases to render_limited output

* add changie
  • Loading branch information
colin-rogers-dbt authored Apr 24, 2024
1 parent a81dee0 commit 49d6c1e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changes/unreleased/Fixes-20240423-131752.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Fixes
body: Stop adding aliases to render_limited output
time: 2024-04-23T13:17:52.059553-07:00
custom:
Author: colin-rogers-dbt
Issue: "1190"
1 change: 1 addition & 0 deletions dbt/adapters/bigquery/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
class BigQueryRelation(BaseRelation):
quote_character: str = "`"
location: Optional[str] = None
require_alias: bool = False

renameable_relations: FrozenSet[RelationType] = field(
default_factory=lambda: frozenset(
Expand Down
6 changes: 5 additions & 1 deletion tests/functional/adapter/empty/test_empty.py
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 TestBigQueryEmpty(BaseTestEmpty):
pass


class TestBigQueryEmptyInlineSourceRef(BaseTestEmptyInlineSourceRef):
pass

0 comments on commit 49d6c1e

Please sign in to comment.