-
Notifications
You must be signed in to change notification settings - Fork 177
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
Add logic to enable iceberg incremental tables. #1190
Conversation
Thank you for your pull request! We could not find a changelog entry for this change. For details on how to document a change, see the dbt-snowflake contributing guide. |
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.
Does this achieve iceberg support for incremental models? It would be nice if it's this straight forward.
I also noticed that tests have not been added/updated. I would have expected to see some tests with table_format='iceberg'
in this change.
6978136
to
0e6c1c6
Compare
I verified that the new configuration of the replacement type tests is replacing an iceberg table with an incremental iceberg table and vice versa, even after we changed the test case logic. |
@@ -58,12 +58,21 @@ | |||
|
|||
{% materialization incremental, adapter='snowflake', supported_languages=['sql', 'python'] -%} | |||
|
|||
{% set original_query_tag = set_query_tag() %} |
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.
Hi @VersusFacit, I noticed that the query tags for incremental models are not applied anymore.
Why did you remove this line?
resolves: #321
Problem
Add incremental models
Solution
Leverage existing code abstractions.
Checklist