-
Notifications
You must be signed in to change notification settings - Fork 265
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
Fail when null is in a list of values in a query by attribute values #4120
Comments
Looking in StringFilter.h:
So it seems our internal data structures are not though for mixing different types (string and null in this case) but let me think if I can come with some creative solution for this :) |
We will use a new bool flag named |
PR #4123 |
It seems when |
Fixed by PR #4127 |
It works |
Bug description
A clear and concise description of what the bug is. Please do not forget to add:
Having entities where for some of them have a specific attr, e.g. municipality with value
null
, a query by a list of values of this attributes gets an error.How to reproduce it
Steps to reproduce the behavior (as an example)
Create an entity this way:
When make the following query:
null
value the answer is correctResponse:
200 OK
Expected behavior
To be able to retrieve both set of entities, the ones with the
municipality=alcobendas
and the others withmunicipality=null
Additional information
NA
The text was updated successfully, but these errors were encountered: