You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// TODO: Native support Utf8View for regexp_match.
TypeSignature::Exact(vec![Utf8, Utf8]),
TypeSignature::Exact(vec![LargeUtf8, LargeUtf8]),
TypeSignature::Exact(vec![Utf8, Utf8, Utf8]),
TypeSignature::Exact(vec![LargeUtf8, LargeUtf8, LargeUtf8]),
This udf should be updated to include support for Utf8View. The type signature might want to be updated to use the new TypeSignature::String (see #13301)
To Reproduce
Add the following to the string view tests in regexp.slt
SELECT regexp_match(str, 'a.*', 'i') from t;
This will require #13348 to be in place to test the binary express equivalent
Expected behavior
Test passes, explain of plan verifies that no type coercion occurred to force Utf8View to Utf8
Additional context
No response
The text was updated successfully, but these errors were encountered:
The regexp_is_match* functions were updated as part of apache/arrow-rs#6370 / apache/arrow-rs#6376 by @lamb (ticket and review) and @tlm365 (code update) - we will need to file a similar ticket for regexp_match as well
Describe the bug
regexp match's signature:
This udf should be updated to include support for Utf8View. The type signature might want to be updated to use the new TypeSignature::String (see #13301)
To Reproduce
Add the following to the string view tests in regexp.slt
This will require #13348 to be in place to test the binary express equivalent
Expected behavior
Test passes, explain of plan verifies that no type coercion occurred to force Utf8View to Utf8
Additional context
No response
The text was updated successfully, but these errors were encountered: