This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new af17ee72910 [MINOR] Modify return type description (#9479)
af17ee72910 is described below
commit af17ee729107a57889acf3dbf3478019e8cff5b7
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();