Skip to content

Commit f98889f

Browse files
committed
fixup! fixup! Make list_entries table-scoped
1 parent 114fe80 commit f98889f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

datafusion/execution/src/cache/list_files_cache.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,9 +180,9 @@ impl DFHeapSize for TableScopedPath {
180180
impl Display for TableScopedPath {
181181
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
182182
if let Some(table) = &self.table {
183-
write!(f, "({}, {})", self.path, table)
183+
write!(f, "{}, {}", self.path, table)
184184
} else {
185-
write!(f, "({})", self.path)
185+
write!(f, "{}", self.path)
186186
}
187187
}
188188
}

0 commit comments

Comments
 (0)