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 2506789f58a IGNITE-26267 Mark SqlFieldsQuery#setLazy/isLazy with
@Deprecated (#12338)
2506789f58a is described below
commit 2506789f58a705ca9315dd4702b7d6982e67b8bf
Author: Ashesha <[email protected]>
AuthorDate: Mon Sep 15 02:45:33 2025 +0700
IGNITE-26267 Mark SqlFieldsQuery#setLazy/isLazy with @Deprecated (#12338)
---
.../src/main/java/org/apache/ignite/cache/query/SqlFieldsQuery.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/modules/core/src/main/java/org/apache/ignite/cache/query/SqlFieldsQuery.java
b/modules/core/src/main/java/org/apache/ignite/cache/query/SqlFieldsQuery.java
index 9096ff4c40d..d921fb8ca04 100644
---
a/modules/core/src/main/java/org/apache/ignite/cache/query/SqlFieldsQuery.java
+++
b/modules/core/src/main/java/org/apache/ignite/cache/query/SqlFieldsQuery.java
@@ -339,6 +339,7 @@ public class SqlFieldsQuery extends Query<List<?>> {
* @return {@code this} For chaining.
* @deprecated Use {@link #setPageSize(int)} instead.
*/
+ @Deprecated
public SqlFieldsQuery setLazy(boolean lazy) {
this.lazy = lazy;
@@ -353,6 +354,7 @@ public class SqlFieldsQuery extends Query<List<?>> {
* @return Lazy flag.
* @deprecated Use {@link #getPageSize()} instead.
*/
+ @Deprecated
public boolean isLazy() {
return lazy;
}