This is an automated email from the ASF dual-hosted git repository. pwason pushed a commit to branch release-0.14.0 in repository https://gitbox.apache.org/repos/asf/hudi.git
commit a4f542931c18cdfc76c627f426d14d21044adf98 Author: empcl <[email protected]> AuthorDate: Tue Aug 29 13:17:56 2023 +0800 [MINOR] Modify return type description (#9479) --- .../java/org/apache/hudi/common/table/view/TableFileSystemView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hudi-common/src/main/java/org/apache/hudi/common/table/view/TableFileSystemView.java b/hudi-common/src/main/java/org/apache/hudi/common/table/view/TableFileSystemView.java index db6e12cbda6..6fedb8684c9 100644 --- a/hudi-common/src/main/java/org/apache/hudi/common/table/view/TableFileSystemView.java +++ b/hudi-common/src/main/java/org/apache/hudi/common/table/view/TableFileSystemView.java @@ -171,14 +171,14 @@ public interface TableFileSystemView { /** * Return Pending Compaction Operations. * - * @return Pair<Pair<InstantTime,CompactionOperation>> + * @return Stream<Pair<InstantTime,CompactionOperation>> */ Stream<Pair<String, CompactionOperation>> getPendingCompactionOperations(); /** * Return Pending Compaction Operations. * - * @return Pair<Pair<InstantTime,CompactionOperation>> + * @return Stream<Pair<InstantTime,CompactionOperation>> */ Stream<Pair<String, CompactionOperation>> getPendingLogCompactionOperations();
