-
Notifications
You must be signed in to change notification settings - Fork 3.7k
ARROW-9133: [C++] Add utf8_upper and utf8_lower #7449
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
Closed
Closed
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
b144149
ARROW-8961: [C++] Add utf8proc library to toolchain
xhochy 934a66a
Preserve alphabetical ordering
xhochy 8a5add3
ARROW-9133: [C++] Add utf8_upper and utf8_lower
maartenbreddels 6c4da7f
perf: transform using the ascii version if possible
maartenbreddels 683ffa4
cleanups
maartenbreddels 4cd3d72
rebase
maartenbreddels 46168a1
utf benchmarks also touch the offsets
maartenbreddels 9e33377
expose kernels to Python
maartenbreddels a4992cc
implement comments by Wes
maartenbreddels d27d3ba
faster case algo with a lookup table and custom encoder/decoder
maartenbreddels 054692b
ascii version of utf8 transform not required anymore
maartenbreddels 2829446
lint
maartenbreddels 5b251bb
invalid data is replace by ?
maartenbreddels 0249a12
raise error when string capacity is not enough for 32bit
maartenbreddels 3e7856f
support sliced arrays
maartenbreddels d1108a4
use similar naming
maartenbreddels c682974
mistake, it appears that codepoints above 0xffff can change their cas…
maartenbreddels a81a0c7
don't ignore return value
maartenbreddels 58cd0a6
-Wconversion fixes
maartenbreddels 6dc038a
implement comments by antoine
maartenbreddels bd43f9b
non-gcc compiler complaints
maartenbreddels 07bb6fd
implement comments by antoine, part2
maartenbreddels 17657a6
Resize buffer at end instead of creating it anew
pitrou e6c800c
Try to fix R on Windows builds
pitrou 6b2f07b
Add -lutf8proc for R Windows linking
pitrou d47ea4a
Error out on invalid UTF8 instead of succeeding
pitrou 9a9079d
Also tweak r_windows_build.sh ...
pitrou 11c342a
check capacity for scalar
maartenbreddels 85a169e
Merge branch 'master' into ARROW-9133
pitrou 592eb10
Try to fix RTools build again...
pitrou 05c2f38
Merge branch 'ARROW-9133' of https://github.com/maartenbreddels/arrow…
pitrou ff3df58
Last one
pitrou File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice way to make code more readable.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:-)