Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 479b5a0

Browse files
Merge branch 'main' into bug/updating_of_grant_access_on_full_refresh
2 parents 2b3b43e + 49d6c1e commit 479b5a0

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
kind: Fixes
2+
body: Stop adding aliases to render_limited output
3+
time: 2024-04-23T13:17:52.059553-07:00
4+
custom:
5+
Author: colin-rogers-dbt
6+
Issue: "1190"

dbt/adapters/bigquery/relation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
class BigQueryRelation(BaseRelation):
2424
quote_character: str = "`"
2525
location: Optional[str] = None
26+
require_alias: bool = False
2627

2728
renameable_relations: FrozenSet[RelationType] = field(
2829
default_factory=lambda: frozenset(
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
from dbt.tests.adapter.empty.test_empty import BaseTestEmpty
1+
from dbt.tests.adapter.empty.test_empty import BaseTestEmpty, BaseTestEmptyInlineSourceRef
22

33

44
class TestBigQueryEmpty(BaseTestEmpty):
55
pass
6+
7+
8+
class TestBigQueryEmptyInlineSourceRef(BaseTestEmptyInlineSourceRef):
9+
pass

0 commit comments

Comments
 (0)