-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update ymls #51
update ymls #51
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good but i have a suggestion for the order identifier part!
models/src_shopify.yml
Outdated
identifier: > | ||
{% if target.type == 'snowflake' %}{{ var('shopify_order_identifier', '"ORDER"') }} | ||
{% else %}{{ var('shopify_order_identifier', 'order') }}{% endif %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is quoting necessary for the other warehouses though?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
like should it be
identifier: > | |
{% if target.type == 'snowflake' %}{{ var('shopify_order_identifier', '"ORDER"') }} | |
{% else %}{{ var('shopify_order_identifier', 'order') }}{% endif %} | |
identifier: "{%- if target.type == 'snowflake' -%} {{ var('shopify_order_identifier', 'ORDER' ) }} {%- else -%} {{ var('shopify_order_identifier', 'order') }} {%- endif -%}" | |
quoting: | |
identifier: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Made a small change since the identifier was not working with snowflake when quoting was turned on. It's passing now!
good to merge once databricks passes! |
Are you a current Fivetran customer?
What change(s) does this PR introduce?
Did you update the CHANGELOG?
Does this PR introduce a breaking change?
Did you update the dbt_project.yml files with the version upgrade (please leverage standard semantic versioning)? (In both your main project and integration_tests)
Is this PR in response to a previously created Bug or Feature Request
How did you test the PR changes?
Select which warehouse(s) were used to test the PR
Provide an emoji that best describes your current mood
💃
Feedback
We are so excited you decided to contribute to the Fivetran community dbt package! We continue to work to improve the packages and would greatly appreciate your feedback on our existing dbt packages or what you'd like to see next.