Skip to content

Commit

Permalink
Stop adding aliases to render_limited output
Browse files Browse the repository at this point in the history
  • Loading branch information
Dewwi committed Oct 23, 2024
1 parent 31222e5 commit 1ae6df7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions dbt-athena/src/dbt/adapters/athena/relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class AthenaRelation(BaseRelation):
include_policy: Policy = field(default_factory=lambda: AthenaIncludePolicy())
s3_path_table_part: Optional[str] = None
detailed_table_type: Optional[str] = None # table_type option from the table Parameters in Glue Catalog
require_alias: bool = False

def render_hive(self) -> str:
"""
Expand Down
5 changes: 4 additions & 1 deletion dbt-athena/tests/functional/adapter/test_empty.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from dbt.tests.adapter.empty.test_empty import BaseTestEmpty
from dbt.tests.adapter.empty.test_empty import BaseTestEmpty, BaseTestEmptyInlineSourceRef


class TestAthenaEmpty(BaseTestEmpty):
pass

class TestAthenaEmptyInlineSourceRef(BaseTestEmptyInlineSourceRef):
pass

0 comments on commit 1ae6df7

Please sign in to comment.