Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,8 @@
{% set database = target.project %}
{{ return(database) }}
{% endmacro %}

{% macro databricks__target_database() %}
{% set database = target.schema %}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think host is more closely related to database.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We've implemented it like this on the dbt package.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @elongl for the response.

Does that mean we have to open PR on elementary-data/dbt-data-reliability repository as well to complement changes in elementary-action repo?

{{ return(database) }}
{% endmacro %}