fallintoplace opened a new pull request, #738:
URL: https://github.com/apache/iceberg-cpp/pull/738

   ## Summary
   
   - Treat URL encoder input bytes as unsigned before splitting them into hex 
nibbles.
   - Add UTF-8 regression coverage for `café` encoding to `caf%C3%A9`.
   
   ## Why
   
   On platforms where `char` is signed, bytes >= 0x80 can become negative 
before the hex lookup. That can lead to undefined behavior or incorrect percent 
encoding for non-ASCII strings.
   
   ## Testing
   
   - `cmake -S . -B build -G Ninja -DICEBERG_BUILD_BUNDLE=OFF 
-DICEBERG_BUILD_REST=OFF -DICEBERG_BUILD_HIVE=OFF 
-DICEBERG_BUILD_SQL_CATALOG=OFF`
   - `cmake --build build --target util_test`
   - `ctest --test-dir build -R util_test --output-on-failure`


-- 
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]

Reply via email to