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

neq in where filter does not include null values #340

Open
hvlawren opened this issue Aug 16, 2018 · 13 comments
Open

neq in where filter does not include null values #340

hvlawren opened this issue Aug 16, 2018 · 13 comments

Comments

@hvlawren
Copy link

Description/Steps to reproduce

  1. Create a model with String properties
  2. Insert instances with one of the string properties unset. (NULL in DB)
  3. Run a query for model {where: {stringProp: {neq: "value"}}}
  4. NULL entries are not included

Expected result

Null entries are not equal to value so should be included

Additional information

I notice that the output sql from the connector is !=, whereas IS DISTINCT FROM would work for NULL values. As far as I can tell, there is no operator that will invoke IS DISTINCT FROM. If this won't be fixed/is considered not an issue, having this at least documented somewhere would be useful.

@bra1n
Copy link

bra1n commented Aug 27, 2018

Adding to this, NULL values seem to be generally handled poorly in this module. Something else that should work, but does not:
{where: {booleanProp: {inq: [null, false]}} will not return "unset" (= null) rows, but only false rows.
Or, even simpler: {where: {booleanProp: {neq: true}} should turn into WHERE booleanprop IS NOT true but actually turns into WHERE booleanprop != true, which again excludes null values.

@mightytyphoon
Copy link

Adding to this, NULL values seem to be generally handled poorly in this module. Something else that should work, but does not:
{where: {booleanProp: {inq: [null, false]}} will not return "unset" (= null) rows, but only false rows.
Or, even simpler: {where: {booleanProp: {neq: true}} should turn into WHERE booleanprop IS NOT true but actually turns into WHERE booleanprop != true, which again excludes null values.

oh thanks I thought I was becoming crazy. Also ilike, like etc... doesn't work properly. Same if you give a or / and arrays.

I think a big part of this module needs to be corrected.

@gopalakrishnan-subramani

Any solution for the same issue, we need this feature critically to maintain soft delete with deleted_at timestamp column, can you please confirm is this issue from pg node.js driver or loopback Postgresql driver, we can offer some help with PR instead of making work around for our larger solution.

When the attribute is present in the JavaScript object with null, it is evident that the driver should send query with null

@bajtos
Copy link
Member

bajtos commented Jun 18, 2019

Here is the relevant code:

I suspect the problem is in PostgreSQL.prototype._buildWhere, it seems to handle only the following operators:

  • and
  • or
  • inq
  • nin
  • between
  • regexp

@stale
Copy link

stale bot commented Aug 17, 2019

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Aug 17, 2019
@bra1n
Copy link

bra1n commented Aug 17, 2019

not stale

@stale stale bot removed the stale label Aug 17, 2019
@bajtos
Copy link
Member

bajtos commented Sep 2, 2019

Thank you all for participating in the discussion. I am afraid our bandwidth is limited and this issue is unlikely to make it to our milestone backlog. We rely on you, the community of users, to contribute the changes necessary to fix the issues described above.

I am proposing the following approach:

  • Introduce a new feature flag at connector/datasource level to enable the new behavior where we won't use != but use IS DISTINCT FROM or IS NOT instead.
  • Add new tests to verify the use cases described above, using the new feature flag to
  • Modify the connector implementation to use the new behavior when the feature flag is enabled, and thus pass all newly added tests.

This way we can preserve backwards compatibility for existing users and get more time to fix any edge cases that may be discovered when the new implementation is put into real-world use. Once we are confident about the new implementation, we can make the feature flag enabled by default and release a new semver-major version.

@stale
Copy link

stale bot commented Nov 1, 2019

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

@stale stale bot added the stale label Nov 1, 2019
@bajtos bajtos removed the stale label Nov 5, 2019
@zardilior
Copy link

Yes this is still relevant and happening, I think that either a note should be added to the docs about a workaround or some attention should be given to it!

@bajtos
Copy link
Member

bajtos commented Mar 6, 2020

I think that either a note should be added to the docs about a workaround or some attention should be given to it!

@zardilior could you please contribute that attention yourself and open a pull request with the necessary changes?

@malek0512
Copy link

Hello @everyone, any news on this issue ?

@natuan62
Copy link

same problem with me !!

@JakobClausen
Copy link

Is this still an issue? Can get this to work still with postgres.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

9 participants