Skip to content

Commit 8fa148f

Browse files
committed
Revert "Fix relation representation string to display dremio_space as well in the logs"
This reverts commit cf3c30e.
1 parent d651dac commit 8fa148f

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

dbt/adapters/dremio/relation.py

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -126,22 +126,3 @@ def _render_event_time_filtered(self, event_time_filter: EventTimeFilter) -> str
126126
filter = f"{event_time_filter.field_name} < '{end_ts}'"
127127

128128
return filter
129-
130-
def __str__(self) -> str:
131-
"""
132-
Override string representation to show the full Dremio path in logs.
133-
This ensures database.schema.identifier is displayed correctly.
134-
"""
135-
# Build the path components without quotes for logging
136-
parts = []
137-
138-
if self.database:
139-
parts.append(self.database)
140-
141-
if self.schema and self.schema != self.no_schema:
142-
parts.append(self.schema)
143-
144-
if self.identifier:
145-
parts.append(self.identifier)
146-
147-
return ".".join(parts)

0 commit comments

Comments
 (0)