Details
-
Bug
-
Status: Closed
-
Resolution: Fixed
-
7.0.0 DXP FP33, 7.0.0 DXP FP34, 7.0.0 DXP FP35, 7.0.0 DXP FP36, 7.0.X, Master
-
3
Description
We have custom indexers that store all sorts of fields on our custom tables – including "name", "status", foreign keys for custom tables, etc.
Using these keys, we've implemented an advanced search where users select specific values for specific fields, with code like the following:
long someForeignKey = GetterUtil.getLong(searchContext.getAttribute("myForeignKeyName")); if (someForeignKey > 0) { contextQuery.addRequiredTerm("myForeignKeyName", someForeignKey); }
Since FP33, none of these custom filters seem to work right any more – the only filters I can get to make any changes to the search results are "name" and "status".