tkalkirill commented on code in PR #2432:
URL: https://github.com/apache/ignite-3/pull/2432#discussion_r1290872545


##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/CatalogManagerImpl.java:
##########
@@ -982,4 +1002,13 @@ private static CatalogHashIndexDescriptor 
createHashIndexDescriptor(
 
         return CatalogUtils.fromParams(indexId, table.id(), params);
     }
+
+    @Override
+    public void listen(CatalogEvent evt, EventListener<? extends 
CatalogEventParameters> closure) {
+        listen(evt, (EventListener<CatalogEventParameters>) closure);
+    }
+
+    private static @Nullable CatalogDataStorageDescriptor 
dataStorage(@Nullable DataStorageParams params) {
+        return params == null ? null : fromParams(params);

Review Comment:
   no



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