loopback-connector-postgresql icon indicating copy to clipboard operation
loopback-connector-postgresql copied to clipboard

neq in where filter does not include null values

Open hvlawren opened this issue 6 years ago • 13 comments

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.

hvlawren avatar Aug 16 '18 18:08 hvlawren

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.

bra1n avatar Aug 27 '18 13:08 bra1n

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.

mightytyphoon avatar Apr 07 '19 01:04 mightytyphoon

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

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

bajtos avatar Jun 18 '19 12:06 bajtos

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[bot] avatar Aug 17 '19 12:08 stale[bot]

not stale

bra1n avatar Aug 17 '19 13:08 bra1n

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.

bajtos avatar Sep 02 '19 14:09 bajtos

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[bot] avatar Nov 01 '19 14:11 stale[bot]

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!

zardilior avatar Feb 05 '20 21:02 zardilior

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?

bajtos avatar Mar 06 '20 14:03 bajtos

Hello @everyone, any news on this issue ?

malek0512 avatar Mar 22 '21 08:03 malek0512

same problem with me !!

natuan62 avatar Mar 27 '21 18:03 natuan62

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

JakobClausen avatar Sep 10 '22 12:09 JakobClausen