qingwei727 commented on code in PR #7340:
URL: https://github.com/apache/paimon/pull/7340#discussion_r2883950143
##########
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:
Missing the 1000-limit validation that RESTApi.listPartitionsByNames checkde
--
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]