Skip to content
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion test/canary-environment/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ models:
canary_environment:
loadgen:
schema: loadgen
post-hook: "GRANT ALL PRIVILEGES ON TABLE {{ this }} TO \"[email protected]\", \"[email protected]\""
post-hook: "{% if config.get('materialized') != 'sink' %}GRANT ALL PRIVILEGES ON TABLE {{ this }} TO \"[email protected]\", \"[email protected]\"{% endif %}"
tpch:
schema: tpch
post-hook: "GRANT ALL PRIVILEGES ON TABLE {{ this }} TO \"[email protected]\", \"[email protected]\""
Copy link
Contributor

Choose a reason for hiding this comment

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

The same probably applies here and in all the other GRANTs

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sorry for missing this comment. Just updated this for all of the post hooks to include this.

Expand Down