tkalkirill commented on code in PR #1175:
URL: https://github.com/apache/ignite-3/pull/1175#discussion_r990091151
##########
modules/page-memory/src/main/java/org/apache/ignite/internal/pagememory/tree/io/BplusIo.java:
##########
@@ -346,14 +357,15 @@ public abstract void copyItems(
L row,
@Nullable byte[] rowBytes,
long rightId,
- boolean needRowBytes
+ boolean needRowBytes,
+ int partId
) throws IgniteInternalCheckedException {
assertPageType(pageAddr);
int cnt = getCount(pageAddr);
// Move right all the greater elements to make a free slot for a new
row link.
- copyItems(pageAddr, pageAddr, idx, idx + 1, cnt - idx, false);
+ copyItems(pageAddr, pageAddr, idx, idx + 1, cnt - idx, false, partId);
Review Comment:
Fix it
--
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]