-
Type:
Bug
-
Status: Closed
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 8.6
-
Component/s: modules/expressions
-
Labels:None
-
Lucene Fields:New
ExpressionValuesSource does not actually rewrite itself due to small mistake in check of inner rewrites.
changed |= (rewritten[i] == variables[i]);
should be changed to
changed |= (rewritten[i] != variables[i]);
- links to