Skip to content

Commit

Permalink
removed alias
Browse files Browse the repository at this point in the history
  • Loading branch information
DevonFulcher committed Sep 19, 2023
1 parent 584ef92 commit 3835584
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ def grain(self, time_granularity: str) -> QueryInterfaceDimension:
)
return self

def alias(self, _alias: str) -> QueryInterfaceDimension:
"""Renaming the column."""
raise NotImplementedError


class WhereFilterDimensionFactory(ProtocolHint[QueryInterfaceDimensionFactory]):
"""Creates a WhereFilterDimension.
Expand Down
5 changes: 0 additions & 5 deletions dbt_semantic_interfaces/protocols/query_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ def grain(self, _grain: str) -> QueryInterfaceDimension:
"""The time granularity."""
pass

@abstractmethod
def alias(self, _alias: str) -> QueryInterfaceDimension:
"""Renaming the column."""
pass


class QueryInterfaceDimensionFactory(Protocol):
"""Creates a Dimension for the query interface.
Expand Down

0 comments on commit 3835584

Please sign in to comment.