xtern commented on code in PR #1501:
URL: https://github.com/apache/ignite-3/pull/1501#discussion_r1092294859
##########
modules/table/src/main/java/org/apache/ignite/internal/table/InternalTable.java:
##########
@@ -296,6 +297,31 @@ Publisher<BinaryRow> scan(
@Nullable BitSet columnsToInclude
);
+ /**
+ * Scans given partition index, providing {@link Publisher} that
reactively notifies about partition rows.
+ *
+ * @param partId The partition.
+ * @param txId Transaction id.
+ * @param leaderNode Raft group leader node that must handle given get
request.
+ * @param leaderTerm Raft group leader term.
+ * @param lowerBound Lower search bound.
+ * @param upperBound Upper search bound.
+ * @param flags Control flags. See {@link
org.apache.ignite.internal.storage.index.SortedIndexStorage} constants.
+ * @param columnsToInclude Row projection.
+ * @return {@link Publisher} that reactively notifies about partition rows.
+ */
+ Publisher<BinaryRow> scan(
+ int partId,
+ UUID txId,
+ ClusterNode leaderNode,
+ long leaderTerm,
Review Comment:
Done, thanks
--
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]