This is an automated email from the ASF dual-hosted git repository.

vldpyatkov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 3eaca519e0c IGNITE-28880 IndexQueryInlineSizesTest.testFixedInlineKeys 
is flaky (#13356)
3eaca519e0c is described below

commit 3eaca519e0cffd4b9ffa5b333161384eb3400f50
Author: Vladislav Pyatkov <[email protected]>
AuthorDate: Fri Jul 10 20:01:56 2026 +0300

    IGNITE-28880 IndexQueryInlineSizesTest.testFixedInlineKeys is flaky (#13356)
    
    https://issues.apache.org/jira/browse/IGNITE-28880
---
 .../java/org/apache/ignite/cache/query/IndexQueryInlineSizesTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/modules/indexing/src/test/java/org/apache/ignite/cache/query/IndexQueryInlineSizesTest.java
 
b/modules/indexing/src/test/java/org/apache/ignite/cache/query/IndexQueryInlineSizesTest.java
index 31f4d01b27a..87fd7697a60 100644
--- 
a/modules/indexing/src/test/java/org/apache/ignite/cache/query/IndexQueryInlineSizesTest.java
+++ 
b/modules/indexing/src/test/java/org/apache/ignite/cache/query/IndexQueryInlineSizesTest.java
@@ -185,7 +185,7 @@ public class IndexQueryInlineSizesTest extends 
GridCommonAbstractTest {
         Random r = new Random();
 
         int low = r.nextInt(CNT / 2);
-        int high = low + r.nextInt(CNT / 2);
+        int high = low + r.nextInt(CNT / 2 - 1) + 1;
 
         IndexQuery<Integer, BinaryObject> qry = qryBld.apply(low, high);
 

Reply via email to