If one wants to compare two column headers if they're equal, the expression fails with throwing an "empty expression" exception.
Analysis:
In fact, the issue results from a legacy copy-paste error. The algorithm starts searching for cache expressions at position 0 and increments this position every now and then. However, it's possible, that a cache is found at a higher position than the current one, so the position is shifted to there, jumping over all other occurences of other caches.
The fix should simply reset the position for every cache. This requires to exchange the for and while loops in the algorithm.
Implementation:
The fix was implemented as proposed by the analysis. Implementation tests were passed successfully.
Documentation:
Not needed - Bug fix.
Tests:
The fix was added to the automatic tests. No deviations detected. Bug fix implemented successfully.
Anonymous
Diff:
Diff:
Diff:
Diff: