Skip to content

Commit 4f899a4

Browse files
fix table listing prefixes
1 parent 09b5b59 commit 4f899a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/query/listing_table_builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ impl ListingTableBuilder {
100100
for prefix in prefixes {
101101
match storage.list_dirs_relative(&prefix).await {
102102
Ok(paths) => {
103-
listing.extend(paths.into_iter().map(|p| p.to_string()));
103+
listing.extend(paths.into_iter().map(|p| prefix.join(p).to_string()));
104104
}
105105
Err(e) => {
106106
return Err(DataFusionError::External(Box::new(e)));

0 commit comments

Comments
 (0)