fix: Skip the fuzzer test for Spark regexp_instr function#17709
Closed
rui-mo wants to merge 1 commit into
Closed
Conversation
✅ Deploy Preview for meta-velox canceled.
|
Build Impact AnalysisSelective Build Targets (building these covers all 1 affected)Total affected: 1/580 targets Affected targets (1)Directly changed (1)
Fast path • Graph from main@ef557e4da679bd1bfe7ed48c9241bdfed41d35fc |
zhli1142015
approved these changes
Jun 3, 2026
Collaborator
Author
|
Thanks @zhli1142015. Could you please mark ready-to-merge label for this PR? Thank you. |
Contributor
|
It looks like I lost my Collaborator permissions for some reason, though I'm not sure why. You can tag the ready-to-merge label yourself to unblock for now. @pedroerp , could you help restore my Collaborator access? Thanks! |
Collaborator
Author
|
@zhli1142015 Thanks. Yes, the permissions may need to be restored. |
|
@bikramSingh91 has imported this pull request. If you are a Meta employee, you can view this in D107540998. |
|
@bikramSingh91 merged this pull request in 9092f52. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The regex cache limit makes expression evaluation order-dependent. Common eval
and simplified eval process rows in different orders, so they hit the cache
limit on different rows, producing different results. This PR skips the uzzer
test for Spark regexp_instr function.
Fixes #17697.