Aitozi commented on code in PR #45: URL: https://github.com/apache/paimon-rust/pull/45#discussion_r1709772285
########## crates/paimon/src/io/file_io.rs: ########## @@ -94,6 +97,13 @@ impl FileIO { .into_iter() .map(|meta| FileStatus { size: meta.metadata().content_length(), + is_dir: meta.metadata().is_dir(), + last_modification_time: meta Review Comment: When testing, I found that the directory's `last_modification_time` = 0 for a dir. But for the `LocalFileIO` in java it's not.  Is this a bug for opendal `Fs` service ? CC @Xuanwo -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@paimon.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org