This is an automated email from the ASF dual-hosted git repository.
JingsongLi 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 6557de395d [fs] Fix JindoFileIO to return actual file access time and
owner (#8955)
6557de395d is described below
commit 6557de395d7c8b4676ae93f169585ac6c9996990
Author: Eunbin Son <[email protected]>
AuthorDate: Mon Aug 3 20:08:33 2026 +0900
[fs] Fix JindoFileIO to return actual file access time and owner (#8955)
---
.../java/org/apache/paimon/jindo/HadoopCompliantFileIO.java | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git
a/paimon-filesystems/paimon-jindo/src/main/java/org/apache/paimon/jindo/HadoopCompliantFileIO.java
b/paimon-filesystems/paimon-jindo/src/main/java/org/apache/paimon/jindo/HadoopCompliantFileIO.java
index 0620e4313f..0ba8ef98d1 100644
---
a/paimon-filesystems/paimon-jindo/src/main/java/org/apache/paimon/jindo/HadoopCompliantFileIO.java
+++
b/paimon-filesystems/paimon-jindo/src/main/java/org/apache/paimon/jindo/HadoopCompliantFileIO.java
@@ -433,5 +433,15 @@ public abstract class HadoopCompliantFileIO implements
FileIO {
public long getModificationTime() {
return status.getModificationTime();
}
+
+ @Override
+ public long getAccessTime() {
+ return status.getAccessTime();
+ }
+
+ @Override
+ public String getOwner() {
+ return status.getOwner();
+ }
}
}