Skip to content

Commit

Permalink
Try make sure location always end with /
Browse files Browse the repository at this point in the history
Signed-off-by: Xuanwo <[email protected]>
  • Loading branch information
Xuanwo committed Oct 25, 2024
1 parent fbbb523 commit dc7eea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/storages/hive/hive/src/converters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub fn try_into_table_info(
storage
.location
.as_ref()
.map(|location| location.to_string())
.map(|location| format!("{}/", location.trim_end_matches('/')))
} else {
None
};
Expand Down

0 comments on commit dc7eea8

Please sign in to comment.