greedAuguria commented on code in PR #19651:
URL: https://github.com/apache/datafusion/pull/19651#discussion_r3035324678
##########
datafusion/catalog-listing/src/helpers.rs:
##########
@@ -431,7 +435,10 @@ where
let mut part_values = vec![];
for (part, expected_partition) in subpath.zip(table_partition_cols) {
match part.split_once('=') {
- Some((name, val)) if name == expected_partition =>
part_values.push(val),
+ Some((name, val)) if name == expected_partition => {
+ let decoded = percent_decode_str(val).decode_utf8().ok()?;
Review Comment:
@martin-g I am sorry for the late reply, I will get on this now! Thank you
for taking a look!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]