Skip to content

Commit 6557de3

Browse files
authored
[fs] Fix JindoFileIO to return actual file access time and owner (#8955)
1 parent c9a7236 commit 6557de3

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

paimon-filesystems/paimon-jindo/src/main/java/org/apache/paimon/jindo/HadoopCompliantFileIO.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,5 +433,15 @@ public Path getPath() {
433433
public long getModificationTime() {
434434
return status.getModificationTime();
435435
}
436+
437+
@Override
438+
public long getAccessTime() {
439+
return status.getAccessTime();
440+
}
441+
442+
@Override
443+
public String getOwner() {
444+
return status.getOwner();
445+
}
436446
}
437447
}

0 commit comments

Comments
 (0)