This is an automated email from the ASF dual-hosted git repository.
alex-plekhanov 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 675c89d12da IGNITE-28713 Fix flaky
LongRunningQueryTest.testQueryInitiatorId (#13170)
675c89d12da is described below
commit 675c89d12dacfbb2250eec5a5563c1320c4775e3
Author: Aleksey Plekhanov <[email protected]>
AuthorDate: Fri May 29 10:12:38 2026 +0300
IGNITE-28713 Fix flaky LongRunningQueryTest.testQueryInitiatorId (#13170)
---
.../ignite/internal/processors/query/LongRunningQueryTest.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git
a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/LongRunningQueryTest.java
b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/LongRunningQueryTest.java
index d6e7cab4284..01a833c9cc8 100644
---
a/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/LongRunningQueryTest.java
+++
b/modules/indexing/src/test/java/org/apache/ignite/internal/processors/query/LongRunningQueryTest.java
@@ -493,16 +493,16 @@ public class LongRunningQueryTest extends
AbstractIndexingCommonTest {
public void testQueryInitiatorId() {
ListeningTestLogger testLog = testLog();
- checkInitiatorId(testLog, "LOCAL", "SELECT sleep_func(?, 0)",
LONG_QUERY_WARNING_TIMEOUT);
+ checkInitiatorId(testLog, "LOCAL", "SELECT sleep_func(?, 0)",
LONG_QUERY_WARNING_TIMEOUT + 1);
checkInitiatorId(testLog, "MAP", "SELECT val FROM test WHERE id =
sleep_func(?, 0)",
- LONG_QUERY_WARNING_TIMEOUT);
+ LONG_QUERY_WARNING_TIMEOUT + 1);
checkInitiatorId(testLog, "REDUCE", "SELECT sleep_func(?, sum(val))
FROM test WHERE id + 1 = 1",
- LONG_QUERY_WARNING_TIMEOUT);
+ LONG_QUERY_WARNING_TIMEOUT + 1);
checkInitiatorId(testLog, "DML", "UPDATE test SET val = sleep_func(?,
val) WHERE id = 0",
- LONG_QUERY_WARNING_TIMEOUT);
+ LONG_QUERY_WARNING_TIMEOUT + 1);
}
/** Verifies map query information in long-query logs. */