Skip to content

Commit

Permalink
Revert "Try make sure location always end with /"
Browse files Browse the repository at this point in the history
This reverts commit dc7eea8.
  • Loading branch information
Xuanwo committed Oct 25, 2024
1 parent 93332af commit 3c54434
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| format!("{}/", location.trim_end_matches('/')))
.map(|location| location.to_string())
} else {
None
};
Expand Down

0 comments on commit 3c54434

Please sign in to comment.