Closed radiophysicist closed 5 years ago
It's known issue of non-array indexes. Reindexer stores indexed fields as typed structure, and fields of this structure are not nullable (they uses memory euqal their size without any overhead).
There are work around: use "is_array" index option.
This option has helped me, thanks. Unfortunately it is not clear from README that it could be used in such a manner
Fixed in 2.0.2 release: readme updated, validation of null condition for non array indexes added.
Hello! I'm using reindexer via SQL-like interface. I noticed that in the case the field have any type of index queries containing checks for NULL values (i.e. field IS NULL / field IS NOT NULL) are working incorrectly. If I remove the index checks become working as expected. Is this intended behavior?