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

nizhikov 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 afe24bed52b IGNITE-23398 Class SpiQuery is marked as DEPRECATED. 
(#11624)
afe24bed52b is described below

commit afe24bed52ba4071b1b7d846947c325e4e4e518b
Author: Vladislav Novikov <[email protected]>
AuthorDate: Tue Oct 29 15:21:51 2024 +0300

    IGNITE-23398 Class SpiQuery is marked as DEPRECATED. (#11624)
---
 .../core/src/main/java/org/apache/ignite/cache/query/SpiQuery.java  | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git 
a/modules/core/src/main/java/org/apache/ignite/cache/query/SpiQuery.java 
b/modules/core/src/main/java/org/apache/ignite/cache/query/SpiQuery.java
index adf8118be62..cc56ddbcbe1 100644
--- a/modules/core/src/main/java/org/apache/ignite/cache/query/SpiQuery.java
+++ b/modules/core/src/main/java/org/apache/ignite/cache/query/SpiQuery.java
@@ -27,7 +27,13 @@ import org.apache.ignite.spi.indexing.IndexingSpi;
  * Query to be used by {@link IndexingSpi} implementations.
  *
  * @see IgniteCache#query(Query)
+ * @see ScanQuery
+ * @see SqlFieldsQuery
+ * @see IndexQuery
+ *
+ * @deprecated Use {@link ScanQuery}, {@link SqlFieldsQuery}, {@link 
IndexQuery} instead.
  */
+@Deprecated
 public final class SpiQuery<K, V> extends Query<Cache.Entry<K, V>> {
     /** */
     private static final long serialVersionUID = 0L;

Reply via email to