Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Throw on white space in percent encoded values in url_decode (#1…
…1749) Summary: Pull Request resolved: #11749 url_decode currently accepts white space in percent encoded values, e.g. url_decode('% 1') will return the same results as url_decode('%01') Presto Java throws an exception in these cases. This change ensures that Velox does the same. Note that according to the standard the two characters following the percent should be hex digits, so this is consistent. Reviewed By: spershin Differential Revision: D66785876 fbshipit-source-id: 9d345e89deea71866116f439e1982975b86dcf7a
- Loading branch information