JingsongLi commented on code in PR #7340:
URL: https://github.com/apache/paimon/pull/7340#discussion_r2884004202


##########
paimon-core/src/main/java/org/apache/paimon/catalog/AbstractCatalog.java:
##########
@@ -193,6 +193,13 @@ public PagedList<Partition> listPartitionsPaged(
         return new PagedList<>(listPartitions(identifier), null);
     }
 
+    @Override
+    public List<Partition> listPartitionsByNames(
+            Identifier identifier, List<Map<String, String>> partitions)
+            throws TableNotExistException {
+        return CatalogUtils.listPartitionsFromFileSystem(getTable(identifier), 
partitions);
+    }
+

Review Comment:
   The check is just for protect REST server. Lack check here is valid. Let it 
go.



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