You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
DataFusion Substrait producer/consumer currently does not support JOINs that treat a NULL key as the same value as another NULL key. This is needed in cases such as INTERSECT, which uses LeftSemi Join to compute the key intersection. In this case, a NULL key from the left should be treated as equal to a NULL key from the right.
Describe the solution you'd like
Support for null-equals-null joins
Describe alternatives you've considered
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem or challenge? Please describe what you are trying to do.
DataFusion Substrait producer/consumer currently does not support JOINs that treat a
NULL
key as the same value as anotherNULL
key. This is needed in cases such asINTERSECT
, which usesLeftSemi Join
to compute the key intersection. In this case, aNULL
key from the left should be treated as equal to aNULL
key from the right.Describe the solution you'd like
Support for
null-equals-null
joinsDescribe alternatives you've considered
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: