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 issue with empty array for IN-clause #14

Merged

Commits on Apr 29, 2020

  1. Fix issue with empty array for IN-clause

    When an IN-clause is created with an empty array PostgreSQL will blow up
    with an SQL-Error as the resulting SQL would be ` x IN()` which is not
    allowed.
    
    This commit works around that by returning a query-part that always
    returns
    false as querying for something that is not part of something else will
    always return false.
    heiglandreas committed Apr 29, 2020
    Configuration menu
    Copy the full SHA
    8344693 View commit details
    Browse the repository at this point in the history