danielcweeks opened a new pull request, #7274: URL: https://github.com/apache/iceberg/pull/7274
This avoids using `=` characters as filler in path locations so that they are not used as part of the hash prefix. Before ``` jshell> enc.encodeToString(new byte[4]) $8 ==> "AAAAAA==" ``` After ``` jshell> enc.encodeToString(new byte[6]) $9 ==> "AAAAAAAA" ``` -- 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]
