in crates/paimon/src/spec/index_file_meta.rs [51:61]
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
write!(
f,
"IndexFileMeta{{index_type={}, fileName={}, fileSize={}, rowCount={}, deletion_vectors_ranges={:?}}}",
self.index_type,
self.file_name,
self.file_size,
self.row_count,
self.deletion_vectors_ranges,
)
}