timgrein opened a new pull request, #13382:
URL: https://github.com/apache/lucene/pull/13382
### Description
While debugging a test case I've noticed that the output on a test failure
for `BaseRangeFieldQueryTestCase` can be slightly improved to understand better
what's going on:
Before:
```
FAIL (iter 0): id=0 should not match but did
queryRange=Box(...)
box=Box(...)
queryType=WITHIN
deleted?=false
```
After:
```
FAIL (iter 0): id=0 should not match but did
queryRange=Box(...)
box=Box(...)
queryType=INTERSECTS
docDeleted?=false
rangeMissing?=false
```
I've changed `deleted` to `docDeleted` so it's more explicit what's deleted
and also added the info, if a range for a certain document is missing.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]