Index: modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java b/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java
--- a/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java	(revision 0bccf30dbf3d4fb4f00e65e8afeacfac323500f7)
+++ b/modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/StopCalciteModuleTest.java	(date 1675852839513)
@@ -147,6 +147,8 @@
         when(clusterSrvc.messagingService()).thenReturn(msgSrvc);
         when(clusterSrvc.topologyService()).thenReturn(topologySrvc);
         when(topologySrvc.localMember()).thenReturn(localNode);
+        when(topologySrvc.allMembers()).thenReturn(List.of(localNode));
+        when(topologySrvc.getByConsistentId(any())).thenReturn(localNode);
 
         SchemaDescriptor schemaDesc = new SchemaDescriptor(
                 1,
@@ -202,7 +204,7 @@
 
                 s.onComplete();
             };
-        }).when(tbl).scan(anyInt(), any());
+        }).when(tbl).scan(anyInt(), (UUID) any(), any(), any(), any(), any(), anyInt(), any());
 
         LOG.info(">>>> Starting test {}", testInfo.getTestMethod().orElseThrow().getName());
     }
