Skip to content

Commit

Permalink
Prep for 1.7.4 (#568)
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db authored Jan 24, 2024
2 parents 0f3c2e6 + f9bef99 commit e7efe5d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## dbt-databricks 1.7.4 (TBD)
## dbt-databricks 1.7.4 (Jan 24, 2024)

### Fixes

Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/databricks/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: str = "1.7.3"
version: str = "1.7.4"
4 changes: 2 additions & 2 deletions dbt/adapters/databricks/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ def connect() -> DatabricksSQLConnectionWrapper:
http_headers=http_headers if http_headers else None,
session_configuration=creds.session_properties,
catalog=creds.database,
use_inline_params=True,
use_inline_params="silent",
# schema=creds.schema, # TODO: Explicitly set once DBR 7.3LTS is EOL.
_user_agent_entry=user_agent_entry,
**connection_parameters,
Expand Down Expand Up @@ -1433,7 +1433,7 @@ def connect() -> DatabricksSQLConnectionWrapper:
http_headers=http_headers if http_headers else None,
session_configuration=creds.session_properties,
catalog=creds.database,
use_inline_params=True,
use_inline_params="silent",
# schema=creds.schema, # TODO: Explicitly set once DBR 7.3LTS is EOL.
_user_agent_entry=user_agent_entry,
**connection_parameters,
Expand Down

0 comments on commit e7efe5d

Please sign in to comment.