sanpwc commented on code in PR #2689:
URL: https://github.com/apache/ignite-3/pull/2689#discussion_r1360924545
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/replicator/PartitionReplicaListener.java:
##########
@@ -2213,14 +2331,19 @@ private CompletableFuture<ReplicaResult>
processSingleEntryAction(ReadWriteSingl
return completedFuture(new
ReplicaResult(false, request.full() ? null : completedFuture(null)));
}
- return
validateAtTimestampAndBuildUpdateCommand(
- request,
- validatedRowId.uuid(),
- null,
- lastCommitTime,
- txCoordinatorId
- )
- .thenCompose(this::applyUpdateCommand)
+ return
validateOperationAgainstSchemaAtTimestamp(request.transactionId())
+ .thenCompose(
+ catalogVersion ->
applyUpdateCommand(
+
request.commitPartitionId().asTablePartitionId(),
Review Comment:
Fixed.
--
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]