yurinaryshkin commented on code in PR #11319:
URL: https://github.com/apache/ignite/pull/11319#discussion_r1571844870
##########
modules/core/src/main/java/org/apache/ignite/internal/processors/cache/persistence/tree/BPlusTree.java:
##########
@@ -2169,6 +2169,20 @@ public List<L> remove(L lower, L upper, int limit)
throws IgniteCheckedException
return Collections.unmodifiableList(rmvOp.removedRows);
}
+ /**
+ * @param lower Lower bound (inclusive).
+ * @param upper Upper bound (inclusive).
+ * @param x Implementation specific argument.
+ * @param limit Limit of processed entries by single call, {@code 0} for
no limit.
+ * @return {@code True} if removed at least one row.
+ * @throws IgniteCheckedException If failed.
+ */
+ protected boolean removex(L lower, L upper, Object x, int limit) throws
IgniteCheckedException {
Review Comment:
Minor: is this method going to be used from several places? Should it be
inlined?
--
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]