Re: [PR] Fix IndexSortSortedNumericDocValuesRangeQuery for int sort [lucene]

2025-05-30 Thread via GitHub
mayya-sharipova merged PR #14732: URL: https://github.com/apache/lucene/pull/14732 -- 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: issues-unsubscr...@lu

Re: [PR] Fix IndexSortSortedNumericDocValuesRangeQuery for int sort [lucene]

2025-05-29 Thread via GitHub
mayya-sharipova commented on code in PR #14732: URL: https://github.com/apache/lucene/pull/14732#discussion_r2114666927 ## lucene/core/src/test/org/apache/lucene/search/TestIndexSortSortedNumericDocValuesRangeQuery.java: ## @@ -94,6 +95,59 @@ public void testSameHitsAsPointRange

Re: [PR] Fix IndexSortSortedNumericDocValuesRangeQuery for int sort [lucene]

2025-05-29 Thread via GitHub
github-actions[bot] commented on PR #14732: URL: https://github.com/apache/lucene/pull/14732#issuecomment-2920437317 This PR does not have an entry in lucene/CHANGES.txt. Consider adding one. If the PR doesn't need a changelog entry, then add the skip-changelog-check label to it and you wil

[PR] Fix IndexSortSortedNumericDocValuesRangeQuery for int sort [lucene]

2025-05-29 Thread via GitHub
mayya-sharipova opened a new pull request, #14732: URL: https://github.com/apache/lucene/pull/14732 This query assumed that missing value is always of type long. This modifies it to allow type int as well. The test is added that fails without this change. -- This is an automated mess