ascherbakoff commented on code in PR #4700: URL: https://github.com/apache/ignite-3/pull/4700#discussion_r1848459914
########## modules/table/src/main/java/org/apache/ignite/internal/table/distributed/storage/InternalTableImpl.java: ########## @@ -633,7 +634,19 @@ private <R> CompletableFuture<R> trackingInvoke( || request instanceof SwapRowReplicaRequest; if (full) { // Full transaction retries are handled in postEnlist. - return replicaSvc.invoke(primaryReplicaAndConsistencyToken.get1(), request); + return replicaSvc.invokeRaw(primaryReplicaAndConsistencyToken.get1(), request).handle((r, e) -> { + boolean hasError = e != null; + assert hasError || r instanceof TimestampAware; + + // timestamp is set to commit timestamp for full transactions. Review Comment: 🆗 -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org