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

[#1366] - Sink null control (upsert OracleDialect) #1403

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

JorgeRojasDev
Copy link

@JorgeRojasDev JorgeRojasDev commented Mar 9, 2024

Problem

In different insertion, upsert, and deletion queries, there is a need to reimplement the WHERE clause in Sink connectors to ensure that when a null value in a key is received, if the record exists in the database, it is correctly detected. For example: UPDATE

SET EXAMPLE=1 WHERE KEY_1=2 AND KEY_2 = NULL. In this case, the clause KEY_2 = NULL does not return results, however, KEY_2 IS NULL does return them correctly.

Solution

A new optional version is implemented (initially with the upsert mode of OracleDatabaseDialect) to address this issue. In this case, in the ON clause of:
MERGE INTO

using (SELECT...) incoming ON (KEY_1=incoming."KEY_1" AND KEY_2=incoming."KEY_2")

Since the type cannot be inferred, it is converted with the boolean parameter enable.null.key.protection into the following query:
MERGE INTO

using (SELECT...) incoming ON ((KEY_1=incoming."KEY_1" OR (KEY_1 IS NULL AND incoming."KEY_1" IS NULL)) AND (KEY_2=incoming."KEY_2" OR (KEY_2 IS NULL AND incoming."KEY_2" IS NULL)))

This way, we protect the use case where the key is null. I have implemented it through an additional parameter to avoid sacrificing performance if it's not really necessary.

Is it interesting to continue this process for all upsert, update, and delete operations?

Does this solution apply anywhere else?
  • yes
  • no

Test Strategy

Testing done:
  • Unit tests
  • Integration tests
  • System tests
  • Manual tests

@JorgeRojasDev JorgeRojasDev requested a review from a team as a code owner March 9, 2024 15:34
Copy link

cla-assistant bot commented Mar 9, 2024

CLA assistant check
All committers have signed the CLA.

@JorgeRojasDev JorgeRojasDev changed the title Jorgerojasdev/sink null control #1366 - Sink null control (upsert OracleDialect) Mar 9, 2024
@JorgeRojasDev JorgeRojasDev changed the title #1366 - Sink null control (upsert OracleDialect) [#1366] - Sink null control (upsert OracleDialect) Mar 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant