Uh oh!
There was an error while loading. Please reload this page.
ARROW-14482: [C++][Gandiva] Implement MASK_FIRST_N and MASK_LAST_N functions - #11551
ARROW-14482: [C++][Gandiva] Implement MASK_FIRST_N and MASK_LAST_N functions#11551augustoasilva wants to merge 30 commits into
Conversation
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
079d0a1 to
aae056aCompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
b55ec65 to
8787053CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
8787053 to
29bd8b2CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
pravindra
commented
Nov 10, 2021
@augustoasilva There was two failures in one of the C++ tests here. can you please fix that ? [ RUN ] TestGdvFnStubs.TestMaskFirstN==18940==ERROR: AddressSanitizer: global-buffer-overflow on address 0x0000009442fd at pc 0x00000053b039 bp 0x7fff1703f740 sp 0x7fff1703eef0 [ RUN ] TestProjector.TestMaskFirstMaskLastN |
augustoasilva
commented
Nov 10, 2021
@pravindra Can you aprove again to see if those errors where fixed? |
vvellanki
commented
Nov 11, 2021
@augustoasilva Can you hold on this? I'd like to understand how the Hive UDF works with non-ascii input |
augustoasilva
commented
Nov 11, 2021
@vvellanki Sure, I will hold this one. |
16c47f5 to
9a839d1CompareUh oh!
There was an error while loading. Please reload this page.
4683cc8 to
a4a07c5CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
65b6fe6 to
faab313CompareUh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
b8f9b52 to
0ceb879Comparec9fbd60 to
8f9b671CompareBenchmark runs are scheduled for baseline = 08e044f and contender = 00d5077. 00d5077 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
MASK_FIRST_N
Returns a masked version of str with the first n values masked. Upper case letters are converted to "X", lower case letters are converted to "x" and numbers are converted to "n". For example, mask_first_n("1234-5678-8765-4321", 4) results in nnnn-5678-8765-4321.
MASK_LAST_N
Returns a masked version of str with the last n values masked. Upper case letters are converted to "X", lower case letters are converted to "x" and numbers are converted to "n". For example, mask_last_n("1234-5678-8765-4321", 4) results in 1234-5678-8765-nnnn.