-
Notifications
You must be signed in to change notification settings - Fork 564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
YQL-18464: Fix Remove UDFs for NonASCII input #4789
YQL-18464: Fix Remove UDFs for NonASCII input #4789
Conversation
0b69d72
to
36d2225
Compare
⚪ |
⚪ |
The signed char was used as the index value in the loop, collecting "to-be-removed" charset. As a result, processing all NonASCII bytes (i.e. greater than 127) leads to an invalid result. The patch changes the index value type to the unsigned one. Follows up ydb-platform#2836
36d2225
to
07f3549
Compare
The signed char was used as the index value in the loop, collecting "to-be-removed" charset. As a result, processing all NonASCII bytes (i.e. greater than 127) leads to an invalid result. The patch changes the index value type to the unsigned one. Follows up ydb-platform#2836 (cherry picked from ydb-platform#4789)
⚪
|
⚪
|
The signed char was used as the index value in the loop, collecting "to-be-removed" charset. As a result, processing all NonASCII bytes (i.e. greater than 127) leads to an invalid result. The patch changes the index value type to the unsigned one.
Follows up #2836
Changelog category