uros-db commented on code in PR #45856:
URL: https://github.com/apache/spark/pull/45856#discussion_r1550942822
##########
common/unsafe/src/main/java/org/apache/spark/unsafe/types/UTF8String.java:
##########
@@ -1078,7 +1078,15 @@ public UTF8String[] split(UTF8String pattern, int limit)
{
}
return result;
}
- return split(pattern.toString(), limit);
+ return split(pattern.toString(), limit, regexFlags);
+ }
+
+ public UTF8String[] split(UTF8String pattern, int limit) {
+ return split(pattern, limit, 0);
Review Comment:
"0" may seem a bit vague here, consider adding a comment or use something
like `NO_REGEX_FLAGS`
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]