unknowntpo commented on code in PR #5905: URL: https://github.com/apache/gravitino/pull/5905#discussion_r1911690746
########## clients/filesystem-fuse/src/fuse_api_handle.rs: ########## @@ -30,10 +30,474 @@ use fuse3::{Errno, FileType, Inode, SetAttr, Timestamp}; use futures_util::stream; use futures_util::stream::BoxStream; use futures_util::StreamExt; +use log::debug; use std::ffi::{OsStr, OsString}; +use std::fmt; use std::num::NonZeroU32; use std::time::{Duration, SystemTime}; +/// Wrapper Struct for `Timestamp` to enable custom Display implementation +pub struct TimestampDebug(pub Timestamp); + +impl fmt::Display for TimestampDebug { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + let ts = &self.0; // Access the inner `Timestamp` + write!(f, "{}.{:09}", ts.sec, ts.nsec) // Nanoseconds padded to 9 digits Review Comment: I implemented some methods like `reply_attr_to_desc_str`, `reply_entry_to_desc_str` to manually control the format. -- 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: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org