yurinaryshkin commented on code in PR #10767:
URL: https://github.com/apache/ignite/pull/10767#discussion_r1221975526
##########
modules/core/src/main/java/org/apache/ignite/cache/query/IndexQuery.java:
##########
@@ -94,11 +97,34 @@ public IndexQuery(Class<?> valCls, @Nullable String
idxName) {
* @param idxName Index name.
*/
public IndexQuery(String valType, @Nullable String idxName) {
+ this(valType, idxName, 0);
+ }
+
+ /**
+ * Specify index with cache value class, index name and limit.
+ *
+ * @param valCls Cache value class.
+ * @param idxName Index name.
+ * @param limit Limits response records count. If 0 or less, considered to
be no limit.
+ */
+ public IndexQuery(Class<?> valCls, @Nullable String idxName, int limit) {
Review Comment:
removed the constructors
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]