ygerzhedovich commented on code in PR #2882:
URL: https://github.com/apache/ignite-3/pull/2882#discussion_r1434204586


##########
modules/sql-engine/src/test/java/org/apache/ignite/internal/sql/engine/exec/ExecutableTableRegistrySelfTest.java:
##########
@@ -136,7 +138,10 @@ CompletableFuture<ExecutableTable> getTable(int tableId) {
             int schemaVersion = 1;
             int tableVersion = 10;
 
-            TableImpl table = new TableImpl(internalTable, schemaRegistry, new 
HeapLockManager(), new ConstantSchemaVersions(tableVersion));
+            TableImpl table = new TableImpl(
+                    internalTable, schemaRegistry, new HeapLockManager(), new 
ConstantSchemaVersions(tableVersion), mock(IgniteSql.class)
+            );

Review Comment:
   ```suggestion
               TableImpl table = new TableImpl(internalTable, schemaRegistry, 
new HeapLockManager(), new ConstantSchemaVersions(tableVersion),
                       mock(IgniteSql.class));
   ```



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