Skip to content

Commit

Permalink
format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jwills committed Oct 25, 2023
1 parent b48be37 commit 689d35d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dbt/adapters/duckdb/environments/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ def load_source(self, plugin_name: str, source_config: utils.SourceConfig):
df = plugin.load(source_config)
assert df is not None

materialization = source_config.meta.get("materialization", plugin.default_materialization())
materialization = source_config.meta.get(
"materialization", plugin.default_materialization()
)
source_table_name = source_config.table_name()
df_name = source_table_name.replace(".", "_") + "_df"

Expand Down
1 change: 1 addition & 0 deletions dbt/adapters/duckdb/plugins/delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,6 @@ def load(self, source_config: SourceConfig):
def default_materialization(self):
return "view"


# Future
# TODO add databricks catalog

0 comments on commit 689d35d

Please sign in to comment.