Skip to content
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

Null-safe equality for unique_key within delete+insert and merge incremental strategies #110

Open
wants to merge 8 commits into
base: main
Choose a base branch
from

Conversation

amardatar
Copy link

@amardatar amardatar commented Feb 27, 2024

Null-safe equality for unique_key within delete+insert and merge incremental strategies with an appropriate null comparison.

resolves #159

Problem

The current implementation of the incremental merge does not use null-safe equality, meaning if any of the columns are null, duplicate values will be inserted every time the model is run. This is unlikely to be desired behaviour for anyone.

Solution

The SQL for the delete condition is updated to handle a check for null values.

Checklist

  • I have read the contributing guide and understand what's expected of me
  • I have run this code in development and it appears to resolve the stated issue
  • This PR includes tests, or tests are not required/relevant for this PR
  • This PR has no interface changes (e.g. macros, cli, logs, json artifacts, config files, adapter interface, etc) or this PR has already received feedback and approval from Product or DX

Copy link

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 contributing guide.

@nikita-sheremet-flocktory

@dbeatty10

I appologies that reach you directly but is there news for this PR? If there is additional help or actions required? Could you please tell me wether help is needed and if I can I willl try to help. This PR fixed the issue that is really annoying :(

Thanks in advance!

@nikita-sheremet-flocktory

@amardatar

First of all many thanks for such usefull PR! You provided changes for default__get_delete_insert_merge_sql that implements delete+insert strategy. But there is also additional function default__get_merge_sql that responsible for merge strategy and it has it's own {% if unique_key %}.

Could you please add or is null condition for it also?

Thanks in advance!

@amardatar amardatar requested a review from a team as a code owner May 14, 2024 17:31
@dbeatty10 dbeatty10 changed the title Updating incremental merge WHERE condition to handle nullable fields Null-safe equality for unique_key within delete+insert incremental strategy May 15, 2024
@dbeatty10 dbeatty10 changed the title Null-safe equality for unique_key within delete+insert incremental strategy Null-safe equality for unique_key within delete+insert and merge incremental strategies May 15, 2024
@peterallenwebb
Copy link
Contributor

peterallenwebb commented May 30, 2024

@colin-rogers-dbt, I Reviewed this and thought about it with @dbeatty10 a bit. We think it looks good.

@dbeatty10
Copy link
Contributor

@peterallenwebb and I took a closer look at this today, and we think there's a couple more test cases to add:

  1. Check null comparison when the unique_key has a single column (also with multiple rows with null values)
  2. Check null comparison when the unique_key has a multiple columns (also with multiple rows with null values)

I will take responsibility for trying out these cases and adding these tests.

@dbeatty10
Copy link
Contributor

Important

After decoupling dbt-adapters from dbt-core, only the unit tests run in CI; none of the functional tests run in CI in this repo.

So we'll need to run the changes in this PR along within the functional tests in dbt-postgres (and possibly also dbt-snowflake, dbt-bigquery, and dbt-redshift) in order to know that the changes work as intended.

@colin-rogers-dbt colin-rogers-dbt added community This PR is from a community member incremental Incremental modeling with dbt labels Aug 9, 2024
@rightx2
Copy link

rightx2 commented Aug 19, 2024

Can't wait this feature!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla:yes community This PR is from a community member incremental Incremental modeling with dbt ready_for_review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[CT-2563] [Bug] Incremental updates using unique_key result in duplicates if fields in the unique_key are null
6 participants