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

Fix tuple equality with null values #327

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Commits on Oct 23, 2024

  1. Fix tuple equality with null values

    Previously, if tuples had the same fields, and at least one field had a null value on one tuple and a non-null value on the other, then:
    * if the null/non-null field came after a field with different values, it returned false (which is correct)
    * if the null/non-null field came before a field with different values, it returned null (which is incorrect)
    
    Now it will return the correct answer regardless of where the null/non-null field is.
    cmoesel committed Oct 23, 2024
    Configuration menu
    Copy the full SHA
    513c539 View commit details
    Browse the repository at this point in the history