-
Notifications
You must be signed in to change notification settings - Fork 915
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
Add regex flags to strings findall functions #10208
Add regex flags to strings findall functions #10208
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-22.04 #10208 +/- ##
================================================
+ Coverage 10.42% 10.45% +0.03%
================================================
Files 119 122 +3
Lines 20603 20530 -73
================================================
- Hits 2148 2147 -1
+ Misses 18455 18383 -72
Continue to review full report at Codecov.
|
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.
It occurs to me that findall_record
is not actually exposed anywhere in the Python API. Were the bindings just added as a matter of course? That feature was requested for Spark IIRC. I'm wondering about it now because I realized that there were no changes to .py files corresponding to that function.
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.
I have two requests, but both can (or should) be addressed in follow-up PRs so I am approving. If you want to tackle either of those requests in this PR, I can re-review.
@gpucibot merge |
Add the
regex_flags
parameter to the stringsfindall()
andfindall_record
functions so that matching regex patterns is consistent other strings regex APIs.