This is an automated email from the ASF dual-hosted git repository.
junhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new 4e63f552c [core] Expose path from IndexFile (#3268)
4e63f552c is described below
commit 4e63f552c1eddee37c2d5f46e3240778ae600da6
Author: YeJunHao <[email protected]>
AuthorDate: Fri Apr 26 16:37:54 2024 +0800
[core] Expose path from IndexFile (#3268)
---
.../src/main/java/org/apache/paimon/table/source/IndexFile.java | 4 ++++
1 file changed, 4 insertions(+)
diff --git
a/paimon-core/src/main/java/org/apache/paimon/table/source/IndexFile.java
b/paimon-core/src/main/java/org/apache/paimon/table/source/IndexFile.java
index 1c7814d4e..4bd89677e 100644
--- a/paimon-core/src/main/java/org/apache/paimon/table/source/IndexFile.java
+++ b/paimon-core/src/main/java/org/apache/paimon/table/source/IndexFile.java
@@ -33,6 +33,10 @@ public class IndexFile {
this.path = path;
}
+ public String path() {
+ return path;
+ }
+
@Override
public boolean equals(Object o) {
if (!(o instanceof IndexFile)) {