Support StringView for binary operators like ~
, !~
, etc
#12180
Labels
enhancement
New feature or request
~
, !~
, etc
#12180
Uh oh!
There was an error while loading. Please reload this page.
Is your feature request related to a problem or challenge?
Part of #11752
As we work to complete StringView support in DataFusion @2010YOUY01 noticed on #11752 (comment) that we don't currently support Regexp like binary operators https://datafusion.apache.org/user-guide/sql/operators.html#op-re-match for string view
Reproducer
Describe the solution you'd like
StringView should be supported for these operators (aka the query should run without error)
Describe alternatives you've considered
Here are the relevant operator names:
Here is the dispatch code:
datafusion/datafusion/physical-expr/src/expressions/binary.rs
Lines 621 to 632 in 0f96af5
It appears that the corresponding arrow-rs kernel does not yet have support for StringView
https://docs.rs/arrow-string/52.2.0/src/arrow_string/regexp.rs.html#307-311
So what I would suggest is:
Additional context
No response
The text was updated successfully, but these errors were encountered: