[FLINK-40239][runtime] Support additional Flink SQL regular expression functions in YAML Transform - #4491
Open
haruki-830 wants to merge 1 commit into
Open
[FLINK-40239][runtime] Support additional Flink SQL regular expression functions in YAML Transform#4491haruki-830 wants to merge 1 commit into
haruki-830 wants to merge 1 commit into
Conversation
…n functions in YAML Transform
haruki-830
marked this pull request as ready for review
July 28, 2026 06:32
Contributor
Author
|
@lvyanquan @yuxiqian PTAL, thanks! |
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.
Summary
This commit adds support for five additional Flink SQL regular expression functions in YAML Transform:
REGEXP_EXTRACT,REGEXP_EXTRACT_ALL,REGEXP_COUNT,REGEXP_INSTR, andREGEXP_SUBSTR.The functions use Java regular expression syntax and align with Flink SQL semantics for NULL values, invalid patterns, capture groups, and no-match cases.
Key Changes
REGEXP_EXTRACTandREGEXP_EXTRACT_ALL.REGEXP_EXTRACTandREGEXP_SUBSTRreturn NULL.REGEXP_EXTRACT_ALLreturns an empty array.REGEXP_COUNTandREGEXP_INSTRreturn 0.ARRAY<STRING>fromREGEXP_EXTRACT_ALL.REGEXP_EXTRACT_ALLworks correctly in YAML Transform projections.REGEXP_REPLACEbehavior remains unchanged.REGEXP_EXTRACT_ALLresults.JIRA Reference
https://issues.apache.org/jira/browse/FLINK-40239