Skip to content

Commit

Permalink
Fix: log message in impl.py completely breaks docs generation for
Browse files Browse the repository at this point in the history
integration tests.

This is a mirror of:

https: //github.com/dbt-labs/dbt-spark/pull/698
Signed-off-by: Jesse Whitehouse <jesse.whitehouse@databricks.com>
  • Loading branch information
susodapop committed May 1, 2023
1 parent 93b45d5 commit 9b2de74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/databricks/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def _get_one_catalog(
quote_policy=self.config.quoting,
)
for relation, information in self._list_relations_with_information(schema_relation):
logger.debug("Getting table schema for relation {}", relation)
logger.debug("Getting table schema for relation {}", str(relation))
columns.extend(self._get_columns_for_catalog(relation, information))
return Table.from_object(columns, column_types=DEFAULT_TYPE_TESTER)

Expand Down

0 comments on commit 9b2de74

Please sign in to comment.