This is an automated email from the ASF dual-hosted git repository.
timoninmaxim 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 a47cd028f2e IGNITE-26266: Mark IndexQuery#getCriteria with @Nullable
(#12329)
a47cd028f2e is described below
commit a47cd028f2ea970cfa96a170e594af53ee5ab742
Author: Korotkov Mikhail <[email protected]>
AuthorDate: Sun Sep 21 22:11:25 2025 +0300
IGNITE-26266: Mark IndexQuery#getCriteria with @Nullable (#12329)
---
.../core/src/main/java/org/apache/ignite/cache/query/IndexQuery.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/modules/core/src/main/java/org/apache/ignite/cache/query/IndexQuery.java
b/modules/core/src/main/java/org/apache/ignite/cache/query/IndexQuery.java
index 69874941c80..7d4829f7cd7 100644
--- a/modules/core/src/main/java/org/apache/ignite/cache/query/IndexQuery.java
+++ b/modules/core/src/main/java/org/apache/ignite/cache/query/IndexQuery.java
@@ -138,7 +138,7 @@ public final class IndexQuery<K, V> extends
Query<Cache.Entry<K, V>> {
*
* @return List of criteria for this index query.
*/
- public List<IndexQueryCriterion> getCriteria() {
+ @Nullable public List<IndexQueryCriterion> getCriteria() {
return criteria;
}