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.
Map State init, test cases pass #4
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
Uh oh!
There was an error while loading. Please reload this page.
Map State init, test cases pass #4
Changes from 1 commit
7dec5eb6a0555c49eefc5fbe6b1de3aab8cd87ac8e447f8af678aeb7c25fd93d272a1bd75c7753f6ac60f6999dfbffb02d3b8aea35f9f5db5ca346725fc67fe3405c13fd0cd6240923cfb96b1a404d58cb9ca91d0107435d5620cbaeb082e97e63ff12d03676bd0ccfc34baeb18072b51efbf43d1ace2411abc6442dc8157385f19d69df5960a3fbc644687b4d9dbb3c11585ad743012f7dff4ae92e8f50c992b2b299b2bcc6c0ebad2367cf576b85d55bb613a39ac2eb8e997f0d8f82211afd4f94d95d29d077f60806c6134a139abb7b0491b2331479392a7aab43e71f960d998764c1dcb7d847867e7cfd30c34a19cb7993125cfd5200fd43ffb130f6094e9376d9File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
…tions reverse, array_join, concat, map ### What changes were proposed in this pull request? Add proper support for complex types containing collated strings in operations reverse, array_join, concat, map (create). Examples: ``` select reverse('abc' collate utf8_binary_lcase); select reverse(array('a' collate utf8_binary_lcase, 'b' collate utf8_binary_lcase)); select array_join(array('a' collate utf8_binary_lcase, 'b' collate utf8_binary_lcase), ', ' collate utf8_binary_lcase); select concat('a' collate utf8_binary_lcase, 'b' collate utf8_binary_lcase); select map('a' collate utf8_binary_lcase, 1, 'A' collate utf8_binary_lcase, 2); ``` ### Why are the changes needed? To enable listed complex types operations support for collated strings. ### Does this PR introduce _any_ user-facing change? Yes, results of listed complex types operations will return expected results to users. ### How was this patch tested? Added checks to collations suite. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#45693 from nikolamand-db/SPARK-47541. Authored-by: Nikola Mandic <[email protected]> Signed-off-by: Wenchen Fan <[email protected]>Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing