rpuch commented on code in PR #7770:
URL: https://github.com/apache/ignite-3/pull/7770#discussion_r2929289956


##########
modules/partition-replicator/src/main/java/org/apache/ignite/internal/partition/replicator/raft/ZonePartitionRaftListener.java:
##########
@@ -539,4 +566,14 @@ private CommandResult handleSafeTimeSyncCommand(long 
commandIndex, long commandT
     public HybridTimestamp currentSafeTime() {
         return safeTimeTracker.current();
     }
+
+    private static class CrossTableCommandResult {
+        private final boolean hadAnyTableProcessor;
+        private final CommandResult result;
+
+        private CrossTableCommandResult(boolean hadAnyTableProcessor, 
CommandResult result) {
+            this.hadAnyTableProcessor = hadAnyTableProcessor;
+            this.result = result;
+        }

Review Comment:
   We support compilation against Java 11, records are not available



-- 
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]

Reply via email to