tkalkirill commented on code in PR #2432:
URL: https://github.com/apache/ignite-3/pull/2432#discussion_r1291437766
##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/Catalog.java:
##########
@@ -132,11 +132,11 @@ public Collection<CatalogIndexDescriptor> indexes() {
return indexesById.values();
}
- public CatalogZoneDescriptor zone(String name) {
+ public @Nullable CatalogZoneDescriptor zone(String name) {
return zonesByName.get(name);
}
- public CatalogZoneDescriptor zone(int zoneId) {
+ public @Nullable CatalogZoneDescriptor zone(int zoneId) {
Review Comment:
I think for this we need
`org.apache.ignite.internal.catalog.CatalogService`, but it is not yet fully
ready and is being improved iteratively.
--
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]